/* ===========================================================================
   NurturAI — Marketing Site Styles
   Light theme · DM Sans · Apple "liquid glass"
   Palette mirrors NurturColors (light variants) from the iOS app.
   =========================================================================== */

/* ---------- Tokens ---------- */
:root {
    /* Brand */
    --accent:        #C8522A;
    --accent-hover:  #B0481F;
    --accent-soft:   #F5E8E2;

    /* Surfaces */
    --background:    #FAF8F4;
    --surface:       #FFFFFF;
    --surface-warm:  #F3EFE8;

    /* Text */
    --text-primary:    #0F0E0C;
    --text-secondary:  #4A4742;
    --text-faint:      #8C8880;

    /* Semantic */
    --danger:   #9C2A2A;
    --danger-soft: rgba(156, 42, 42, 0.08);
    --hairline: rgba(15, 14, 12, 0.08);

    /* Glass */
    --glass-bg:        rgba(255, 255, 255, 0.55);
    --glass-bg-strong: rgba(255, 255, 255, 0.72);
    --glass-border:    rgba(255, 255, 255, 0.6);
    --glass-blur:      saturate(180%) blur(22px);
    --glass-shadow:    0 12px 40px -16px rgba(15, 14, 12, 0.18),
                       0 2px 8px -2px rgba(15, 14, 12, 0.06);

    /* Radius */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 999px;

    /* Spacing scale (8pt grid) */
    --s-1: 4px;
    --s-2: 8px;
    --s-3: 12px;
    --s-4: 16px;
    --s-5: 20px;
    --s-6: 24px;
    --s-8: 32px;
    --s-10: 40px;
    --s-12: 48px;
    --s-16: 64px;
    --s-20: 80px;
    --s-24: 96px;

    /* Type */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Container */
    --max-w: 1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }

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

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Soft warm gradient blobs anchored to body — establishes the depth that
   the glass surfaces need something to refract. */
body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}
body::before {
    top: -200px;
    right: -180px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, #F2C9B5 0%, rgba(242, 201, 181, 0) 70%);
}
body::after {
    bottom: -240px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #F5E8E2 0%, rgba(245, 232, 226, 0) 70%);
}

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--s-6);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    margin: 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); }
h3 { font-size: 1.375rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; }
p  { margin: 0; color: var(--text-secondary); }

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    margin-bottom: var(--s-5);
}

/* ---------- Glass primitive ---------- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--r-lg);
}
.glass-strong {
    background: var(--glass-bg-strong);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: 14px 22px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 0.975rem;
    letter-spacing: -0.005em;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 22px -8px rgba(200, 82, 42, 0.55);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -10px rgba(200, 82, 42, 0.6);
}
.btn-secondary {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-primary);
    border: 1px solid var(--hairline);
}
.btn-secondary:hover {
    background: #fff;
    transform: translateY(-1px);
}

/* ---------- App Store badge (placeholder) ---------- */
.appstore-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s-3);
    padding: 12px 22px 12px 18px;
    border-radius: var(--r-md);
    background: var(--text-primary);
    color: #fff;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px -10px rgba(15, 14, 12, 0.4);
}
.appstore-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px -12px rgba(15, 14, 12, 0.5);
}
.appstore-badge .apple-mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.appstore-badge .label {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}
.appstore-badge .label small {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.85;
}
.appstore-badge .label strong {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* ---------- Top nav ---------- */
.nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: calc(100% - 32px);
    max-width: var(--max-w);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 10px 18px;
    border-radius: var(--r-pill);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}
.nav-brand img {
    width: 32px;
    height: 32px;
    border-radius: 9px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--s-2);
}
.nav-link {
    padding: 8px 14px;
    border-radius: var(--r-pill);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover {
    color: var(--text-primary);
    background: rgba(15, 14, 12, 0.04);
}
.nav-cta {
    padding: 9px 18px;
    border-radius: var(--r-pill);
    background: var(--accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* ---------- Hero ---------- */
.hero {
    padding: 160px 0 var(--s-20);
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--s-12);
    align-items: center;
}
.hero-copy h1 {
    margin-bottom: var(--s-5);
}
.hero-copy h1 .accent {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, #E8784A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 1.18rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: var(--s-8);
    line-height: 1.55;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--s-4);
    margin-bottom: var(--s-6);
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    color: var(--text-faint);
    font-size: 0.9rem;
}
.hero-meta .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(200, 82, 42, 0.18);
}

/* Hero visual: phone mockup placeholder. Pure CSS so it's never empty. */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 580px;
}
.phone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    border-radius: 50px;
    background: linear-gradient(160deg, #2A2725 0%, #0F0E0C 100%);
    padding: 12px;
    box-shadow:
        0 60px 80px -30px rgba(15, 14, 12, 0.45),
        0 30px 60px -20px rgba(200, 82, 42, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 38px;
    background: var(--background);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: #0F0E0C;
    border-radius: 14px;
    z-index: 2;
}
.phone-content {
    padding: 50px 18px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.phone-content .ph-greeting {
    font-size: 13px;
    color: var(--text-faint);
    margin-top: 8px;
}
.phone-content .ph-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.phone-content .ph-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 14px;
}
.phone-content .ph-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.phone-content .ph-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}
.phone-content .ph-meta-label {
    font-size: 11px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.phone-content .ph-meta-value {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
}
.phone-content .ph-ai {
    background: linear-gradient(135deg, var(--accent-soft) 0%, #FCEFE8 100%);
    border: 1px solid rgba(200, 82, 42, 0.18);
    border-radius: 16px;
    padding: 14px;
    margin-top: auto;
}
.phone-content .ph-ai-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.phone-content .ph-ai-text {
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-primary);
}

/* Floating glass chips around the phone */
.float-chip {
    position: absolute;
    padding: 12px 16px;
    border-radius: var(--r-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--s-2);
}
.float-chip-1 { top: 12%;  left: 4%;  animation: float1 7s ease-in-out infinite; }
.float-chip-2 { top: 38%;  right: 0%; animation: float2 8s ease-in-out infinite; }
.float-chip-3 { bottom: 14%; left: 0%; animation: float3 9s ease-in-out infinite; }

.float-chip .icon {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes float3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- Section base ---------- */
.section {
    padding: var(--s-20) 0;
}
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--s-12);
}
.section-head p {
    margin-top: var(--s-4);
    font-size: 1.1rem;
}

/* ---------- Why NurturAI (3-card contrast) ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
}
.why-card {
    padding: var(--s-8);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px -20px rgba(15, 14, 12, 0.22),
                0 4px 12px -4px rgba(15, 14, 12, 0.08);
}
.why-card .pill-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: var(--s-5);
}
.why-card h3 { margin-bottom: var(--s-2); }
.why-card p { font-size: 0.98rem; }

/* ---------- Features (showcase rows) ---------- */
.features {
    display: flex;
    flex-direction: column;
    gap: var(--s-12);
}
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-12);
    align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-copy .eyebrow { margin-bottom: var(--s-3); }
.feature-copy h3 {
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--s-4);
    letter-spacing: -0.02em;
}
.feature-copy p {
    font-size: 1.05rem;
    margin-bottom: var(--s-5);
}
.feature-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}
.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: var(--s-3);
    color: var(--text-secondary);
    font-size: 0.97rem;
}
.feature-bullets .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

/* Screenshot placeholder frame (shared across feature rows).
   Sized for portrait phone screenshots at 1206 × 2622 (iPhone Pro Max).
   Capped at 320px wide so the resulting ~700px height stays balanced
   against the copy column and rows don't get visually dominated. */
.shot-frame {
    position: relative;
    border-radius: 44px;
    padding: 10px;
    max-width: 320px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.7) 0%, rgba(243, 239, 232, 0.5) 100%);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.shot-frame img,
.shot-frame .shot-placeholder {
    width: 100%;
    aspect-ratio: 1206 / 2622;
    border-radius: 36px;
    object-fit: cover;
    display: block;
}
.shot-placeholder {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(200, 82, 42, 0.04),
            rgba(200, 82, 42, 0.04) 12px,
            rgba(200, 82, 42, 0.08) 12px,
            rgba(200, 82, 42, 0.08) 24px
        ),
        var(--surface-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--s-4);
    color: var(--text-faint);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px dashed rgba(200, 82, 42, 0.35);
}

/* ---------- How it works ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
    counter-reset: step;
}
.step-card {
    padding: var(--s-8) var(--s-6) var(--s-6);
    position: relative;
}
.step-card .step-num {
    counter-increment: step;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    margin-bottom: var(--s-4);
    box-shadow: 0 6px 16px -6px rgba(200, 82, 42, 0.55);
}
.step-card .step-num::before { content: counter(step); }
.step-card h4 { margin-bottom: var(--s-2); }
.step-card p { font-size: 0.97rem; }

/* ---------- CTA strip ---------- */
.cta-strip {
    margin: var(--s-12) 0 var(--s-20);
    padding: var(--s-12) var(--s-8);
    text-align: center;
    border-radius: var(--r-xl);
    background:
        radial-gradient(circle at 20% 20%, rgba(200, 82, 42, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(245, 232, 226, 0.6) 0%, transparent 60%),
        var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.cta-strip h2 { margin-bottom: var(--s-3); }
.cta-strip p {
    font-size: 1.1rem;
    margin: 0 auto var(--s-6);
    max-width: 540px;
}

/* ---------- Footer ---------- */
.footer {
    padding: var(--s-12) 0 var(--s-8);
    border-top: 1px solid var(--hairline);
    margin-top: var(--s-12);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--s-8);
    flex-wrap: wrap;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    margin-bottom: var(--s-3);
    font-weight: 600;
    color: var(--text-primary);
}
.footer-brand img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}
.footer-tagline {
    font-size: 0.92rem;
    color: var(--text-faint);
    max-width: 320px;
}
.footer-links {
    display: flex;
    gap: var(--s-6);
    flex-wrap: wrap;
}
.footer-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.15s ease;
}
.footer-link:hover { color: var(--accent); }

.footer-bottom {
    margin-top: var(--s-8);
    padding-top: var(--s-5);
    border-top: 1px solid var(--hairline);
    font-size: 0.85rem;
    color: var(--text-faint);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-3);
}

/* ===========================================================================
   LEGAL PAGES (terms.html, privacy.html)
   =========================================================================== */

.legal-hero {
    padding: 140px 0 var(--s-10);
    text-align: center;
}
.legal-hero h1 {
    font-size: clamp(2rem, 4.4vw, 3rem);
    margin-bottom: var(--s-3);
}
.legal-hero .updated {
    font-size: 0.9rem;
    color: var(--text-faint);
    letter-spacing: 0.02em;
}

.legal-doc {
    max-width: 820px;
    margin: 0 auto var(--s-20);
    padding: var(--s-10) var(--s-8);
}
.legal-doc h2 {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    font-size: 1.4rem;
    font-weight: 600;
    margin: var(--s-10) 0 var(--s-4);
    letter-spacing: -0.015em;
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc .num-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    padding: 0 9px;
    border-radius: var(--r-pill);
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.legal-doc p {
    margin-bottom: var(--s-3);
    color: var(--text-secondary);
    font-size: 0.97rem;
    line-height: 1.65;
}
.legal-doc p strong, .legal-doc strong { color: var(--text-primary); font-weight: 600; }
.legal-doc hr {
    margin: var(--s-8) 0;
    border: 0;
    border-top: 1px solid var(--hairline);
}

.legal-doc .lead {
    padding: var(--s-4);
    border-radius: var(--r-md);
    background: var(--surface-warm);
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: var(--s-4);
}
.legal-doc .lead.critical {
    background: var(--danger-soft);
    border: 1px solid rgba(156, 42, 42, 0.35);
    color: var(--danger);
    display: flex;
    align-items: flex-start;
    gap: var(--s-3);
}
.legal-doc .lead.critical .warn-icon {
    flex-shrink: 0;
    font-size: 18px;
}

.legal-doc .privacy-link {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    padding: var(--s-4);
    margin: var(--s-4) 0;
    border-radius: var(--r-md);
    background: var(--accent-soft);
    border: 1px solid rgba(200, 82, 42, 0.25);
    color: var(--accent);
    font-weight: 600;
    transition: transform 0.15s ease;
}
.legal-doc .privacy-link:hover {
    transform: translateY(-1px);
}
.legal-doc .privacy-link .arrow { margin-left: auto; }

.contact-block {
    margin-top: var(--s-12);
    padding: var(--s-6);
    border-radius: var(--r-md);
    background: var(--surface-warm);
}
.contact-block h3 {
    margin-bottom: var(--s-3);
    font-size: 1.1rem;
    font-weight: 600;
}
.contact-block p {
    font-size: 0.95rem;
    margin-bottom: var(--s-1);
    color: var(--text-secondary);
}
.contact-block .email {
    color: var(--accent);
    font-weight: 600;
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 920px) {
    .hero { padding: 130px 0 var(--s-12); }
    .hero-grid { grid-template-columns: 1fr; gap: var(--s-10); }
    .hero-visual { min-height: 540px; }
    .why-grid { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr; gap: var(--s-6); }
    .feature-row.reverse { direction: ltr; }
    .steps-grid { grid-template-columns: 1fr; }
    .nav-link { display: none; }
    .nav-cta { padding: 8px 14px; }
    .section { padding: var(--s-12) 0; }
    .legal-doc { padding: var(--s-6) var(--s-5); }
}

@media (max-width: 520px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .appstore-badge,
    .hero-actions .btn { width: 100%; }
    .float-chip { display: none; }
    .footer-inner { flex-direction: column; gap: var(--s-5); }
    .legal-doc h2 { font-size: 1.2rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .float-chip { animation: none; }
    * { transition: none !important; }
    html { scroll-behavior: auto; }
}
