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

:root {
    --ink: #171126;
    --ink-soft: #4e4960;
    --purple-950: #190d35;
    --purple-900: #241048;
    --purple-800: #3a1b70;
    --purple-700: #553c9a;
    --purple-600: #6b46c1;
    --purple-500: #805ad5;
    --purple-300: #c4b1f5;
    --purple-100: #eee9fb;
    --lilac: #f7f4fd;
    --cream: #fffdf8;
    --white: #ffffff;
    --line: #e5deef;
    --muted: #716b80;
    --gold: #f3bd4d;
    --gold-deep: #c98212;
    --green: #287f5a;
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Manrope', sans-serif;
    --shadow-sm: 0 4px 14px rgba(35, 16, 72, 0.07);
    --shadow-md: 0 14px 30px rgba(35, 16, 72, 0.11);
    --shadow-lg: 0 24px 56px rgba(35, 16, 72, 0.17);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --transition: 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body,
a,
button {
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: 112px 0;
    position: relative;
}

.section-header {
    max-width: 790px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-header.narrow {
    max-width: 720px;
}

.eyebrow {
    align-items: center;
    color: var(--purple-700);
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 800;
    gap: 9px;
    letter-spacing: 0.16em;
    line-height: 1.2;
    margin-bottom: 18px;
    text-transform: uppercase;
}

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

.eyebrow-dot {
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    width: 8px;
}

.section-title,
.hero-title,
.cta-title {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.section-title {
    color: var(--ink);
    font-size: clamp(2.25rem, 4.2vw, 4rem);
    margin-bottom: 22px;
}

.section-title span,
.cta-title span {
    color: var(--purple-600);
}

.section-description,
.section-lead {
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.8;
}

/* Header */
.header {
    background: rgba(255, 253, 248, 0.94);
    border-bottom: 1px solid rgba(229, 222, 239, 0.75);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    transition: box-shadow var(--transition), background var(--transition);
}

.nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 78px;
}

.nav-logo {
    display: inline-flex;
    line-height: 0;
}

.nav-logo .logo {
    height: 46px;
    object-fit: contain;
    width: auto;
}

.nav-menu {
    align-items: center;
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-link {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--purple-600);
}

.nav-link.btn-primary-nav {
    background: var(--gold);
    color: var(--purple-950) !important;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    padding: 12px 18px;
}

.nav-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    background: var(--purple-700);
    display: block;
    height: 2px;
    transition: transform var(--transition), opacity var(--transition);
    width: 25px;
}

/* Buttons and links */
.btn-primary,
.btn-secondary {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    min-height: 50px;
    padding: 14px 23px;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn-primary {
    background: var(--gold);
    box-shadow: 0 12px 24px rgba(243, 189, 77, 0.26);
    color: var(--purple-950);
}

.btn-primary:hover {
    background: #ffd06d;
    box-shadow: 0 16px 30px rgba(243, 189, 77, 0.34);
    transform: translateY(-3px);
}

.btn-primary:active,
.btn-secondary:active {
    transform: scale(0.97);
}

.btn-secondary {
    border: 1px solid var(--purple-600);
    color: var(--purple-700);
}

.btn-secondary:hover {
    background: var(--purple-600);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    font-size: 0.98rem;
    min-height: 58px;
    padding: 16px 28px;
}

.text-link {
    align-items: center;
    display: inline-flex;
    font-size: 0.91rem;
    font-weight: 800;
    gap: 8px;
    text-decoration: none;
    transition: gap var(--transition), color var(--transition);
}

.text-link:hover {
    gap: 12px;
}

.light-link {
    color: rgba(255, 255, 255, 0.88);
}

.light-link:hover {
    color: var(--gold);
}

.purple-link {
    color: var(--purple-700);
}

.purple-link:hover {
    color: var(--purple-500);
}

/* Hero */
.hero {
    background: var(--purple-950);
    color: var(--white);
    min-height: 760px;
    overflow: hidden;
    padding: 154px 0 0;
    position: relative;
}

.hero::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    content: '';
    inset: 0;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 85%);
    opacity: 0.6;
    pointer-events: none;
    position: absolute;
}

.hero-glow {
    border-radius: 50%;
    filter: blur(3px);
    pointer-events: none;
    position: absolute;
}

.hero-glow-one {
    background: rgba(128, 90, 213, 0.35);
    height: 480px;
    right: -140px;
    top: -150px;
    width: 480px;
}

.hero-glow-two {
    background: rgba(243, 189, 77, 0.12);
    bottom: 160px;
    height: 320px;
    left: -160px;
    width: 320px;
}

.hero-container {
    align-items: center;
    display: grid;
    gap: 72px;
    grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.77fr);
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 690px;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.75rem, 5.1vw, 5.35rem);
    margin-bottom: 26px;
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.12rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 15px;
    max-width: 630px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 620px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
}

.hero-microcopy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    margin-top: 14px;
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 44px;
    max-width: 635px;
    padding-top: 22px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-item strong {
    color: var(--gold);
    font-size: clamp(1.45rem, 2.7vw, 2rem);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.73rem;
    line-height: 1.35;
    max-width: 120px;
}

.hero-visual {
    justify-self: end;
    max-width: 350px;
    position: relative;
    width: 100%;
}

.hero-portrait-frame {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
    overflow: hidden;
    padding: 13px 13px 0;
    position: relative;
}

.portrait-topline {
    align-items: center;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    font-size: 0.63rem;
    font-weight: 800;
    justify-content: space-between;
    letter-spacing: 0.1em;
    padding: 3px 4px 12px;
}

.live-pill {
    align-items: center;
    color: #b9e5c9;
    display: inline-flex;
    gap: 5px;
}

.live-pill i {
    background: #65c98c;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(101, 201, 140, 0.13);
    display: inline-block;
    height: 6px;
    width: 6px;
}

.hero-portrait {
    aspect-ratio: 1;
    background: linear-gradient(180deg, var(--purple-300), var(--purple-700));
    border-radius: 50%;
    display: block;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
    object-position: center 24%;
    width: 40%;
}

.portrait-caption {
    background: var(--white);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 17px 16px 19px;
}

.portrait-caption strong {
    font-size: 1.02rem;
}

.portrait-caption span {
    color: var(--muted);
    font-size: 0.78rem;
}

.hero-proof-card {
    background: var(--gold);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
    color: var(--purple-950);
    margin: -18px 0 0 auto;
    padding: 14px 16px;
    position: relative;
    width: 213px;
    z-index: 2;
}

.proof-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.proof-row {
    border-top: 1px solid rgba(25, 13, 53, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 0;
}

.proof-row + .proof-row {
    margin-top: 7px;
}

.proof-row strong {
    font-size: 1.24rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.proof-row span {
    font-size: 0.65rem;
    font-weight: 600;
}

.hero-bottom-line {
    background: rgba(0, 0, 0, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 88px;
    position: relative;
    z-index: 1;
}

.hero-bottom-line .container {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    min-height: 70px;
}

.hero-bottom-line span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
}

.hero-bottom-line a {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

/* Problem */
.pain-section {
    background: var(--cream);
}

.split-heading {
    align-items: end;
    display: grid;
    gap: 70px;
    grid-template-columns: 1.1fr 0.9fr;
    margin-bottom: 46px;
}

.split-heading .section-title {
    margin-bottom: 0;
}

.split-heading .section-lead {
    border-left: 2px solid var(--gold);
    margin-bottom: 4px;
    padding-left: 25px;
}

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

.pain-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 27px;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.pain-card:hover {
    border-color: var(--purple-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pain-number {
    color: var(--purple-300);
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 36px;
}

.pain-card h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.pain-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.inline-cta {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 25px;
    justify-content: space-between;
    margin-top: 42px;
    padding-top: 24px;
}

.inline-cta strong {
    font-size: 0.98rem;
}

/* Offer */
.dark-section {
    background: var(--purple-950);
    color: var(--white);
    overflow: hidden;
}

.dark-section::before {
    background: radial-gradient(circle, rgba(128, 90, 213, 0.34) 0%, transparent 70%);
    content: '';
    height: 680px;
    pointer-events: none;
    position: absolute;
    right: -280px;
    top: -260px;
    width: 680px;
}

.light-copy,
.light-copy .section-title,
.light-copy .section-description {
    color: var(--white);
}

.light-copy .section-description {
    color: rgba(255, 255, 255, 0.68);
}

.light-title span {
    color: var(--gold);
}

.offer-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 1;
}

.offer-card {
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: grid;
    gap: 20px;
    grid-template-columns: 44px 1fr;
    padding: 27px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(243, 189, 77, 0.62);
    transform: translateY(-3px);
}

.offer-icon {
    align-items: center;
    background: var(--gold);
    border-radius: 12px;
    color: var(--purple-950);
    display: flex;
    font-size: 1.65rem;
    font-weight: 800;
    height: 43px;
    justify-content: center;
    width: 43px;
}

.offer-step {
    color: var(--gold);
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.offer-card h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.42rem;
    letter-spacing: -0.03em;
    margin-bottom: 7px;
}

.offer-card p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.9rem;
    line-height: 1.65;
}

.offer-footnote {
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    gap: 13px;
    margin-top: 35px;
    padding-top: 21px;
    position: relative;
    z-index: 1;
}

.check-mark {
    align-items: center;
    background: rgba(243, 189, 77, 0.16);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    flex: 0 0 25px;
    font-weight: 800;
    height: 25px;
    justify-content: center;
    width: 25px;
}

.offer-footnote p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    line-height: 1.6;
}

.offer-footnote strong {
    color: var(--white);
}

/* Cases */
.cases-section {
    background: var(--white);
}

.cases-heading {
    margin-bottom: 52px;
}

.cases-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
}

.case-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.case-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.case-image-wrap {
    background: var(--purple-100);
    overflow: hidden;
    position: relative;
}

.case-image {
    aspect-ratio: 2.58 / 1;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
}

.case-card:hover .case-image {
    transform: scale(1.035);
}

.case-tag {
    background: var(--purple-950);
    border-radius: 999px;
    bottom: 14px;
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 800;
    left: 14px;
    letter-spacing: 0.08em;
    padding: 7px 10px;
    position: absolute;
    text-transform: uppercase;
}

.case-body {
    padding: 26px;
}

.case-title-row {
    align-items: start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.case-title-row h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 5px;
}

.case-kicker {
    color: var(--purple-600);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.case-ticket {
    color: var(--muted);
    flex: 0 0 auto;
    font-size: 0.64rem;
    line-height: 1.35;
    text-align: right;
}

.case-ticket strong {
    color: var(--ink);
    font-size: 0.96rem;
}

.case-summary {
    color: var(--ink-soft);
    font-size: 0.91rem;
    line-height: 1.7;
    margin: 22px 0;
}

.case-metrics {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    padding: 17px 0;
}

.case-metrics div {
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 9px;
}

.case-metrics div:last-child {
    border-right: 0;
    padding-right: 0;
}

.case-metrics strong {
    color: var(--purple-700);
    font-size: 1.2rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.case-metrics span {
    color: var(--muted);
    font-size: 0.61rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.case-reading {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-top: 18px;
    padding: 15px;
}

.case-reading strong {
    color: var(--purple-700);
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.case-reading p {
    color: var(--ink-soft);
    font-size: 0.8rem;
    line-height: 1.55;
}

.case-disclaimer {
    color: #898293;
    font-size: 0.63rem;
    line-height: 1.5;
    margin-top: 16px;
}

.cases-cta {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-top: 48px;
    padding-top: 28px;
}

.cases-cta p {
    font-weight: 800;
}

/* Method */
.method-section {
    background: var(--lilac);
}

.method-layout {
    display: grid;
    gap: 90px;
    grid-template-columns: 0.82fr 1.18fr;
}

.method-intro .section-title {
    margin-bottom: 20px;
}

.method-intro .section-lead {
    margin-bottom: 26px;
}

.method-list {
    border-top: 1px solid var(--line);
}

.method-row {
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 25px;
    grid-template-columns: 55px 1fr;
    padding: 25px 0;
}

.method-number {
    color: var(--purple-600);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding-top: 3px;
}

.method-row h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.method-row p {
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.65;
}

/* Fit */
.fit-section {
    background: var(--cream);
}

.fit-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    max-width: 930px;
}

.fit-card {
    border-radius: var(--radius-md);
    padding: 30px;
}

.fit-card-yes {
    background: var(--purple-950);
    color: var(--white);
}

.fit-card-no {
    background: var(--white);
    border: 1px solid var(--line);
}

.fit-symbol {
    align-items: center;
    border-radius: 50%;
    display: flex;
    font-size: 1.15rem;
    font-weight: 800;
    height: 31px;
    justify-content: center;
    margin-bottom: 20px;
    width: 31px;
}

.fit-card-yes .fit-symbol {
    background: var(--gold);
    color: var(--purple-950);
}

.fit-card-no .fit-symbol {
    background: var(--purple-100);
    color: var(--purple-700);
}

.fit-card h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.fit-card ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.fit-card li {
    font-size: 0.88rem;
    line-height: 1.55;
    padding-left: 21px;
    position: relative;
}

.fit-card li::before {
    content: '→';
    font-weight: 800;
    left: 0;
    position: absolute;
    top: 0;
}

.fit-card-yes li::before {
    color: var(--gold);
}

.fit-card-no li::before {
    color: var(--purple-500);
}

.fit-card-yes li {
    color: rgba(255, 255, 255, 0.74);
}

.fit-card-no li {
    color: var(--ink-soft);
}

/* About */
.about-section {
    background: var(--white);
}

.about-card {
    align-items: center;
    background: var(--lilac);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    overflow: hidden;
    padding: 44px;
}

.about-image-wrap {
    align-self: center;
    background: linear-gradient(145deg, var(--purple-300), var(--purple-900));
    border-radius: 18px;
    height: 300px;
    max-width: 220px;
    overflow: hidden;
    position: relative;
}

.about-image {
    display: block;
    height: 100%;
    margin: 0;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.about-content .section-title {
    font-size: clamp(2.1rem, 3.8vw, 3.35rem);
}

.about-content > p {
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.78;
    margin-bottom: 15px;
}

.about-highlight {
    background: var(--purple-950);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.91rem;
    line-height: 1.65;
    margin-top: 23px;
    padding: 19px 21px;
}

.about-highlight strong {
    color: var(--gold);
}

/* Final CTA */
.cta-section {
    background: var(--purple-950);
    color: var(--white);
    overflow: hidden;
}

.cta-glow {
    background: radial-gradient(circle, rgba(128, 90, 213, 0.43) 0%, transparent 68%);
    height: 700px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: -420px;
    transform: translateX(-50%);
    width: 900px;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-content {
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2.45rem, 5vw, 4.75rem);
    margin-bottom: 22px;
}

.cta-title span {
    color: var(--gold);
}

.cta-description {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.08rem;
    line-height: 1.8;
    margin: 0 auto 28px;
    max-width: 690px;
}

.cta-microcopy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.76rem;
    margin-top: 14px;
}

/* Footer */
.footer {
    background: #100a21;
    color: var(--white);
    padding: 42px 0 22px;
}

.footer-content {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
}

.footer-brand img {
    filter: brightness(0) invert(1);
    height: 42px;
    width: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
    margin-top: 8px;
}

.footer-info {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.79rem;
    text-align: right;
}

.footer-info p + p {
    margin-top: 5px;
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.42);
    display: flex;
    font-size: 0.7rem;
    gap: 18px;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 18px;
}

/* Mobile CTA */
.mobile-sticky-cta {
    align-items: center;
    background: var(--gold);
    bottom: 14px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(25, 13, 53, 0.28);
    color: var(--purple-950);
    display: none;
    font-size: 0.84rem;
    font-weight: 800;
    gap: 11px;
    justify-content: center;
    left: 14px;
    min-height: 48px;
    padding: 12px 20px;
    position: fixed;
    right: 14px;
    text-decoration: none;
    z-index: 999;
}

.mobile-sticky-cta strong {
    font-size: 1.15rem;
}

/* Reveal motion */
.reveal,
.reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.js-enabled .reveal,
.js-enabled .reveal-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 550ms ease, transform 550ms cubic-bezier(0.23, 1, 0.32, 1);
}

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

.reveal-delay {
    transition-delay: 100ms;
}

@media (max-width: 1050px) {
    .nav-menu {
        gap: 18px;
    }

    .hero-container {
        gap: 42px;
    }

    .hero-proof-card {
        margin-right: 0;
    }

    .hero-visual {
        max-width: 350px;
    }

    .about-card {
        gap: 28px;
    }

    .about-image-wrap {
        max-width: 110px;
        min-height: 138px;
    }

    .method-layout {
        gap: 52px;
    }

    .about-card {
        gap: 38px;
        padding: 34px;
    }

    .about-image-wrap {
        height: 285px;
        max-width: 220px;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 36px, 680px);
    }

    .section {
        padding: 82px 0;
    }

    .nav {
        min-height: 70px;
    }

    .nav-menu {
        align-items: stretch;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 12px 18px 20px;
        position: fixed;
        right: -105%;
        top: 70px;
        transition: right var(--transition);
        width: min(330px, 100%);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        border-bottom: 1px solid var(--line);
        display: block;
        padding: 14px 0;
    }

    .nav-link.btn-primary-nav {
        border-bottom: 0;
        margin-top: 10px;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 0;
        padding-top: 130px;
    }

    .hero-container,
    .split-heading,
    .method-layout,
    .about-card {
        grid-template-columns: 1fr;
    }

    .hero-container {
        gap: 54px;
    }

    .hero-visual {
        justify-self: center;
        max-width: 320px;
    }

    .hero-bottom-line {
        margin-top: 64px;
    }

    .split-heading {
        gap: 24px;
    }

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

    .pain-number {
        margin-bottom: 20px;
    }

    .method-layout {
        gap: 48px;
    }

    .about-card {
        gap: 34px;
    }

    .about-image-wrap {
        height: 285px;
        justify-self: center;
        max-width: 220px;
    }

    .mobile-sticky-cta {
        display: inline-flex;
    }

    body {
        padding-bottom: 75px;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 30px);
    }

    .section {
        padding: 70px 0;
    }

    .nav-logo .logo {
        height: 40px;
    }

    .hero-title {
        font-size: clamp(2.45rem, 12vw, 3.55rem);
    }

    .hero-subtitle {
        font-size: 1.08rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .hero-actions .btn-primary,
    .hero-actions .text-link {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        gap: 13px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .stat-item strong {
        font-size: 1.35rem;
    }

    .stat-item span {
        font-size: 0.65rem;
    }

    .hero-portrait {
        height: auto;
    }

    .hero-proof-card {
        bottom: auto;
        left: auto;
        margin: -22px auto 0;
        max-width: 100%;
        padding: 11px 12px;
        position: relative;
        transform: none;
        right: auto;
        top: auto;
        transform-origin: center top;
    }

    .hero-bottom-line .container {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        justify-content: center;
        min-height: 82px;
    }

    .section-title {
        font-size: 2.45rem;
    }

    .split-heading .section-lead {
        padding-left: 16px;
    }

    .inline-cta,
    .cases-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .inline-cta .btn-secondary,
    .cases-cta .btn-primary {
        width: 100%;
    }

    .offer-grid,
    .cases-grid,
    .fit-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        grid-template-columns: 37px 1fr;
        padding: 21px;
    }

    .offer-icon {
        font-size: 1.3rem;
        height: 36px;
        width: 36px;
    }

    .offer-card h3 {
        font-size: 1.28rem;
    }

    .case-body {
        padding: 21px;
    }

    .case-title-row h3 {
        font-size: 1.46rem;
    }

    .case-metrics strong {
        font-size: 1rem;
    }

    .case-metrics span {
        font-size: 0.54rem;
    }

    .method-row {
        gap: 16px;
        grid-template-columns: 39px 1fr;
    }

    .method-row h3 {
        font-size: 1.28rem;
    }

    .about-card {
        border-radius: 19px;
        padding: 20px;
    }

    .about-image-wrap {
        height: 250px;
        max-width: 200px;
    }

    .footer-content,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-info {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
