:root {
    color-scheme: light;
    --bg: #fff7ec;
    --surface: #fffdf7;
    --surface-soft: #f8eadb;
    --surface-strong: #151211;
    --text: #171313;
    --muted: #6f665e;
    --soft: #a69c92;
    --line: rgba(61, 46, 39, .11);
    --line-strong: rgba(61, 46, 39, .18);
    --coral: #ff3f65;
    --coral-strong: #df334b;
    --teal: #43a77c;
    --blue: #6678d8;
    --gold: #c69a48;
    --ink: #171313;
    --cream: #fff2df;
    --blush: #ffe2e7;
    --sage-soft: #e4f3e9;
    --gold-soft: #f4dfb2;
    --hero-overlay-strong: rgba(255, 247, 236, .99);
    --hero-overlay-mid: rgba(255, 247, 236, .9);
    --hero-overlay-soft: rgba(255, 247, 236, .58);
    --hero-overlay-clear: rgba(255, 247, 236, .1);
    --radius: 8px;
    --shadow-sm: 0 12px 34px rgba(86, 58, 34, .08);
    --shadow-md: 0 24px 80px rgba(86, 58, 34, .16);
    --font-sans: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: var(--font-sans);
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0d1117;
    --surface: #141a23;
    --surface-soft: #192232;
    --surface-strong: #05070b;
    --text: #f7f3ee;
    --muted: #c5bcc7;
    --soft: #928b98;
    --line: rgba(255, 255, 255, .12);
    --line-strong: rgba(255, 255, 255, .18);
    --coral: #ff7a5f;
    --coral-strong: #ff987f;
    --teal: #48c7c1;
    --blue: #8fb4ff;
    --gold: #e3bd71;
    --cream: #18130f;
    --blush: #30202a;
    --sage-soft: #14251f;
    --gold-soft: #3b2f1d;
    --hero-overlay-strong: rgba(13, 17, 23, .98);
    --hero-overlay-mid: rgba(13, 17, 23, .88);
    --hero-overlay-soft: rgba(13, 17, 23, .58);
    --hero-overlay-clear: rgba(13, 17, 23, .16);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, .28);
    --shadow-md: 0 22px 70px rgba(0, 0, 0, .42);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--surface) 82%, var(--bg)) 42%, var(--bg) 100%),
        var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

main {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.sr-only,
.icon-sprite {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wrap {
    width: calc(100% - 40px);
    max-width: 1160px;
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 90%, transparent);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
}

.brand img {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    object-fit: cover;
    box-shadow: 0 10px 28px rgba(240, 100, 73, .24);
}

.brand span {
    font-size: 1.12rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a:not(.btn) {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 10px;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}

.nav-links a:not(.btn):hover,
.nav-links a[aria-current="page"] {
    color: var(--text);
}

.theme-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    color: var(--text);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--coral) 44%, var(--line));
    box-shadow: var(--shadow-sm);
}

.theme-toggle:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--coral) 48%, transparent);
    outline-offset: 4px;
}

.theme-icon-moon {
    display: none;
}

:root[data-theme="dark"] .theme-icon-sun {
    display: none;
}

:root[data-theme="dark"] .theme-icon-moon {
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.footer-links a:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--coral) 48%, transparent);
    outline-offset: 4px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--coral), #ff5b77);
    box-shadow: 0 18px 40px rgba(255, 69, 104, .24);
}

.btn-secondary {
    color: var(--text);
    border-color: var(--line-strong);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.btn-secondary:hover {
    border-color: color-mix(in srgb, var(--coral) 44%, var(--line));
    box-shadow: var(--shadow-sm);
}

.btn-sm {
    min-height: 40px;
    padding-inline: 15px;
    font-size: .82rem;
}

.icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.icon-lg {
    width: 22px;
    height: 22px;
}

.hero {
    position: relative;
    min-height: min(720px, calc(100svh - 84px));
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, var(--hero-overlay-strong) 0%, var(--hero-overlay-mid) 34%, var(--hero-overlay-soft) 51%, var(--hero-overlay-clear) 72%),
        url("/images/landing-hero.png");
    background-size: cover;
    background-position: center right;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg) 92%, transparent));
    pointer-events: none;
}

.hero .wrap {
    position: relative;
    z-index: 1;
    padding-block: clamp(72px, 10vw, 104px);
}

.hero-copy {
    width: min(560px, 100%);
    color: var(--text);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid color-mix(in srgb, var(--coral) 24%, var(--line));
    border-radius: 999px;
    color: var(--coral-strong);
    background: color-mix(in srgb, var(--surface) 76%, transparent);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.eyebrow svg {
    color: var(--coral);
}

.hero h1,
.section-title,
.legal-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 660px;
    margin-top: 24px;
    font-size: 5.25rem;
}

.hero-lede {
    max-width: 590px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.18rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.store-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 650;
}

.store-note::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--line-strong);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(610px, 100%);
    margin-top: 46px;
}

.metric {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 82%, transparent);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
}

.metric strong {
    display: block;
    font-size: 1.28rem;
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 700;
}

.section {
    padding-block: clamp(72px, 10vw, 120px);
}

.section-tight {
    padding-block: clamp(48px, 7vw, 76px);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--coral-strong);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-title {
    max-width: 690px;
    font-size: 3.8rem;
}

.section-sub {
    max-width: 560px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.proof-strip {
    position: relative;
    z-index: 2;
    margin-top: -34px;
}

.proof-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    padding: 18px;
    border-right: 1px solid var(--line);
}

.proof-item:last-child {
    border-right: 0;
}

.proof-item svg {
    color: var(--coral);
}

.proof-item strong {
    display: block;
    color: var(--text);
    font-size: .95rem;
}

.proof-item span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: .82rem;
}

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

.feature-card,
.step-card,
.safety-card,
.faq-card,
.legal-card,
.legal-toc,
.app-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    box-shadow: var(--shadow-sm);
}

.feature-card {
    position: relative;
    min-height: 255px;
    padding: 26px;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 132px;
    height: 132px;
    border: 1px solid var(--line);
    border-radius: 50%;
    opacity: .45;
}

.feature-icon,
.step-icon,
.legal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--ink);
}

.feature-card:nth-child(3n + 1) .feature-icon {
    background: var(--coral);
}

.feature-card:nth-child(3n + 2) .feature-icon {
    background: var(--gold);
}

.feature-card:nth-child(3n + 3) .feature-icon {
    background: var(--teal);
}

.feature-card h3,
.step-card h3,
.safety-card h3,
.faq-card h3,
.legal-card h2 {
    margin: 22px 0 9px;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.feature-card p,
.step-card p,
.safety-card p,
.faq-card p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.steps {
    display: grid;
    gap: 14px;
}

.step-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 20px;
}

.step-icon {
    color: var(--text);
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.app-panel {
    position: relative;
    min-height: 520px;
    padding: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 14%, rgba(255, 69, 104, .18), transparent 16rem),
        radial-gradient(circle at 12% 86%, rgba(198, 154, 72, .16), transparent 18rem),
        linear-gradient(145deg, color-mix(in srgb, var(--surface) 88%, transparent), color-mix(in srgb, var(--surface-soft) 92%, transparent));
}

.phone-frame {
    position: absolute;
    right: clamp(20px, 7vw, 76px);
    top: 36px;
    width: min(290px, 58%);
    aspect-ratio: 9 / 18.5;
    border: 10px solid #171313;
    border-radius: 34px;
    background: #171313;
    box-shadow: 0 30px 90px rgba(86, 58, 34, .22);
    overflow: hidden;
}

.phone-screen {
    height: 100%;
    padding: 18px;
    color: #171313;
    background:
        radial-gradient(circle at 88% 8%, rgba(255, 69, 104, .16), transparent 8rem),
        linear-gradient(180deg, #fffdf8, #fff7ea);
}

.phone-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.phone-pill {
    width: 72px;
    height: 8px;
    border-radius: 999px;
    background: #eadfd2;
}

.phone-top svg {
    color: var(--teal);
}

.match-card {
    min-height: 238px;
    padding: 16px;
    border: 1px solid rgba(61, 46, 39, .1);
    border-radius: 22px;
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 69, 104, .18), transparent 9rem),
        linear-gradient(180deg, #fffaf3, #f7efe4);
    box-shadow: 0 18px 42px rgba(86, 58, 34, .1);
}

.avatar-shape {
    height: 130px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 48% 24%, rgba(255, 255, 255, .8) 0 18%, transparent 19%),
        linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .18)),
        linear-gradient(135deg, #ff4568, #c69a48 58%, #43a77c);
}

.compat-row,
.mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.compat-row {
    margin-top: 14px;
}

.compat-score {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--coral-strong);
    background: #fffdf8;
    border: 1px solid rgba(255, 69, 104, .18);
    font-size: .78rem;
    font-weight: 850;
}

.mini-line {
    height: 8px;
    border-radius: 999px;
    background: #e7d8c8;
}

.mini-line:nth-child(1) {
    width: 92px;
}

.mini-line:nth-child(2) {
    width: 58px;
}

.phone-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.phone-action {
    position: relative;
    height: 42px;
    border-radius: 15px;
    border: 1px solid rgba(61, 46, 39, .09);
    background: #fffdf8;
}

.phone-action::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--coral) 18%, #fff);
}

.phone-action:nth-child(2)::before {
    background: color-mix(in srgb, var(--gold) 24%, #fff);
}

.phone-action:nth-child(3)::before {
    background: color-mix(in srgb, var(--teal) 24%, #fff);
}

.floating-note {
    position: absolute;
    left: 28px;
    bottom: 30px;
    width: min(260px, 42%);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: var(--shadow-md);
}

.floating-note strong {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .9rem;
}

.floating-note strong svg {
    color: var(--teal);
}

.floating-note p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: .83rem;
}

.safety-section {
    color: var(--text);
    background:
        radial-gradient(circle at 15% 12%, rgba(67, 167, 124, .18), transparent 24rem),
        radial-gradient(circle at 88% 28%, rgba(255, 69, 104, .14), transparent 22rem),
        linear-gradient(135deg, color-mix(in srgb, var(--cream) 74%, var(--surface)), color-mix(in srgb, var(--surface-soft) 88%, transparent));
}

.safety-section .section-kicker {
    color: var(--teal);
}

.safety-section .section-sub {
    color: var(--muted);
}

.safety-section .section-title {
    color: var(--text);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.safety-card {
    padding: 24px;
    color: var(--text);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.safety-card h3 {
    color: var(--text);
}

.safety-card p {
    color: var(--muted);
}

.safety-card svg {
    color: var(--teal);
}

.safety-card:nth-child(2) svg {
    color: var(--coral);
}

.safety-card:nth-child(3) svg {
    color: var(--gold);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.faq-card {
    padding: 24px;
}

.cta-band {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 82% 20%, rgba(255, 69, 104, .14), transparent 22rem),
        color-mix(in srgb, var(--surface-soft) 72%, transparent);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.cta-inner h2 {
    margin: 0;
    max-width: 720px;
    font-family: var(--font-display);
    font-size: 3.8rem;
    line-height: 1;
    letter-spacing: 0;
}

.cta-inner p {
    margin: 16px 0 0;
    max-width: 620px;
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 38px 0;
    background: color-mix(in srgb, var(--surface) 70%, transparent);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: .86rem;
}

.footer-brand img {
    width: 32px;
    height: 32px;
    border-radius: 9px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-links a {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 750;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: var(--coral-strong);
}

.legal-hero {
    padding: clamp(62px, 8vw, 100px) 0 46px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 69, 104, .14), transparent 24rem),
        radial-gradient(circle at 12% 4%, rgba(198, 154, 72, .14), transparent 22rem),
        linear-gradient(135deg, color-mix(in srgb, var(--surface-soft) 82%, transparent), transparent);
}

.legal-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 36px;
    align-items: end;
}

.legal-title {
    max-width: 820px;
    margin-top: 18px;
    font-size: 4.4rem;
}

.legal-lede {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.legal-meta {
    display: grid;
    gap: 12px;
}

.legal-meta-item {
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.legal-meta-item span {
    display: block;
    color: var(--soft);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.legal-meta-item strong {
    display: block;
    margin-top: 4px;
    font-size: .9rem;
}

.legal-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    padding-block: clamp(44px, 7vw, 78px);
}

.legal-toc {
    position: sticky;
    top: 94px;
    padding: 18px;
}

.legal-toc strong {
    display: block;
    margin-bottom: 10px;
    font-size: .78rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.legal-toc a {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 720;
    text-decoration: none;
}

.legal-toc a:hover {
    color: var(--text);
}

.legal-content {
    display: grid;
    gap: 16px;
}

.legal-card {
    padding: clamp(22px, 4vw, 34px);
}

.legal-card h2 {
    margin-top: 0;
    font-size: 1.6rem;
}

.legal-card h3 {
    margin: 24px 0 8px;
    font-size: 1rem;
}

.legal-card p,
.legal-card li,
.legal-card td {
    color: var(--muted);
    font-size: .96rem;
}

.legal-card p {
    margin: 0 0 13px;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card ul,
.legal-card ol {
    margin: 0 0 14px;
    padding-left: 20px;
}

.legal-card li {
    margin-bottom: 8px;
}

.legal-card strong {
    color: var(--text);
}

.legal-card a {
    color: var(--coral-strong);
    font-weight: 800;
}

.legal-callout {
    margin: 18px 0;
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--coral) 28%, var(--line));
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--coral) 7%, var(--surface));
}

.legal-table {
    width: 100%;
    margin: 16px 0 6px;
    border-collapse: collapse;
    table-layout: auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.legal-table th,
.legal-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.legal-table th {
    color: var(--text);
    background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.legal-table tr:last-child td {
    border-bottom: 0;
}

.step-list {
    counter-reset: legal-step;
    list-style: none;
    padding-left: 0 !important;
}

.step-list li {
    counter-increment: legal-step;
    position: relative;
    min-height: 54px;
    padding: 14px 16px 14px 58px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface-soft) 55%, transparent);
}

.step-list li::before {
    content: counter(legal-step);
    position: absolute;
    left: 16px;
    top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    font-size: .8rem;
    font-weight: 900;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 920px) {
    .nav-links a:not(.btn):not(.priority-link) {
        display: none;
    }

    .hero {
        min-height: auto;
        background:
            linear-gradient(180deg, var(--hero-overlay-strong) 0%, var(--hero-overlay-mid) 42%, var(--hero-overlay-soft) 100%),
            url("/images/landing-hero.png");
        background-size: cover;
        background-position: 58% center;
    }

    .hero .wrap {
        padding-block: 78px 96px;
    }

    .hero h1 {
        font-size: 4.8rem;
    }

    .hero-lede {
        font-size: 1.06rem;
    }

    .section-title,
    .cta-inner h2 {
        font-size: 2.85rem;
    }

    .legal-title {
        font-size: 3.7rem;
    }

    .legal-lede {
        font-size: 1.04rem;
    }

    .hero-metrics,
    .proof-panel,
    .feature-grid,
    .safety-grid,
    .faq-grid,
    .cta-inner,
    .legal-hero-grid,
    .legal-shell {
        grid-template-columns: 1fr;
    }

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

    .proof-item:last-child {
        border-bottom: 0;
    }

    .section-head,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .legal-toc {
        position: static;
    }
}

@media (max-width: 640px) {
    .wrap {
        width: calc(100% - 36px);
        max-width: 1160px;
    }

    .nav {
        min-height: 66px;
    }

    .site-header .wrap {
        width: 100%;
        max-width: none;
        padding-inline: 14px;
    }

    .brand span {
        font-size: 1rem;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a:not(.btn) {
        display: none;
    }

    .nav-links .btn {
        width: 42px;
        min-width: 42px;
        padding: 0;
        gap: 0;
        font-size: 0;
    }

    .theme-toggle {
        width: 42px;
        height: 42px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.04;
    }

    .hero-copy,
    .hero-lede,
    .hero-actions {
        max-width: 100%;
    }

    .hero-lede {
        font-size: .98rem;
    }

    .section-title,
    .cta-inner h2 {
        font-size: 2.25rem;
    }

    .legal-title {
        font-size: 2.4rem;
    }

    .btn {
        min-height: 42px;
        padding-inline: 14px;
    }

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

    .hero-metrics {
        gap: 8px;
    }

    .metric {
        padding: 13px;
    }

    .phone-frame {
        position: relative;
        right: auto;
        top: auto;
        width: min(270px, 86%);
        margin: 0 auto;
    }

    .app-panel {
        min-height: auto;
        padding: 22px;
    }

    .floating-note {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 18px;
    }

    .legal-table {
        display: block;
        table-layout: auto;
        white-space: normal;
    }

    .legal-table tbody {
        display: grid;
        gap: 10px;
    }

    .legal-table tr {
        display: block;
        padding: 12px;
        border-bottom: 1px solid var(--line);
        background: color-mix(in srgb, var(--surface) 86%, transparent);
    }

    .legal-table tr:first-child {
        display: none;
    }

    .legal-table tr:last-child {
        border-bottom: 0;
    }

    .legal-table th,
    .legal-table td {
        display: block;
        width: 100%;
        padding: 4px 0;
        border-bottom: 0;
    }

    .legal-table td:first-child {
        color: var(--text);
        font-size: .76rem;
        font-weight: 900;
        text-transform: uppercase;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

.home-hero {
    position: relative;
    padding: 58px 0 34px;
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--bg) 0%, var(--surface) 48%, color-mix(in srgb, var(--blush) 34%, var(--surface)) 100%);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface-soft) 62%, transparent));
    pointer-events: none;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .76fr) minmax(540px, 1.24fr);
    gap: 38px;
    align-items: center;
}

.home-hero-copy {
    padding-top: 16px;
}

.home-hero h1 {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--text);
    font-size: 4.35rem;
    font-weight: 900;
    line-height: .98;
    letter-spacing: 0;
}

.home-hero .hero-lede {
    max-width: 540px;
}

.launch-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 750;
}

.launch-note span {
    width: 42px;
    height: 1px;
    background: var(--line-strong);
}

.hero-product {
    position: relative;
    min-height: 500px;
    isolation: isolate;
}

.hero-product::before {
    content: "";
    position: absolute;
    inset: 34px 0 30px 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 64%, transparent);
    box-shadow: var(--shadow-md);
    z-index: -1;
}

.hero-product img {
    width: 100%;
    min-height: 490px;
    max-height: 560px;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center right;
    box-shadow: 0 30px 88px rgba(86, 58, 34, .18);
}

.hero-product-card {
    position: absolute;
    display: grid;
    gap: 4px;
    width: 218px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
}

.hero-product-card svg {
    margin-bottom: 4px;
    color: var(--coral);
}

.hero-product-card strong {
    font-size: .92rem;
}

.hero-product-card span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
}

.hero-product-card-top {
    left: -18px;
    top: 72px;
}

.hero-product-card-bottom {
    right: 22px;
    bottom: 32px;
}

.hero-product-card-bottom svg {
    color: var(--gold);
}

.product-proof {
    position: relative;
    z-index: 2;
    padding: 0 0 34px;
    background: color-mix(in srgb, var(--surface-soft) 56%, transparent);
}

.proof-matrix {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid color-mix(in srgb, #fff 14%, var(--surface-strong));
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, #171313, #2f2020);
    box-shadow: var(--shadow-md);
}

.proof-stat {
    min-height: 144px;
    padding: 22px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.proof-stat:last-child {
    border-right: 0;
}

.proof-stat span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 26px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: #171313;
    background: var(--gold-soft);
    font-size: .7rem;
    font-weight: 900;
}

.proof-stat strong {
    display: block;
    font-size: 1.02rem;
}

.proof-stat p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: .86rem;
}

.feature-showcase {
    background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 70%, transparent), var(--bg));
}

.section-head-centered {
    display: grid;
    justify-items: center;
    max-width: 840px;
    margin-inline: auto;
    text-align: center;
}

.section-head-centered .section-title,
.section-head-centered .section-sub {
    max-width: 820px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.bento-card {
    position: relative;
    min-height: 250px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: var(--shadow-sm);
}

.bento-card::after {
    content: "";
    position: absolute;
    inset: auto -1px -1px auto;
    width: 118px;
    height: 118px;
    border: 1px solid var(--line);
    border-radius: 999px 0 0 0;
    opacity: .42;
}

.bento-card-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 516px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--blush) 46%, var(--surface)), var(--surface)),
        var(--surface);
}

.bento-card-date {
    grid-column: span 2;
    background: linear-gradient(135deg, color-mix(in srgb, var(--gold-soft) 42%, var(--surface)), var(--surface));
}

.bento-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--coral);
}

.bento-icon.is-gold {
    background: var(--gold);
}

.bento-icon.is-green {
    background: var(--teal);
}

.bento-card h3 {
    margin: 24px 0 10px;
    color: var(--text);
    font-size: 1.22rem;
    line-height: 1.2;
}

.bento-card p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
}

.mini-ui-stack {
    display: grid;
    gap: 12px;
    margin-top: 42px;
}

.mini-ui-stack span {
    display: block;
    height: 56px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.mini-ui-stack span:nth-child(1) {
    width: 88%;
}

.mini-ui-stack span:nth-child(2) {
    width: 72%;
}

.mini-ui-stack span:nth-child(3) {
    width: 94%;
}

.app-flow-section {
    color: #fff;
    background:
        linear-gradient(135deg, #171313, #302221 64%, #40252a);
}

.app-flow-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 56px;
    align-items: start;
}

.app-flow-section .section-kicker,
.app-flow-section .section-title {
    color: #fff;
}

.app-flow-section .section-sub {
    color: rgba(255, 255, 255, .72);
}

.flow-steps {
    display: grid;
    gap: 14px;
}

.flow-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .07);
}

.flow-step > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    color: #171313;
    background: var(--blush);
    font-weight: 900;
}

.flow-step h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1.1rem;
}

.flow-step p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.trust-section {
    background: linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--sage-soft) 56%, var(--surface)));
}

.trust-grid {
    display: grid;
    grid-template-columns: minmax(420px, 1.08fr) minmax(0, .92fr);
    gap: 52px;
    align-items: center;
}

.trust-visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.trust-copy {
    max-width: 560px;
}

.trust-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.trust-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    box-shadow: var(--shadow-sm);
    font-weight: 850;
}

.trust-list svg {
    color: var(--teal);
}

.trust-list div:nth-child(2) svg {
    color: var(--coral);
}

.trust-list div:nth-child(3) svg {
    color: var(--gold);
}

.final-cta {
    padding-block: 62px;
}

.final-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 42px;
    border: 1px solid color-mix(in srgb, var(--coral) 26%, var(--line));
    border-radius: var(--radius);
    color: #fff;
    background:
        linear-gradient(135deg, #ff3f65, #df334b 62%, #9f3340);
    box-shadow: 0 26px 80px rgba(255, 63, 101, .2);
}

.final-cta .section-kicker,
.final-cta h2,
.final-cta p {
    color: #fff;
}

.final-cta h2 {
    max-width: 720px;
    margin: 10px 0 0;
    font-size: 3.35rem;
    line-height: 1;
    letter-spacing: 0;
}

.final-cta p {
    max-width: 620px;
    margin: 16px 0 0;
    opacity: .84;
}

.final-cta .btn-primary {
    color: var(--coral-strong);
    background: #fff;
    box-shadow: none;
}

:root[data-theme="dark"] .home-hero {
    background:
        linear-gradient(135deg, #10151c 0%, #141a23 48%, #251d20 100%);
}

:root[data-theme="dark"] .hero-product::before,
:root[data-theme="dark"] .hero-product-card,
:root[data-theme="dark"] .bento-card,
:root[data-theme="dark"] .trust-list div {
    background: color-mix(in srgb, var(--surface) 88%, transparent);
}

:root[data-theme="dark"] .proof-matrix,
:root[data-theme="dark"] .app-flow-section {
    background: linear-gradient(135deg, #05070b, #141a23);
}

@media (max-width: 920px) {
    .home-hero-grid,
    .app-flow-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-grid {
        gap: 28px;
    }

    .home-hero h1 {
        font-size: 3.25rem;
    }

    .hero-product {
        min-height: auto;
    }

    .hero-product::before {
        inset: 26px 0 22px 18px;
    }

    .hero-product img {
        min-height: 360px;
        max-height: 460px;
    }

    .proof-matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-stat:nth-child(2) {
        border-right: 0;
    }

    .proof-stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

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

    .bento-card-large,
    .bento-card-date {
        grid-column: span 2;
        grid-row: auto;
        min-height: 310px;
    }

    .trust-grid {
        gap: 32px;
    }

    .trust-copy {
        max-width: none;
    }

    .final-cta-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-hero {
        padding: 26px 0 24px;
    }

    .home-hero-grid {
        gap: 22px;
    }

    .home-hero-copy {
        order: 2;
        padding-top: 0;
    }

    .hero-product {
        order: 1;
    }

    .home-hero h1 {
        margin-top: 16px;
        font-size: 2.18rem;
        line-height: 1.04;
    }

    .home-hero .hero-lede {
        margin-top: 16px;
        font-size: .98rem;
    }

    .home-hero .hero-actions {
        margin-top: 24px;
    }

    .launch-note {
        margin-top: 14px;
        font-size: .8rem;
    }

    .hero-product img {
        min-height: 260px;
        max-height: 310px;
        object-position: center right;
    }

    .hero-product-card {
        display: none;
    }

    .proof-matrix,
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .proof-stat,
    .proof-stat:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .proof-stat:last-child {
        border-bottom: 0;
    }

    .bento-card-large,
    .bento-card-date {
        grid-column: auto;
        min-height: 250px;
    }

    .app-flow-grid,
    .trust-grid {
        gap: 26px;
    }

    .flow-step {
        grid-template-columns: 42px 1fr;
        padding: 18px;
    }

    .final-cta-inner {
        padding: 24px;
    }

    .final-cta h2 {
        font-size: 2.25rem;
    }
}
