/* ================================================================
   ROOVANA — Premium mobile-first homepage
   Rooh (soul) + Vana (place of) — A place for your soul
   ================================================================ */

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

:root {
    --primary: #6D5ACD;
    --primary-dark: #5241A8;
    --primary-light: #9B8FE0;
    --primary-subtle: #F0EDFB;
    --accent: #2EB5A0;
    --accent-subtle: #E6F8F5;
    --amber: #E8943A;
    --amber-subtle: #FEF3E2;
    --green: #3BAF7A;
    --green-subtle: #E2F7ED;
    --rose: #D86482;
    --rose-subtle: #FCEEF2;
    --bg: #FDFCFB;
    --bg-alt: #F7F5F2;
    --surface: #FFFFFF;
    --text: #1A1614;
    --text-secondary: #5C5550;
    --text-muted: #9E9792;
    --border: #EBE8E4;
    --border-light: #F2F0ED;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --radius-full: 9999px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,.03);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,.07);
    --shadow-lg: 0 16px 48px rgba(0,0,0,.09);
    --shadow-xl: 0 24px 64px rgba(0,0,0,.12);
    --max-w: 1140px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.text-muted { color: var(--text-secondary); }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* --- Scroll animations --- */
.anim-up { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.anim-up.is-visible { opacity: 1; transform: translateY(0); }
.anim-up--delay { transition-delay: .15s; }

/* --- Section headers --- */
.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary);
    background: var(--primary-subtle);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: var(--text);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: .9375rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all .25s var(--ease);
    text-decoration: none;
    line-height: 1;
    position: relative;
}

.btn--primary { background: var(--primary); color: #fff; padding: 14px 28px; box-shadow: 0 2px 12px rgba(109,90,205,.35); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(109,90,205,.4); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost { background: transparent; color: var(--text); padding: 14px 28px; border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--text-secondary); background: var(--surface); }

.btn--white { background: #fff; color: var(--primary); padding: 14px 28px; box-shadow: 0 2px 12px rgba(0,0,0,.15); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.2); }

.btn--nav { background: var(--primary); color: #fff; padding: 10px 20px; font-size: .875rem; }
.btn--nav:hover { background: var(--primary-dark); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn__icon { flex-shrink: 0; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(253,252,251,.7);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all .3s var(--ease);
}
.navbar--scrolled { border-bottom-color: var(--border-light); background: rgba(253,252,251,.92); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.navbar__brand { display: flex; align-items: center; gap: 10px; z-index: 101; }

.navbar__logo-img {
    width: 36px; height: 36px;
    border-radius: 8px;
    object-fit: contain;
}

.navbar__wordmark { font-weight: 700; font-size: 1.125rem; letter-spacing: -.02em; color: var(--text); }
.footer .navbar__wordmark { color: #fff; }

/* Mobile nav */
.navbar__nav {
    display: none; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--bg); padding: 100px 32px 32px;
    gap: 4px; z-index: 99;
}
.navbar__nav.is-open { display: flex; }
.navbar__link { font-size: 1.125rem; font-weight: 500; padding: 14px 0; color: var(--text); transition: color .2s; }
.navbar__link:hover { color: var(--primary); }
.navbar__nav .btn--nav { margin-top: 12px; text-align: center; justify-content: center; padding: 14px; font-size: 1rem; }

.navbar__toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 101;
}
.navbar__toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; transform-origin: center; }
.navbar__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative; padding: 112px 0 64px;
    background: linear-gradient(180deg, #F3F0FA 0%, #FAF5F0 40%, var(--bg) 100%);
    overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: .45;
}
.hero__orb--1 { width: 500px; height: 500px; background: rgba(109,90,205,.25); top: -100px; right: -100px; }
.hero__orb--2 { width: 400px; height: 400px; background: rgba(46,181,160,.2); bottom: -80px; left: -80px; }
.hero__orb--3 { width: 300px; height: 300px; background: rgba(232,148,58,.15); top: 40%; left: 50%; }

.hero__inner { position: relative; display: flex; flex-direction: column; gap: 48px; }
.hero__content { max-width: 540px; }

.hero__pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .8125rem; font-weight: 600; color: var(--primary);
    background: rgba(109,90,205,.08); border: 1px solid rgba(109,90,205,.12);
    padding: 8px 16px; border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 7vw, 3.75rem);
    font-weight: 700; line-height: 1.1; letter-spacing: -.02em;
    color: var(--text);
}
.hero__title--accent {
    background: linear-gradient(135deg, var(--primary) 0%, #8B5CF6 40%, var(--accent) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.hero__subtitle { font-size: clamp(1rem, 2.5vw, 1.1875rem); color: var(--text-secondary); line-height: 1.65; margin-top: 20px; max-width: 460px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero__meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
    margin-top: 24px; font-size: .8125rem; color: var(--text-muted);
}
.hero__meta-item { display: inline-flex; align-items: center; gap: 4px; }
.hero__meta-item svg { flex-shrink: 0; }
.hero__divider { width: 1px; height: 14px; background: var(--border); }

/* Phone mockup */
.hero__visual { display: flex; justify-content: center; }

.phone-frame {
    position: relative; width: 280px;
    background: #1a1a1a; border-radius: 36px; padding: 12px;
    box-shadow: var(--shadow-xl), inset 0 0 0 1px rgba(255,255,255,.1);
}
.phone-frame__notch {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 28px;
    background: #1a1a1a; border-radius: 0 0 16px 16px; z-index: 2;
}

.phone-screen {
    background: var(--surface); border-radius: 26px;
    padding: 40px 16px 16px;
    display: flex; flex-direction: column; gap: 14px;
    min-height: 440px;
}

.screen-header {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 8px;
}
.screen-header__time { font-size: .7rem; font-weight: 600; color: var(--text-muted); }
.screen-header__title { font-size: .8125rem; font-weight: 700; color: var(--text); }
.screen-header__dots { color: var(--text-muted); display: flex; }

.screen-question { font-size: 1rem; font-weight: 700; text-align: center; color: var(--text); }

.screen-moods { display: flex; justify-content: space-between; padding: 4px 0; }
.screen-mood { display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: default; }
.screen-mood__face { font-size: 1.5rem; display: block; transition: transform .2s; }
.screen-mood__label { font-size: .625rem; color: var(--text-muted); font-weight: 500; }
.screen-mood--selected .screen-mood__face { transform: scale(1.25); }
.screen-mood--selected .screen-mood__label { color: var(--primary); font-weight: 700; }

.screen-section-label { font-size: .6875rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

.screen-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.screen-tag {
    font-size: .6875rem; padding: 5px 10px; border-radius: var(--radius-full);
    border: 1px solid var(--border); color: var(--text-secondary); font-weight: 500;
}
.screen-tag--active { background: var(--primary-subtle); border-color: rgba(109,90,205,.2); color: var(--primary); }

.screen-slider { display: flex; flex-direction: column; gap: 4px; }
.screen-slider__label { display: flex; justify-content: space-between; font-size: .6875rem; font-weight: 600; color: var(--text-secondary); }
.screen-slider__value { color: var(--primary); }
.screen-slider__track { height: 6px; background: var(--bg-alt); border-radius: 3px; overflow: hidden; }
.screen-slider__fill { height: 100%; background: var(--primary); border-radius: 3px; transition: width .5s var(--ease); }
.screen-slider__fill--teal { background: var(--accent); }

.screen-btn {
    background: var(--primary); color: #fff; border: none; border-radius: var(--radius-sm);
    padding: 10px; font-family: var(--font); font-size: .8125rem; font-weight: 700;
    cursor: default; margin-top: auto;
}

/* ================================================================
   PROOF BAR
   ================================================================ */
.proof-bar { padding: 40px 0; background: var(--surface); border-bottom: 1px solid var(--border-light); }

.proof-bar__inner { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }

.proof-bar__divider { width: 1px; height: 36px; background: var(--border); display: none; }

.proof-bar__item { display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center; min-width: 100px; }
.proof-bar__item strong { font-size: 1.75rem; font-weight: 800; letter-spacing: -.02em; color: var(--text); }
.proof-bar__item span { font-size: .8125rem; color: var(--text-muted); font-weight: 500; }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-it-works { padding: 80px 0; }

.steps { display: grid; grid-template-columns: 1fr; gap: 32px; }

.step {
    text-align: center;
    background: var(--surface); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 32px 24px;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.step__visual { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px; }

.step__number {
    font-size: 2rem; font-weight: 800; letter-spacing: -.04em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}

.step__icon-wrap {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-subtle); border-radius: 14px;
    color: var(--primary);
}

.step__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.step__text { font-size: .9375rem; color: var(--text-secondary); max-width: 300px; margin: 0 auto; line-height: 1.6; }

/* ================================================================
   MEANING SECTION
   ================================================================ */
.meaning {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, #FAF5F0 50%, var(--accent-subtle) 100%);
}

.meaning__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 48px 32px;
}

.meaning__icon {
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
}

.meaning__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.meaning__title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.meaning__text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.meaning__text strong {
    color: var(--text);
    font-weight: 600;
}

.meaning__text em {
    font-style: italic;
    color: var(--primary);
}

/* ================================================================
   FEATURES
   ================================================================ */
.features { padding: 80px 0; background: var(--bg-alt); }

/* Alternating feature rows */
.feature-row {
    display: flex; flex-direction: column; gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light);
}
.feature-row:last-of-type { border-bottom: none; }

.feature-row__content { flex: 1; }
.feature-row__badge {
    display: inline-block;
    font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
    color: var(--primary); background: var(--primary-subtle);
    padding: 4px 10px; border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.feature-row__title { font-size: clamp(1.25rem, 3vw, 1.625rem); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; margin-bottom: 12px; }
.feature-row__text { font-size: .9375rem; color: var(--text-secondary); line-height: 1.7; max-width: 420px; }

.feature-row__visual {
    flex: 1; display: flex; align-items: center; justify-content: center;
    background: var(--surface); border: 1px solid var(--border-light); border-radius: var(--radius);
    padding: 32px; min-height: 200px;
}

/* Mini check-in card */
.mini-card { width: 100%; max-width: 280px; display: flex; flex-direction: column; gap: 14px; }
.mini-card__row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .875rem; font-weight: 600; color: var(--text);
}
.mini-dots { display: flex; gap: 6px; }
.dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--border); display: inline-block;
    transition: background .3s;
}
.dot--filled { background: var(--primary); }
.dot--teal { background: var(--accent); }
.dot--amber { background: var(--amber); }

/* Mini chart */
.mini-chart { width: 100%; max-width: 300px; }
.mini-chart__label { font-size: .75rem; font-weight: 600; color: var(--text-muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em; }
.mini-chart__bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; }
.mini-chart__bar {
    flex: 1; background: var(--primary-subtle); border-radius: 6px 6px 0 0;
    height: var(--h); position: relative; transition: height .5s var(--ease);
    display: flex; align-items: flex-end; justify-content: center;
}
.mini-chart__bar span { position: absolute; bottom: -22px; font-size: .625rem; font-weight: 600; color: var(--text-muted); }
.mini-chart__bar--accent { background: var(--primary); }
.mini-chart__bar--accent span { color: var(--primary); }

/* Feature card grid */
.features-grid {
    display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px;
}

.feature-card {
    background: var(--surface); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 28px 24px;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.feature-card__icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; margin-bottom: 16px;
}
.feature-card__icon--purple { background: var(--primary-subtle); color: var(--primary); }
.feature-card__icon--teal { background: var(--accent-subtle); color: var(--accent); }
.feature-card__icon--amber { background: var(--amber-subtle); color: var(--amber); }
.feature-card__icon--green { background: var(--green-subtle); color: var(--green); }

.feature-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.feature-card__text { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; }

/* ================================================================
   INSIGHTS
   ================================================================ */
.insights { padding: 80px 0; }

.insight-list { display: flex; flex-direction: column; gap: 16px; max-width: 680px; margin: 0 auto; }

.insight {
    display: flex; gap: 16px;
    background: var(--surface); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 24px;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.insight:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.insight__indicator {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--primary-subtle); color: var(--primary);
}
.insight__indicator--amber { background: var(--amber-subtle); color: var(--amber); }
.insight__indicator--teal { background: var(--accent-subtle); color: var(--accent); }

.insight__body { flex: 1; }
.insight__type {
    display: inline-block;
    font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    color: var(--text-muted); margin-bottom: 4px;
}
.insight__title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.insight__text { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; }
.insight__text strong { color: var(--text); font-weight: 600; }

/* ================================================================
   SOCIAL PROOF / TESTIMONIALS
   ================================================================ */
.social-proof { padding: 80px 0; background: var(--bg-alt); }

.testimonials { display: grid; grid-template-columns: 1fr; gap: 16px; }

.testimonial {
    background: var(--surface); border: 1px solid var(--border-light);
    border-radius: var(--radius); padding: 28px 24px;
    display: flex; flex-direction: column; gap: 16px;
    transition: box-shadow .3s var(--ease);
}
.testimonial:hover { box-shadow: var(--shadow-sm); }

.testimonial__stars { font-size: .875rem; color: var(--amber); letter-spacing: 2px; }

.testimonial__quote p {
    font-size: .9375rem; line-height: 1.7; color: var(--text);
    margin: 0;
}

.testimonial__author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.testimonial__avatar {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, var(--accent-subtle) 100%);
    font-weight: 700; font-size: .875rem; color: var(--primary);
}

.testimonial__author strong { display: block; font-size: .875rem; font-weight: 600; }
.testimonial__author span { display: block; font-size: .75rem; color: var(--text-muted); }

/* ================================================================
   FINAL CTA
   ================================================================ */
.cta {
    position: relative; padding: 100px 0;
    background: linear-gradient(135deg, #3D2E7C 0%, var(--primary) 40%, #8B5CF6 70%, var(--accent) 100%);
    color: #fff; text-align: center; overflow: hidden;
}

.cta__bg { position: absolute; inset: 0; pointer-events: none; }
.cta__orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.cta__orb--1 { width: 400px; height: 400px; background: rgba(139,92,246,.4); top: -100px; right: -50px; }
.cta__orb--2 { width: 300px; height: 300px; background: rgba(46,181,160,.3); bottom: -80px; left: -40px; }

.cta__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 700;
    line-height: 1.15; letter-spacing: -.015em;
}
.cta__subtitle { font-size: clamp(1rem, 2.5vw, 1.1875rem); opacity: .85; max-width: 440px; line-height: 1.6; }
.cta__actions { margin-top: 12px; }
.cta__note { font-size: .8125rem; opacity: .6; margin-top: 8px; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    padding: 56px 0 32px;
    background: #0F0D0B; color: #78716C;
}

.footer__top { display: flex; flex-direction: column; gap: 40px; padding-bottom: 32px; }
.footer__brand { max-width: 260px; }
.footer__brand .navbar__logo-img { border-radius: 8px; }
.footer__tagline { font-size: .875rem; margin-top: 12px; line-height: 1.5; color: #57534E; }

.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { color: #D6D3D1; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.footer__col a { font-size: .875rem; color: #78716C; transition: color .2s; }
.footer__col a:hover { color: #D6D3D1; }

.footer__bottom {
    padding-top: 24px; border-top: 1px solid #1C1917;
    font-size: .8125rem; color: #57534E;
}

/* ================================================================
   MOBILE STICKY CTA
   ================================================================ */
.mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(253,252,251,.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-light);
    z-index: 90;
}
.mobile-cta.is-visible { display: block; }

/* ================================================================
   TABLET (640px+)
   ================================================================ */
@media (min-width: 640px) {
    .container { padding: 0 32px; }
    .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials { grid-template-columns: repeat(3, 1fr); }
    .proof-bar__divider { display: block; }
    .proof-bar__inner { gap: 32px; flex-wrap: nowrap; }

    .feature-row { flex-direction: row; align-items: center; gap: 48px; }
    .feature-row--reverse { flex-direction: row-reverse; }
    .feature-row__visual { min-height: 240px; }
}

/* ================================================================
   DESKTOP (1024px+)
   ================================================================ */
@media (min-width: 1024px) {
    .container { padding: 0 40px; }

    .navbar__nav {
        display: flex; position: static; flex-direction: row;
        background: transparent; padding: 0; gap: 4px; align-items: center;
    }
    .navbar__link { font-size: .875rem; padding: 8px 14px; border-radius: var(--radius-full); }
    .navbar__toggle { display: none; }

    .hero { padding: 140px 0 100px; }
    .hero__inner { flex-direction: row; align-items: center; gap: 64px; }
    .hero__content { flex: 1; max-width: 560px; }
    .hero__visual { flex: 0 0 auto; }
    .phone-frame { width: 300px; }
    .phone-screen { min-height: 480px; }

    .how-it-works { padding: 100px 0; }
    .features { padding: 100px 0; }
    .insights { padding: 100px 0; }
    .social-proof { padding: 100px 0; }
    .cta { padding: 120px 0; }

    .features-grid { grid-template-columns: repeat(4, 1fr); }
    .feature-row__visual { min-height: 280px; }

    .section-header { margin-bottom: 64px; }

    .mobile-cta { display: none !important; }

    .footer__top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
    .footer__links { gap: 64px; }

    .meaning { padding: 80px 0; }
    .meaning__inner { padding: 56px 48px; }
}

/* ================================================================
   LARGE DESKTOP (1280px+)
   ================================================================ */
@media (min-width: 1280px) {
    :root { --max-w: 1200px; }
    .hero__title { font-size: 3.75rem; }
}
