/* Homepage styles (verbatim from the pre-port index.html). Shared nav/footer rules are duplicated in site.css on purpose. */
:root {
    --sky-deep: #2f6fb5;
    --sky: #5aa6e2;
    --sky-soft: #86c4ee;
    --sky-pale: #bcdcec;
    --sky-bg: #eaf4fc;
    --navy: #00004d;
    --blush: #df8fab;
    --blush-soft: #fbeef3;
    --ink: #2b2c3d;
    --ink-soft: #6c6579;
    --ink-faint: #a49c8d;
    --gold: #a8853f;
    --bronze: #8a6d3b;
    --bg: #fbf9f4;
    --surface: #ffffff;
    --border: #eae2d3;
    --border-light: #f2ece0;
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --max-width: 1100px;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; }

/* NAV */
nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251, 249, 244, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0.85rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; gap: 0.6rem; color: var(--ink); text-decoration: none; }
.logo-mark {
    width: 30px; height: 30px; border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(47, 111, 181, 0.18);
}
.logo-text { color: #23315a; font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    color: var(--ink-soft); text-decoration: none;
    font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-toggle {
    display: none; background: none; border: 0; padding: 5px;
    cursor: pointer; color: var(--ink);
    align-items: center; justify-content: center;
}
.nav-toggle svg { width: 23px; height: 23px; display: block; }
/* Hide the LI, not just the button inside it. A display:none button still leaves
   its <li> as a live flex item, and .nav-links' 32px gap fires against it — which
   pushed the App Store badge 32px short of the right edge and made the whole nav
   (and so every page) read as shifted left. */
.nav-toggle-item { display: none; }
.nav-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(251, 249, 244, 0.97);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(90, 62, 30, 0.12);
    padding: 0.4rem 1.25rem 0.75rem;
}
.nav-menu.open { display: block; }
.nav-menu a {
    display: block; padding: 0.75rem 0.25rem;
    color: var(--ink); text-decoration: none;
    font-size: 0.95rem; font-weight: 500;
    border-bottom: 1px solid var(--border-light);
}
.nav-menu a:last-child { border-bottom: 0; }

/* HERO — full-bleed lifestyle photo, App Store screenshot style */
.hero {
    position: relative; overflow: hidden;
    background: #e9dfd2;
    border-bottom: 1px solid var(--border);
    color: #fff;
    min-height: clamp(560px, 82vh, 800px);
    display: flex;
}
.hero-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: 100% 50%;
}
.hero-scrim {
    position: absolute; inset: 0;
    background:
        radial-gradient(640px 420px at 76% 42%, rgba(255, 178, 92, 0.12), transparent 62%),
        linear-gradient(105deg, rgba(44, 27, 10, 0.66) 0%, rgba(44, 27, 10, 0.48) 34%, rgba(44, 27, 10, 0.18) 56%, rgba(44, 27, 10, 0) 72%),
        linear-gradient(180deg, rgba(44, 27, 10, 0.22) 0%, rgba(44, 27, 10, 0) 30%, rgba(44, 27, 10, 0) 72%, rgba(44, 27, 10, 0.20) 100%);
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: var(--max-width); margin: 0 auto;
    padding: 5rem 2rem 5.5rem;
    display: flex; align-items: center;
    width: 100%;
}
.hero-copy { max-width: 520px; }
.hero h1 {
    font-size: 3.5rem; line-height: 1.08;
    letter-spacing: -0.02em; margin-bottom: 1.3rem;
    font-weight: 500; color: #fff;
    text-shadow: 0 2px 10px rgba(20, 12, 6, 0.55), 0 6px 34px rgba(20, 12, 6, 0.45);
}
.hero h1 em { font-style: italic; color: #f6c2d5; }
.hero .lead {
    font-size: 1.22rem; color: rgba(255, 255, 255, 0.97);
    line-height: 1.65; max-width: 470px; margin-bottom: 2.3rem;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(20, 12, 6, 0.6), 0 4px 22px rgba(20, 12, 6, 0.45);
}
.cta-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-soon {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: #fff; color: #1f2740;
    font-weight: 600; font-size: 0.96rem;
    padding: 0.85rem 1.6rem; border-radius: 100px;
    border: 1px solid var(--border);
    cursor: default;
    box-shadow: 0 8px 26px rgba(47,111,181,0.16);
}
.btn-soon::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--blush);
}
.appstore-badge {
    display: inline-flex; align-items: center; gap: 0.7rem;
    background: #000; color: #fff;
    border-radius: 13px; padding: 0.55rem 1.3rem 0.6rem 1.1rem;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.28);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.appstore-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(16, 24, 40, 0.34);
}
a.appstore-badge.light:hover {
    box-shadow: 0 18px 46px rgba(10, 6, 2, 0.6), 0 2px 12px rgba(10, 6, 2, 0.45);
}
.appstore-badge svg { width: 26px; height: 26px; fill: #fff; flex-shrink: 0; }
/* White variant: pops over dark photography */
.appstore-badge.light {
    background: #fff; color: #10131c;
    box-shadow: 0 14px 40px rgba(10, 6, 2, 0.55), 0 2px 10px rgba(10, 6, 2, 0.4);
}
.appstore-badge.light svg { fill: #10131c; }
.asb-text { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.asb-top { font-size: 0.66rem; opacity: 0.85; }
.asb-bottom { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.01em; }
.nav-badge {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: #0b0b0f; color: #fff !important;
    border-radius: 100px; padding: 0.45rem 0.95rem;
    font-size: 0.78rem; font-weight: 600; white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease;
}
a.nav-badge:hover { background: #2b2c3d; }
.nav-badge svg { width: 13px; height: 13px; fill: #fff; }

/* Sticky mobile download bar. Hidden until the hero CTA scrolls away,
   so it never sits on top of the badge it duplicates. */
.sticky-cta {
    display: none;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -6px 24px rgba(16, 24, 40, 0.10);
    transform: translateY(110%);
    transition: transform 0.28s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.9rem; max-width: 460px; margin: 0 auto;
}
.sticky-copy {
    font-size: 0.84rem; line-height: 1.25; color: var(--ink);
    font-weight: 600;
}
.sticky-copy span { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.76rem; }
.sticky-cta .appstore-badge {
    padding: 0.4rem 0.9rem 0.45rem 0.8rem; border-radius: 11px;
    box-shadow: none; flex-shrink: 0;
}
.sticky-cta .appstore-badge svg { width: 20px; height: 20px; }
.sticky-cta .asb-top { font-size: 0.58rem; }
.sticky-cta .asb-bottom { font-size: 0.95rem; }
@media (max-width: 768px) {
    .sticky-cta { display: block; }
}
@media (prefers-reduced-motion: reduce) {
    .sticky-cta { transition: none; }
}

.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: #fff; text-decoration: none;
    font-weight: 600; font-size: 0.95rem;
    padding: 0.85rem 0.5rem;
    text-shadow: 0 1px 10px rgba(25, 16, 8, 0.55);
    transition: color 0.2s;
}
.btn-ghost:hover { color: #f6c2d5; }
.hero-note {
    margin-top: 1.4rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 8px rgba(25, 16, 8, 0.5);
}

/* Modern iPhone frame: thin bezel, Dynamic Island, status bar, home indicator */
.phone {
    width: 280px; height: 580px; border-radius: 48px;
    background: linear-gradient(160deg, #3a3d46, #1a1c24 30%, #101218 70%, #2c2f38);
    box-shadow: 0 40px 80px rgba(75, 55, 28, 0.28), inset 0 0 0 2px rgba(255,255,255,0.14);
    padding: 7px; position: relative;
}
.phone-screen {
    width: 100%; height: 100%; border-radius: 41px; overflow: hidden;
    background: linear-gradient(180deg, #3f86cc 0%, #5aa6e2 40%, #86c4ee 72%, #bcdcec 100%);
    display: flex; flex-direction: column; position: relative;
}
.phone-screen::before {
    content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    width: 94px; height: 27px; background: #05060a;
    border-radius: 20px; z-index: 4;
}
.phone-screen::after {
    content: ""; position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%);
    width: 104px; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.9); z-index: 4;
}
.app-screen-light.phone-screen::after { background: rgba(20,28,46,0.75); }
.phone-status {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 24px 0; color: #fff;
    font-size: 0.72rem; font-weight: 600; line-height: 1;
    font-variant-numeric: tabular-nums; z-index: 3;
}
.phone-status svg { width: 42px; height: 11px; display: block; }
.app-screen-light .phone-status, .phone-screen.editor-screen .phone-status { color: #1c2436; }
.phone-top {
    padding: 1.05rem 0.8rem 0.7rem; display: flex; align-items: center; justify-content: space-between;
}
.phone-hbtn {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,0.26);
    display: flex; align-items: center; justify-content: center;
}
.phone-hbtn svg { width: 12px; height: 12px; color: #fff; }
.phone-center { display: flex; align-items: center; gap: 7px; min-width: 0; }
.phone-avatar {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    object-fit: cover; object-position: center 22%; background: rgba(255,255,255,0.25);
}
.phone-name { font-size: 0.84rem; font-weight: 600; color: #fff; line-height: 1.2; white-space: nowrap; }
.phone-ai { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.6); }
.phone-chat { flex: 1; padding: 0.55rem 0.65rem 0.3rem; display: flex; flex-direction: column; gap: 0.28rem; overflow: hidden; }
.phone-input { display: flex; align-items: center; gap: 6px; padding: 6px 9px 19px; }
.phone-plus {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,0.30);
    display: flex; align-items: center; justify-content: center;
}
.phone-plus svg { width: 12px; height: 12px; color: #fff; }
.phone-input-field {
    flex: 1; height: 27px; border-radius: 14px;
    background: rgba(52, 72, 100, 0.45);
    display: flex; align-items: center; padding: 0 11px;
    color: rgba(255, 255, 255, 0.72); font-size: 0.76rem;
}
.phone-send {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
}
.phone-send svg { width: 13px; height: 13px; color: #fff; }
/* Replika-style: aggressive uniform rounding, no tail corner, no in-bubble metadata */
.bubble {
    max-width: 82%; padding: 0.62rem 0.9rem; border-radius: 21px;
    font-size: 0.8rem; line-height: 1.45;
}
.bubble.them {
    align-self: flex-start; background: rgba(255,255,255,0.94); color: #28272f;
    box-shadow: 0 1px 4px rgba(40,70,110,0.08);
}
.bubble.you {
    align-self: flex-end; background: var(--navy); color: #fff;
    box-shadow: 0 0 0 1px rgba(169,196,255,0.18);
}
.turn { margin-top: 0.5rem; }
/* AI turn carries a speaker (text-to-speech) affordance, as in the app */
.ai-row { align-self: flex-start; display: flex; align-items: flex-end; gap: 5px; max-width: 90%; }
.ai-row .bubble { max-width: 100%; }
.tts {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-bottom: 2px;
    background: rgba(255,255,255,0.92);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.tts svg { width: 13px; height: 13px; color: var(--navy); }
.chat-day {
    align-self: center; margin: 0.45rem 0 0.15rem;
    font-size: 0.58rem; font-weight: 700; letter-spacing: 0.09em;
    color: #fff;
    background: rgba(255,255,255,0.30);
    padding: 0.22rem 0.7rem; border-radius: 100px;
}

/* LOCK SCREEN (proactive check-in mock) */
/* Lock screen: cream-to-lavender, as in the App Store screenshots */
.lock-screen {
    justify-content: flex-start;
    background: linear-gradient(180deg, #faf5e9 0%, #f2ebdd 32%, #ded4ee 68%, #c9bde8 100%);
}
.lock-screen .phone-status { color: #2a2550; }
.lock-screen.phone-screen::after { background: rgba(30, 26, 62, 0.7); }
.lock-date {
    margin-top: 3.4rem; text-align: center;
    color: #2a2550; font-size: 0.9rem; font-weight: 600;
}
.lock-clock {
    text-align: center; color: #2a2550;
    font-size: 4.4rem; font-weight: 700; line-height: 1.05;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.lock-noti {
    margin: 1.5rem 10px 0;
    background: rgba(253, 252, 248, 0.92);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-radius: 20px; padding: 0.75rem 0.85rem;
    display: flex; gap: 0.65rem; align-items: center;
    box-shadow: 0 8px 24px rgba(52, 40, 90, 0.18);
}
.lock-noti img {
    width: 34px; height: 34px; border-radius: 8.5px; flex-shrink: 0;
}
.lock-noti-body { flex: 1; min-width: 0; }
.lock-noti-head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; }
.lock-noti-app { font-size: 0.78rem; font-weight: 700; color: #1c2436; }
.lock-noti-time { font-size: 0.66rem; color: #6b7488; flex-shrink: 0; }
.lock-noti-text { font-size: 0.76rem; line-height: 1.42; color: #2a3346; margin-top: 1px; }
.lock-bottom {
    margin-top: auto; padding: 0 2rem 2.2rem;
    display: flex; justify-content: space-between;
}
.lock-orb {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(42, 37, 80, 0.5);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
}
.lock-orb svg { width: 19px; height: 19px; color: #fff; }

/* PERSONA EDITOR CARD (panel-5 style) */
.persona-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin-top: 2.5rem; }
.persona-copy h3 { font-size: 1.5rem; color: #1f2740; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.persona-copy p { color: var(--ink-soft); line-height: 1.7; font-size: 1rem; }
.persona-card {
    background: linear-gradient(180deg, #fcfbf7 0%, #f8f6f1 100%);
    border: 1px solid #eee7d9;
    border-radius: 22px; padding: 1.75rem;
    box-shadow: 0 18px 44px rgba(90, 80, 50, 0.1);
}
.persona-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.3rem; }
.persona-head img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: center 22%; }
.persona-name { font-family: var(--font-display); font-size: 1.25rem; color: #241f52; font-weight: 600; }
.persona-sub { font-size: 0.8rem; color: #8a8398; }
.persona-field { margin-bottom: 1rem; }
.persona-field:last-child { margin-bottom: 0; }
.persona-label {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em;
    text-transform: uppercase; color: #a08c5a; margin-bottom: 0.3rem;
}
.persona-value {
    background: #fff; border: 1px solid #ece4d4; border-radius: 12px;
    padding: 0.7rem 0.9rem; font-size: 0.88rem; color: #33395c; line-height: 1.5;
}

/* SECTIONS */
section {
    max-width: var(--max-width); margin: 0 auto;
    padding: 5rem 2rem;
}
.section-divider { border: none; border-top: 1px solid var(--border); max-width: var(--max-width); margin: 0 auto; }
.section-label {
    font-size: 0.74rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 600; margin-bottom: 0.85rem;
}
.section-title {
    font-size: 2.3rem; margin-bottom: 1rem; letter-spacing: -0.015em;
    line-height: 1.12; color: #1f2740;
}
.section-body {
    font-size: 1.08rem; color: var(--ink-soft);
    line-height: 1.7; max-width: 620px;
}

/* FEATURE CARDS */
.cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem; margin-top: 2.75rem;
}
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px; padding: 2rem 1.85rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover {
    border-color: #d9c9a5;
    box-shadow: 0 14px 40px rgba(140, 110, 60, 0.12);
    transform: translateY(-3px);
}
.card-icon {
    width: 48px; height: 48px;
    background: linear-gradient(140deg, #f6eee0, #faf4e9); border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.35rem;
}
.card-icon svg { width: 24px; height: 24px; color: var(--bronze); }
.card h3 { font-size: 1.22rem; margin-bottom: 0.55rem; letter-spacing: -0.01em; color: #283046; }
.card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.75rem; }
.step-num {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(140deg, #cbaa6a, var(--bronze)); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    margin-bottom: 1.1rem; box-shadow: 0 6px 16px rgba(140, 110, 60, 0.3);
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: #283046; }
.step p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }

/* MANIFESTO (why we're different) */
.manifesto {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem; align-items: center;
}
.manifesto-photo {
    width: 100%; max-width: 400px; aspect-ratio: 4 / 5;
    border-radius: 26px; overflow: hidden; justify-self: center;
    box-shadow: 0 20px 50px rgba(90, 62, 30, 0.22);
}
.manifesto-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* COMPANIONS SHOWCASE */
.companions {
    background:
        radial-gradient(600px 300px at 90% 0%, rgba(223,143,171,0.14), transparent 65%),
        linear-gradient(165deg, #f4ead8 0%, #f8f2e6 55%, #fbf8f0 100%);
    border: 1px solid var(--border);
    border-radius: 26px; padding: 3.25rem; color: var(--ink);
    margin-top: 0;
}
.companions h2 { font-size: 2.1rem; margin-bottom: 0.9rem; letter-spacing: -0.015em; color: #1f2740; }
.companions > p { color: var(--ink-soft); max-width: 600px; line-height: 1.7; }
.companion-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem; margin-top: 2.5rem;
}
/* Companion tiles mirror the app's "My Softlies" screen: tall rounded
   portrait cards with a full-bleed photo, a soft gradient, and the name
   overlaid at the bottom — so the whole face (forehead included) shows. */
.companion {
    position: relative; overflow: hidden;
    aspect-ratio: 3 / 4.2; border-radius: 24px;
    box-shadow: 0 10px 26px rgba(40,70,110,0.20);
    background: #e4f1fb;
}
.companion-av {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top; display: block;
}
.companion::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, transparent 56%, rgba(16,28,48,0.32) 74%, rgba(16,28,48,0.82) 100%);
}
.companion-info {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 1rem 0.9rem 1.15rem; text-align: center;
}
.companion h4 {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 500;
    margin-bottom: 0.15rem; color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.companion p {
    font-size: 0.8rem; line-height: 1.4; color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* APP PREVIEW — recreates the in-app "My Softlies" grid screen */
.app-preview {
    display: grid; grid-template-columns: 0.85fr 1fr; gap: 3rem; align-items: center;
}
.app-preview.flip { grid-template-columns: 1fr 0.85fr; }
.app-preview-copy .section-label { margin-bottom: 1rem; }
.app-preview-copy h2 { font-size: 2rem; letter-spacing: -0.01em; margin-bottom: 0.9rem; color: #1f2740; }
.app-preview-copy > p { color: var(--ink-soft); line-height: 1.7; font-size: 1.02rem; margin-bottom: 1.4rem; }
.app-points { list-style: none; display: grid; gap: 0.7rem; }
.app-points li {
    display: flex; gap: 0.65rem; align-items: flex-start;
    font-size: 0.95rem; color: var(--ink); line-height: 1.5;
}
.app-points li svg { width: 19px; height: 19px; color: var(--navy); flex-shrink: 0; margin-top: 1px; }
.app-phone-wrap { display: flex; justify-content: center; }
.app-screen-light {
    background: linear-gradient(180deg, #faf8f2 0%, #f8f6f1 100%);
    padding: 0 10px 12px;
}
.app-screen-light .phone-status { margin: 0 -10px; }
.app-screen-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem 0.1rem 0.85rem; color: #2a3346;
}
.app-hbtn {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    background: #fff; box-shadow: 0 1px 5px rgba(80,70,50,0.12);
    display: flex; align-items: center; justify-content: center;
}
.app-hbtn svg { width: 12px; height: 12px; color: #241f52; }
.app-screen-title { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: #241f52; letter-spacing: -0.01em; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.app-card {
    position: relative; aspect-ratio: 2 / 3.06; border-radius: 13px; overflow: hidden;
    box-shadow: 0 4px 12px rgba(80,60,40,0.16);
}
.app-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.app-card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 58%, rgba(30,22,14,0.35) 80%, rgba(30,22,14,0.62) 100%);
}
.app-card-body {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 0 0.45rem 0.5rem;
}
.app-card-name {
    font-family: var(--font-display); color: #fff;
    font-size: 0.74rem; font-weight: 600; text-align: center;
    margin: 0 0 4px; text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}
.app-chips { display: flex; gap: 3px; justify-content: center; }
.chip {
    flex: 1; min-width: 0; max-width: 34%;
    background: rgba(28,22,14,0.55); border: 0.5px solid rgba(255,255,255,0.16);
    border-radius: 7px; padding: 3.5px 1px 3px; text-align: center;
    backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.chip-num { font-family: var(--font-display); color: #fff; font-size: 0.68rem; font-weight: 600; line-height: 1.05; font-variant-numeric: tabular-nums; }
.chip-lbl { color: rgba(255,255,255,0.8); font-size: 0.36rem; letter-spacing: 0.07em; text-transform: uppercase; margin-top: 1px; }
.live-dot {
    display: inline-block; width: 5px; height: 5px; border-radius: 50%;
    background: #34d27b; margin-right: 4px; vertical-align: middle; position: relative; top: -0.5px;
    box-shadow: 0 0 5px 1px rgba(52, 210, 123, 0.9);
}

/* PRIVACY */
.privacy {
    background: linear-gradient(135deg, #f6efe0 0%, #faf6ec 100%);
    border: 1px solid var(--border);
    border-radius: 22px; padding: 3rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.privacy h2 { font-size: 1.9rem; margin-bottom: 0.85rem; letter-spacing: -0.01em; color: #1f2740; }
.privacy p { color: var(--ink-soft); line-height: 1.7; font-size: 1rem; }
.privacy-list { list-style: none; display: grid; gap: 0.8rem; }
.privacy-list li {
    display: flex; gap: 0.7rem; align-items: flex-start;
    font-size: 0.95rem; color: var(--ink);
    background: rgba(255,255,255,0.8); border: 1px solid var(--border);
    padding: 0.85rem 1rem; border-radius: 12px;
}
.privacy-list svg { width: 20px; height: 20px; color: var(--bronze); flex-shrink: 0; margin-top: 1px; }

/* SAFETY NOTE */
.safety-note {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blush);
    border-radius: 14px; padding: 1.6rem 1.85rem;
    margin-top: 1.75rem;
    display: flex; gap: 1.15rem; align-items: flex-start;
}
.safety-note svg { width: 26px; height: 26px; color: var(--bronze); flex-shrink: 0; margin-top: 2px; }
.safety-note h3 { font-size: 1.18rem; margin-bottom: 0.4rem; color: #283046; }
.safety-note p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.65; }
.safety-note a { color: var(--sky-deep); text-decoration: none; font-weight: 600; }
.safety-note a:hover { text-decoration: underline; }

/* FAQ */
.faq-list { display: grid; gap: 0.85rem; margin-top: 2.25rem; max-width: 760px; }
.faq-item {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: #d9c9a5; box-shadow: 0 10px 30px rgba(140, 110, 60, 0.08); }
.faq-item summary {
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: 1.1rem 1.35rem;
    font-weight: 600; font-size: 1rem; color: #283046;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; font-family: var(--font-display);
    font-size: 1.35rem; line-height: 1; color: var(--bronze);
    transition: transform 0.2s; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.35rem 1.2rem; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; }
.faq-item a { color: var(--sky-deep); text-decoration: none; font-weight: 600; }
.faq-item a:hover { text-decoration: underline; }

/* CTA BAND */
.cta-band {
    text-align: center;
    background:
        linear-gradient(180deg, rgba(30, 20, 10, 0.38) 0%, rgba(30, 20, 10, 0.58) 100%),
        url('/photos/cta-room.webp') center 55% / cover no-repeat;
    color: #fff; border-radius: 26px;
    padding: 4.5rem 2rem;
    box-shadow: 0 20px 50px rgba(75, 52, 24, 0.3);
}
.cta-band h2 { font-size: 2.4rem; margin-bottom: 1rem; letter-spacing: -0.015em; text-shadow: 0 2px 18px rgba(20, 12, 4, 0.45); }
.cta-band p { color: rgba(255,255,255,0.94); max-width: 520px; margin: 0 auto 2rem; font-size: 1.08rem; text-shadow: 0 1px 12px rgba(20, 12, 4, 0.5); }
.cta-band .btn-soon { background: #fff; color: #1f2740; }

/* FOOTER */
footer { border-top: 1px solid var(--border); margin-top: 1rem; background: var(--surface); }
.footer-inner {
    max-width: var(--max-width); margin: 0 auto;
    padding: 3.25rem 2rem;
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 2rem; flex-wrap: wrap;
}
.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 0.85rem; }
.footer-brand p { font-size: 0.86rem; color: var(--ink-faint); line-height: 1.65; }
.footer-links { display: flex; gap: 3rem; }
.footer-col h4 {
    font-size: 0.78rem; letter-spacing: 0.07em;
    text-transform: uppercase; color: var(--ink-faint);
    font-weight: 600; margin-bottom: 0.8rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--ink-soft); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
    max-width: var(--max-width); margin: 0 auto;
    padding: 1.5rem 2rem; border-top: 1px solid var(--border-light);
    display: flex; justify-content: space-between;
    font-size: 0.8rem; color: var(--ink-faint); flex-wrap: wrap; gap: 1rem;
}

/* MOTION (respects prefers-reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
    .will-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .will-reveal.in { opacity: 1; transform: none; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .privacy { grid-template-columns: 1fr; }
    .persona-wrap { grid-template-columns: 1fr; gap: 1.75rem; }
    .app-preview, .app-preview.flip { grid-template-columns: 1fr; gap: 2.5rem; }
    .app-preview .app-phone-wrap { order: -1; }
    .companion-row { grid-template-columns: repeat(2, 1fr); }
    .manifesto { grid-template-columns: 1fr; gap: 2.25rem; }
}
@media (max-width: 1180px) {
    .hero-bg { object-position: 70% 50%; }
}
@media (max-width: 900px) {
    .hero-copy { max-width: 460px; }
    .hero-bg { object-position: 60% 50%; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .cards { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    section { padding: 3.5rem 1.5rem; }
    .nav-inner { padding: 0.85rem 1.5rem; }
    .nav-links { gap: 1.25rem; }
    .footer-inner { flex-direction: column; }
    .footer-links { gap: 1.5rem 2rem; flex-wrap: wrap; }
    .privacy, .companions, .cta-band { padding: 2.25rem; }
    .section-title { font-size: 1.9rem; }
}
@media (max-width: 620px) {
    .hero { min-height: min(96vh, 720px); }
    .hero .lead { display: none; }
    .hero-inner { align-items: flex-end; padding-bottom: 2.2rem; }
    .hero h1 { font-size: 2.25rem; }
    .hero-bg { object-position: 70% 20%; }
    .hero-scrim {
        background:
            linear-gradient(180deg, rgba(44, 27, 10, 0.18) 0%, rgba(44, 27, 10, 0) 30%, rgba(44, 27, 10, 0) 52%, rgba(40, 25, 10, 0.56) 80%, rgba(40, 25, 10, 0.70) 100%);
    }
}
@media (max-width: 620px) {
    .nav-links li.nav-textlink { display: none; }
    .nav-toggle-item { display: flex; align-items: center; }
    .nav-toggle { display: inline-flex; }
    .nav-links { gap: 0.9rem; }
}
@media (max-width: 480px) {
    .nav-inner { padding: 0.85rem 1rem; }
    .logo { gap: 0.45rem; }
    .logo-text { font-size: 1.02rem; }
    .logo-mark { width: 26px; height: 26px; }
    .nav-links { gap: 0.6rem; }
    .nav-links a { font-size: 0.78rem; }
    .hero-inner { padding: 3.5rem 1.5rem 4rem; }
    .companion-row { grid-template-columns: 1fr 1fr; }
}

/* WATCH — founder essay */
.watch-band { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: center; }
.watch-copy .section-label { margin-bottom: 1rem; }
.watch-copy h2 { font-size: 2rem; letter-spacing: -0.01em; margin-bottom: 0.9rem; color: #1f2740; }
.watch-copy p { color: var(--ink-soft); line-height: 1.7; font-size: 1.02rem; margin-bottom: 1.3rem; }
.watch-link { color: #245a96; font-weight: 600; text-decoration: none; }
.watch-link:hover { text-decoration: underline; }
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; background: #0b1220; box-shadow: 0 18px 44px rgba(40, 48, 70, 0.16); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 860px) { .watch-band { grid-template-columns: 1fr; gap: 1.75rem; } }
