/* Base styles */
:root {
    --brand: #7E57C2;              /* Sofia the First inspired purple */
    --brand-dark: #5a3a96;
    --brand-light: #ede7ff;
    --accent: #ffb347;
    --bg: #05020f;
    --bg-soft: #111827;
    --text-main: #0b1020;
    --text-soft: #4b5563;
    --text-light: #e5e7eb;
    --white: #ffffff;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.15);
    --shadow-strong: 0 30px 80px rgba(17, 24, 39, 0.35);
    --transition-fast: 180ms ease-out;
    --transition-med: 260ms ease-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: radial-gradient(circle at top left, #25174a 0, #05020f 50%, #02010a 100%);
    -webkit-font-smoothing: antialiased;
}

/* Floating background shapes */
.floating-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    z-index: -1;
    pointer-events: none;
}
.floating-shape-1 {
    width: 420px;
    height: 420px;
    top: -80px;
    left: -120px;
    background: radial-gradient(circle, #b388ff, transparent 70%);
    animation: float 20s ease-in-out infinite alternate;
}
.floating-shape-2 {
    width: 380px;
    height: 380px;
    bottom: -120px;
    right: -80px;
    background: radial-gradient(circle, #7e57c2, transparent 70%);
    animation: float 26s ease-in-out infinite alternate-reverse;
}
.floating-shape-3 {
    width: 260px;
    height: 260px;
    top: 40%;
    left: 60%;
    background: radial-gradient(circle, #ffb347, transparent 70%);
    animation: float 32s ease-in-out infinite alternate;
}

@keyframes float {
    from { transform: translate3d(0,0,0); }
    to   { transform: translate3d(40px,-20px,0); }
}

/* Layout containers */
.header {
    position: relative;
    padding: 1.5rem clamp(1.5rem, 4vw, 4rem) 3rem;
    color: var(--white);
}

main {
    padding: 0 clamp(1.5rem, 4vw, 4rem) 5rem;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto 2.5rem;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo-circle {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--brand));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.nav__name {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.nav__tagline {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

.nav__links {
    list-style: none;
    display: flex;
    gap: 1.75rem;
    padding: 0;
    margin: 0;
    align-items: center;
}

.nav__links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.1rem;
    transition: color var(--transition-fast);
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--brand));
    border-radius: 999px;
    transition: width var(--transition-fast);
}

.nav__links a:hover {
    color: var(--white);
}
.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--brand));
    color: var(--bg);
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* Nav toggle (mobile) */
.nav__toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}
.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 4px 0;
    border-radius: 20px;
}

/* Hero */
.hero {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
    padding: 1rem 0 3.5rem;
}

.hero__sites {
    margin-top: 0.4rem;
    margin-bottom: 1.6rem;
    font-size: 0.9rem;
    color: #ffffff; /* pure white */
}

.hero__sites a {
    color: #ffffff; /* pure white links */
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.hero__sites a:hover {
    text-decoration-thickness: 2px;
}
.hero__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 0.75rem;
}

.hero__title {
    font-size: clamp(2.4rem, 3.4vw, 3.6rem);
    line-height: 1.15;
    margin: 0 0 1rem;
}

.hero__gradient-text {
    display: block;
    background: linear-gradient(120deg, #ede9fe, #fbbf24);
    -webkit-background-clip: text;
    color: transparent;
}

.hero__subtitle {
    color: #d1d5db;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.9rem;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 0.85rem 1.7rem;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--brand));
    color: var(--bg);
    box-shadow: var(--shadow-strong);
}
.btn--primary:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.btn--ghost {
    border: 1px solid rgba(226, 232, 240, 0.5);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.4);
}
.btn--ghost:hover {
    background: rgba(15, 23, 42, 0.7);
}

.btn--light {
    background: var(--white);
    color: var(--brand-dark);
}
.btn--light:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.btn--full {
    width: 100%;
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero__stat {
    min-width: 120px;
}
.hero__stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
}
.hero__stat-label {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* Hero visual */
.hero__visual {
    position: relative;
    display: grid;
    gap: 1.5rem;
}

.hero__card {
    background: radial-gradient(circle at top left, rgba(255,255,255,0.24), rgba(15, 23, 42, 0.96));
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.3);
    backdrop-filter: blur(20px);
}

.hero__card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    margin-bottom: 0.4rem;
}

.hero__card-title {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
}

.hero__card-body {
    font-size: 0.93rem;
    color: #e5e7eb;
    margin-bottom: 0.8rem;
}

.hero__card-link {
    font-size: 0.9rem;
    color: #e5e7eb;
    text-decoration: none;
}
.hero__card-link:hover {
    text-decoration: underline;
}

.hero__chart {
    background: linear-gradient(145deg, rgba(15,23,42,0.9), rgba(30,64,175,0.8));
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.3rem 1.4rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
}

.hero__chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #e5e7eb;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.hero__chart-pill {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(16,185,129,0.15);
    color: #bbf7d0;
    border: 1px solid rgba(52,211,153,0.4);
}

.hero__chart-graph {
    position: relative;
    height: 150px;
    border-radius: 14px;
    background: radial-gradient(circle at bottom, rgba(15,23,42,0.9), rgba(17,24,39,0.6));
    overflow: hidden;
}

.hero__chart-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200%;
    border-radius: 999px;
    transform-origin: left bottom;
}
.hero__chart-line--baseline {
    height: 2px;
    background: linear-gradient(90deg, rgba(148,163,184,0.3), rgba(148,163,184,0.05));
}
.hero__chart-line--spike {
    height: 160px;
    background: linear-gradient(180deg, rgba(248,250,252,0.95), rgba(129,140,248,0.3));
    transform: translateX(-40%) skewX(-18deg) scaleY(0);
    animation: chartSpike 2.2s 0.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.hero__chart-glow {
    position: absolute;
    inset: auto 0 -40px 0;
    height: 80px;
    background: radial-gradient(circle at top, rgba(252, 211, 77, 0.46), transparent 70%);
    opacity: 0.6;
}

@keyframes chartSpike {
    to { transform: translateX(-10%) skewX(-12deg) scaleY(1); }
}

.hero__chart-caption {
    margin-top: 0.7rem;
    font-size: 0.8rem;
    color: #d1d5db;
}

/* Sections */
.section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 4.5rem 0;
}

.section--light {
    color: var(--text-main);
}

.section--dark {
    color: var(--text-light);
}

.section--dark .section__subtitle {
    color: #d1d5db;
}

.section__header {
    margin-bottom: 2.5rem;
}

.section__header--center {
    text-align: center;
}

.section__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.6rem;
}
.section__eyebrow--light {
    color: #a5b4fc;
}

.section__title {
    font-size: 2rem;
    margin: 0 0 0.5rem;
}
.section__title--light {
    color: var(--white);
}

.section__subtitle {
    margin: 0;
    font-size: 0.98rem;
    max-width: 36rem;
    color: var(--text-soft);
}
.section__subtitle--light {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
}

.section__cta {
    margin-top: 2.2rem;
    text-align: center;
}

/* Cards / services */
.cards {
    display: grid;
    gap: 1.5rem;
}
.cards--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: rgba(248, 250, 252, 0.95);
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.5rem 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148,163,184,0.3);
}
.card__title {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}
.card__body {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-bottom: 0.7rem;
}
.card__list {
    padding-left: 1.1rem;
    margin: 0 0 0.7rem;
    font-size: 0.9rem;
    color: var(--text-soft);
}
.card__footer {
    font-size: 0.85rem;
    color: var(--brand-dark);
    font-weight: 500;
}

/* Case study */
.section--dark {
    background: radial-gradient(circle at top, #1f2937, #020617);
    border-radius: 32px;
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-inline: 2.2rem;
}

.case {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.case__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transform-origin: center;
    transition: transform 260ms ease-out;
}
.case__image-wrapper:hover {
    transform: translateY(-4px) scale(1.01);
}
.case__image {
    width: 100%;
    height: auto;
    display: block;
}
.case__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.72);
    backdrop-filter: blur(12px);
    font-size: 0.8rem;
}
.case__badge-number {
    font-weight: 600;
    margin-left: 0.3rem;
}
.case__badge-tag {
    margin-left: 0.35rem;
    color: #a5b4fc;
}
.case__pill {
    position: absolute;
    bottom: 1.1rem;
    right: 1.1rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: rgba(16,185,129,0.16);
    color: #bbf7d0;
    font-size: 0.8rem;
    border: 1px solid rgba(52,211,153,0.4);
}

.case__title {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.case__block {
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
}
.case__block h4 {
    margin: 0 0 0.35rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #a5b4fc;
}
.case__block ul {
    padding-left: 1.1rem;
    margin: 0.3rem 0 0.5rem;
}
.case__block--results {
    border-left: 3px solid var(--accent);
    padding-left: 0.8rem;
}

/* Process */
.process {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem 2rem;
}
.process__step {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(248,250,252,0.96);
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: var(--shadow-soft);
}
.process__step-number {
    font-weight: 700;
    color: var(--brand);
    font-size: 1.3rem;
}
.process__step-title {
    margin: 0 0 0.3rem;
}
.process__step-body {
    margin: 0;
    font-size: 0.93rem;
    color: var(--text-soft);
}

/* About */
.about {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
    gap: 2.2rem;
}
.about__bio p {
    font-size: 0.97rem;
    color: #e5e7eb;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.about__highlights {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.2rem;
}
.about__highlights h4 {
    margin: 0 0 0.4rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #a5b4fc;
}
.about__highlights ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.about__info {
    display: flex;
    align-items: stretch;
}
.about__card {
    background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.15), rgba(15,23,42,0.96));
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148,163,184,0.5);
}
.about__card-title {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
}
.about__card-body {
    font-size: 0.95rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.testimonial {
    background: rgba(248,250,252,0.96);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(148,163,184,0.3);
    box-shadow: var(--shadow-soft);
}
.testimonial__quote {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: var(--text-soft);
}
.testimonial__name {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-dark);
}

/* Contact */
.section--contact {
    background: radial-gradient(circle at bottom, #312e81, #020617);
    border-radius: 32px;
    margin-top: 3rem;
    padding-inline: 2.2rem;
    color: var(--text-light);
}

.contact {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 2.3rem;
}

.contact__form {
    background: rgba(15,23,42,0.88);
    padding: 1.6rem 1.7rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148,163,184,0.55);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.form__field label {
    font-size: 0.85rem;
    color: #e5e7eb;
}
.form__field input,
.form__field select,
.form__field textarea {
    border-radius: 12px;
    border: 1px solid rgba(148,163,184,0.7);
    background: rgba(15,23,42,0.85);
    color: #f9fafb;
    padding: 0.7rem 0.8rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}
.form__field input::placeholder,
.form__field textarea::placeholder {
    color: #6b7280;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.5);
    background: rgba(15,23,42,0.98);
    transform: translateY(-1px);
}

.contact__note {
    font-size: 0.85rem;
    color: #e5e7eb;
    margin-top: 0.6rem;
}
.contact__note a {
    color: #bfdbfe;
    text-decoration: none;
}
.contact__note a:hover {
    text-decoration: underline;
}

.contact__side {
    display: flex;
    align-items: stretch;
}
.contact__card {
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.7rem;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.5);
    color: #e5e7eb;
    font-size: 0.95rem;
    box-shadow: var(--shadow-soft);
}
.contact__card ul {
    padding-left: 1.1rem;
    margin: 0.8rem 0 0;
}
.contact__card li {
    margin-bottom: 0.4rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2.4rem 1.5rem 3rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Reveal on scroll */
.js-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.js-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tilt/parallax (base) */
.js-tilt {
    transform-style: preserve-3d;
    transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

/* Responsive */
@media (max-width: 960px) {
    main {
        padding-inline: 1.5rem;
    }

    .hero {
        grid-template-columns: minmax(0,1fr);
    }

    .hero__visual {
        order: -1;
    }

    .cards--three {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .case {
        grid-template-columns: minmax(0,1fr);
    }

    .process {
        grid-template-columns: minmax(0,1fr);
    }

    .about {
        grid-template-columns: minmax(0,1fr);
    }

    .testimonials {
        grid-template-columns: minmax(0,1fr);
    }

    .contact {
        grid-template-columns: minmax(0,1fr);
    }
}

@media (max-width: 720px) {
    .header {
        padding-inline: 1.2rem;
    }
    main {
        padding-inline: 1.2rem;
    }

    .nav__toggle {
        display: block;
    }
    .nav__links {
        position: fixed;
        inset: 64px 1rem auto 1rem;
        flex-direction: column;
        background: rgba(15,23,42,0.96);
        border-radius: 18px;
        padding: 1rem 1.2rem;
        box-shadow: var(--shadow-soft);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 160ms ease-out, transform 160ms ease-out;
    }
    .nav__links.nav__links--open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .cards--three {
        grid-template-columns: minmax(0,1fr);
    }

    .section--dark,
    .section--contact {
        padding-inline: 1.4rem;
        border-radius: 26px;
    }

    .contact__grid {
        grid-template-columns: minmax(0,1fr);
    }
}
.section__visual {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.frame {
    width: 100%;
    max-width: 720px;
    border-radius: 20px;
    padding: 1.4rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148,163,184,0.4);
}

.frame--light {
    background: rgba(248,250,252,0.96);
}

.frame--dark {
    margin-top: 1.4rem;
    background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.2), rgba(15,23,42,0.98));
    border-color: rgba(129,140,248,0.6);
}

.frame__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.7rem;
}

.frame__title {
    font-size: 0.95rem;
    font-weight: 600;
}

.frame__pill {
    font-size: 0.75rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(126,87,194,0.08);
    color: var(--brand-dark);
}

.section--dark .frame__pill {
    background: rgba(191,219,254,0.12);
    color: #e5e7eb;
    border: 1px solid rgba(129,140,248,0.6);
}

.frame__body {
    border-radius: 16px;
    overflow: hidden;
    background: #020617;
}

.frame__image {
    width: 100%;
    height: auto;
    display: block;
}

.frame__caption {
    margin-top: 0.6rem;
    font-size: 0.86rem;
    color: var(--text-soft);
}

.frame__caption--light {
    color: #e5e7eb;
}

/* Responsive tweaks */
@media (max-width: 960px) {
    .frame {
        max-width: 100%;
    }
}
/* Mobile refinements */
@media (max-width: 600px) {
  /* Push the first hero card down a bit so it's not touching the menu icon */
  .hero {
    padding-top: 1.5rem; /* extra breathing space below nav */
  }

  .hero__left {
    margin-top: 0.75rem;
  }

  /* Add margin above the first stats/card block ("Recent client win") */
  .hero__stat-card,
  .hero__metrics {
    margin-top: 0.75rem;
  }

  /* Slightly shrink top bar so the menu icon feels less crowded */
  .nav {
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
  }

  .nav__brand-name {
    font-size: 0.9rem;
  }

  .nav__tagline {
    font-size: 0.65rem;
  }
}