:root {
    --gold: #c8952f;
    --gold-dark: #9c6f1f;
    --gold-light: #e9c069;
    --cream: #faf6ef;
    --cream-2: #f2ecdf;
    --ink: #17150f;
    --ink-soft: #514c3f;
    --ink-faint: #8a8371;
    --white: #ffffff;
    --line: rgba(23,21,15,0.12);
    --shadow: 0 20px 50px rgba(23,21,15,0.10);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--ink);
    line-height: 1.08;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12.5px;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 34px;
    border-radius: 4px;
    border: 2px solid var(--gold);
    background: var(--gold);
    color: var(--ink);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    min-height: 44px;
    box-shadow: 0 10px 24px rgba(200,149,47,0.35);
}

.btn:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(23,21,15,0.28);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--gold-light);
}

.btn-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 12px;
}

section {
    position: relative;
}

.section-pad {
    padding: 110px 0;
}

.divider-angle {
    position: relative;
    height: 60px;
    background: var(--ink);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: rgba(250,246,239,0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-wrap img {
    height: 38px;
    width: auto;
}

.logo-placeholder {
    height: 38px;
    width: 38px;
    border-radius: 4px;
    border: 2px solid var(--ink);
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald';
    font-weight: 700;
    font-size: 13px;
}

.brand-name {
    font-family: 'Oswald';
    text-transform: uppercase;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.03em;
}

.brand-name--accent {
    color: var(--gold-light);
}

.nav-cta.btn {
    padding: 12px 22px;
    font-size: 14px;
}

.nav-cta .btn-text-short {
    display: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    background:
        radial-gradient(circle at 82% 8%, rgba(200,149,47,0.16), transparent 45%),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -20%;
    width: 60%;
    height: 120%;
    background: repeating-linear-gradient(115deg, rgba(23,21,15,0.035) 0 2px, transparent 2px 34px);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-main {
    display: flex;
    flex-wrap: wrap;
    gap: 44px 60px;
    align-items: center;
}

.hero-copy,
.hero-media {
    min-width: 0;
}

.hero-copy {
    order: 1;
    flex: 0 0 calc((100% - 60px) * 0.425);
}

.hero-media {
    order: 2;
    flex: 0 0 calc((100% - 60px) * 0.575);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-cta-row {
    order: 3;
    flex: 1 0 100%;
    margin-top: 8px;
    justify-content: center;
    text-align: center;
}

.hero-badges {
    order: 4;
    flex: 1 0 100%;
    justify-content: center;
    margin-top: 0;
}

.hero-cta-row > div {
    max-width: 760px;
    width: 100%;
}

@media (min-width: 981px) {
    .hero .wrap.hero-grid {
        max-width: 1340px;
    }
}

.hero h1 {
    font-size: clamp(38px, 5.2vw, 66px);
    margin: 20px 0 22px;
}

.hero h1 .accent {
    color: var(--gold);
}

.hero-sub {
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 34px;
}

.hero-sub--center {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-badge {
    font-family: 'JetBrains Mono';
    font-size: 12.5px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.03em;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-dark);
    flex-shrink: 0;
}

.hero-media {
    align-self: stretch;
}

.vsl-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0e0d09;
}

.vsl-frame img,
.vsl-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vsl-frame .placeholder {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--gold-light);
    background: linear-gradient(135deg, #1f1c14, #0e0d09);
}

.vsl-frame .placeholder .play-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vsl-frame .placeholder .play-ring svg {
    width: 26px;
    height: 26px;
    fill: var(--gold);
}

.vsl-frame .placeholder span {
    font-family: 'JetBrains Mono';
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a89a6f;
}

.corner-tag {
    position: absolute;
    top: -14px;
    left: -14px;
    background: var(--gold);
    color: var(--ink);
    font-family: 'Oswald';
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(200,149,47,0.4);
}

.problem {
    background: var(--ink);
    color: var(--cream);
}

.problem .eyebrow {
    color: var(--gold-light);
}

.problem .eyebrow::before {
    background: var(--gold-light);
}

.problem h2 {
    color: var(--white);
    max-width: 780px;
    margin: 18px 0 50px;
    font-size: clamp(28px, 3.6vw, 44px);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.pain-card {
    background: #211d14;
    padding: 30px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pain-card svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.pain-card p {
    color: #d8d2c1;
    font-size: 16px;
}

.problem-transition {
    margin-top: 48px;
    font-family: 'Oswald';
    text-transform: uppercase;
    font-size: clamp(20px, 2.6vw, 28px);
    color: var(--gold-light);
    border-left: 4px solid var(--gold);
    padding-left: 22px;
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.founder-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.media-tile {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--cream-2);
    position: relative;
}

.media-tile img,
.media-tile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-tile .photo-top {
    object-position: top;
}

.media-tile .tile-fallback {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono';
    font-size: 11px;
    color: var(--ink-faint);
    text-align: center;
    padding: 10px;
    background: var(--cream-2);
}

.founder-quote-block {
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 8px;
    padding: 40px;
}

.founder h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    margin: 16px 0 24px;
}

.founder p {
    color: var(--ink-soft);
    font-size: 17px;
    margin-bottom: 16px;
}

.founder p strong {
    color: var(--ink);
}

.founder-cred-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.founder-cred {
    font-family: 'JetBrains Mono';
    font-size: 12.5px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.founder-cred svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-dark);
}

.system {
    background: var(--cream-2);
}

.system h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    max-width: 760px;
    margin: 18px 0 50px;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

.pillar:hover {
    transform: translateY(-6px);
}

.pillar .num {
    font-family: 'JetBrains Mono';
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 0.1em;
}

.pillar h3 {
    font-size: 21px;
    margin: 14px 0 14px;
}

.pillar ul {
    list-style: none;
    margin: 0 0 16px;
}

.pillar li {
    font-size: 15px;
    color: var(--ink-soft);
    padding-left: 20px;
    position: relative;
    margin-bottom: 9px;
}

.pillar li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 1px;
}

.pillar .benefit {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    background: var(--cream-2);
    border-left: 3px solid var(--gold);
    padding: 10px 14px;
    border-radius: 4px;
}

.stats {
    background: var(--ink);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.stat-box {
    background: #1c1811;
    padding: 42px 24px;
    text-align: center;
}

.stat-box svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
    margin-bottom: 14px;
}

.stat-num {
    font-family: 'Oswald';
    font-weight: 700;
    font-size: clamp(32px, 4vw, 44px);
    color: var(--white);
}

.stat-label {
    font-family: 'JetBrains Mono';
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a89a6f;
    margin-top: 8px;
}

.proof h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 18px 0 50px;
    max-width: 700px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
}

.video-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-card .frame {
    aspect-ratio: 16/9;
    background: #111;
}

.video-card .frame iframe,
.video-card .frame video {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    background: #111;
}

.video-card .cap {
    padding: 18px 22px;
}

.video-card .cap .name {
    font-family: 'Oswald';
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 16px;
}

.video-card .cap .result {
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 2px;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.quote-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    border-radius: 6px;
    padding: 26px 28px;
    box-shadow: var(--shadow);
}

.quote-card p {
    font-size: 15.5px;
    color: var(--ink-soft);
    font-style: italic;
    margin-bottom: 14px;
}

.quote-card .who {
    font-family: 'Oswald';
    font-weight: 600;
    letter-spacing: 0.03em;
    font-size: 14px;
    color: var(--ink);
    text-transform: uppercase;
}

.shot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.shot-grid--results {
    grid-template-columns: repeat(2, minmax(0, 260px));
}

.shot-grid--results .media-tile img {
    object-position: center top;
}

.system-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.system-gallery__item {
    position: relative;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--cream-2);
}

.system-gallery__item img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
}

.system-gallery__item .tile-fallback {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono';
    font-size: 11px;
    color: var(--ink-faint);
    text-align: center;
    padding: 10px;
    background: var(--cream-2);
}

.shot-grid .media-tile {
    aspect-ratio: 1;
}

@media (max-width: 720px) {
    .system-gallery__item {
        height: 180px;
    }
}

.img-fallback {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    border: 1px dashed var(--ink-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono';
    font-size: 11px;
    color: var(--ink-faint);
    text-align: center;
    padding: 10px;
    background: var(--cream-2);
}

.proof-subhead {
    font-family: 'Oswald';
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 18px;
    margin: 0 0 20px;
    color: var(--ink);
}

.proof-subhead--spaced {
    margin-top: 40px;
}

.qualifier {
    background: var(--cream-2);
}

.qualifier h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 18px 0 50px;
    max-width: 700px;
}

.qual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.qual-card {
    border-radius: 10px;
    padding: 36px 32px;
}

.qual-yes {
    background: var(--white);
    border: 2px solid var(--gold);
}

.qual-no {
    background: #1c1811;
    border: 2px solid #1c1811;
}

.qual-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qual-yes h3 {
    color: var(--ink);
}

.qual-no h3 {
    color: var(--white);
}

.qual-card h3 svg {
    width: 22px;
    height: 22px;
}

.qual-yes h3 svg {
    stroke: var(--gold-dark);
}

.qual-no h3 svg {
    stroke: var(--gold-light);
}

.qual-card ul {
    list-style: none;
}

.qual-card li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 14px;
    font-size: 15.5px;
}

.qual-yes li {
    color: var(--ink-soft);
}

.qual-no li {
    color: #cfc7b1;
}

.qual-yes li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-dark);
    font-weight: 700;
    font-family: 'Oswald';
    font-size: 18px;
}

.qual-no li::before {
    content: "\2013";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-light);
    font-weight: 700;
    font-family: 'Oswald';
    font-size: 18px;
}

.faq h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 18px 0 46px;
    max-width: 700px;
}

.faq-list {
    max-width: 820px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px 4px;
    font-family: 'Oswald';
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.01em;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.faq-q .plus {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-q .plus::before,
.faq-q .plus::after {
    content: "";
    position: absolute;
    background: var(--gold-dark);
}

.faq-q .plus::before {
    width: 10px;
    height: 2px;
}

.faq-q .plus::after {
    width: 2px;
    height: 10px;
}

.faq-item.open .faq-q .plus {
    transform: rotate(135deg);
    border-color: var(--ink);
}

.faq-item.open .faq-q .plus::before,
.faq-item.open .faq-q .plus::after {
    background: var(--ink);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-a-inner {
    padding: 0 4px 26px;
    color: var(--ink-soft);
    font-size: 15.5px;
    max-width: 700px;
}

.final-cta {
    background: linear-gradient(135deg, #1c1811, #0e0d09);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.final-cta .eyebrow {
    color: var(--gold-light);
}

.final-cta .eyebrow::before {
    background: var(--gold-light);
}

.final-cta h2 {
    color: var(--white);
    font-size: clamp(30px, 4.6vw, 54px);
    margin: 20px auto 20px;
    max-width: 760px;
}

.final-cta p {
    color: #cfc7b1;
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 17px;
}

footer {
    background: var(--ink);
    color: #8f8874;
    padding: 50px 0 34px;
    font-size: 13px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 26px;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: #cfc7b1;
}

.footer-links a:hover {
    color: var(--gold-light);
}

footer p {
    max-width: 960px;
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 980px) {
    .hero-main {
        flex-direction: column;
        gap: 40px;
    }

    .hero-copy {
        order: 1;
    }

    .hero-cta-row {
        order: 2;
    }

    .hero-badges {
        order: 3;
        justify-content: flex-start;
    }

    .hero-media {
        order: 4;
    }

    .hero-copy,
    .hero-media {
        flex: 1 1 auto;
        width: 100%;
    }

    .hero-media {
        align-self: auto;
    }

    .hero-cta-row {
        justify-content: center;
        text-align: center;
        margin-top: 0;
    }

    .hero-sub--center {
        margin: 0 auto 24px;
    }

    .hero {
        padding-top: 120px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
    }

    .founder-photos {
        order: 2;
    }

    .pillars {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .quote-grid {
        grid-template-columns: 1fr;
    }

    .shot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qual-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section-pad {
        padding: 72px 0;
    }

    .pillars {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .shot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-cta .btn-text-full {
        display: none;
    }

    .nav-cta .btn-text-short {
        display: inline;
    }

    .nav-cta.btn {
        padding: 10px 16px;
        font-size: 12.5px;
    }

    .brand-name {
        font-size: 16px;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-cta-row .btn-sub {
        text-align: center;
    }

    .hero-sub--center {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .hero-badges {
        gap: 16px 20px;
    }
}

@media (max-width: 340px) {
    .nav-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 12px;
        padding: 14px 16px;
    }

    .logo-wrap {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .brand-name {
        white-space: nowrap;
    }

    .nav-cta.btn {
        flex: 0 0 100%;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }
}