/* ==========================================================================
   Architext marketing landing — writer mode.
   Global (non-scoped) so child components rendered inside `.landing`
   (ProductDemo, ComparisonTable, PricingMatrix, FaqAccordion) are styled too.
   Every selector is namespaced under `.landing` to avoid colliding with app CSS.

   Colour comes from the active theme (always theme-writer-light on the signed-out
   landing). The few brand tones the theme has no exact variable for — paper,
   daylight, deep-navy — are defined once here as brand constants.
   ========================================================================== */

.landing {
    /* brand palette, mapped to theme vars where they exist */
    --navy: var(--accent);              /* #003a6b */
    --ocean: var(--accent-hover);       /* #1b5886 */
    --daylight: #6eb1d6;                /* brand daylight — pops on navy */
    --cream: var(--bg);                 /* #f4ede0 */
    --paper: #fbf8f1;                   /* brand paper — cards a touch lighter than cream */
    --navy-deep: #012c52;               /* brand deep navy for dark sections / hovers */
    --line: var(--border);
    --muted: var(--ink2);
    --lp-ink: var(--ink);

    --serif: var(--font-brand);
    --sans: var(--font-ui);
    --mono: 'DM Mono', ui-monospace, SFMono-Regular, monospace;
    --ease: cubic-bezier(.22, .61, .36, 1);

    /* entity avatar tints (authentic to the app) */
    --av-green: #cfe3c4;
    --av-teal: #bfe0dd;
    --av-purple: #d8d0ec;
    --av-tan: #e8dcc2;
    --av-pink: #ecd5db;

    --maxw: 1200px;

    font-family: var(--sans);
    color: var(--lp-ink);
    background-color: var(--cream);
    scroll-behavior: smooth;
}

.landing a { text-decoration: none; color: inherit; }
.landing .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 6vw; }
.landing .serif { font-family: var(--serif); }
.landing .kicker {
    font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .16em;
    text-transform: uppercase; color: var(--ocean);
}

/* ---------- buttons ---------- */
.landing .btn {
    display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans);
    font-weight: 600; border-radius: 9px; cursor: pointer; border: none;
    transition: all .2s var(--ease);
}
.landing .btn-primary { background: var(--navy); color: #fff; font-size: 14px; padding: 12px 22px; }
.landing .btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); }
.landing .btn-ghost { background: var(--paper); color: var(--navy); border: 1px solid var(--line); font-size: 14px; padding: 12px 22px; }
.landing .btn-ghost:hover { border-color: var(--ocean); }
.landing .btn-cream { background: var(--cream); color: var(--navy); }
.landing .btn-lg { font-size: 16px; padding: 16px 30px; border-radius: 11px; }
.landing .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- nav ---------- */
.landing .lp-nav {
    position: sticky; top: 0; z-index: 60; display: flex; align-items: center;
    justify-content: space-between; padding: 16px 6vw; transition: all .3s var(--ease);
}
.landing .lp-nav.scrolled {
    background: rgba(244, 237, 224, .88); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); padding: 11px 6vw;
}
.landing .lp-nav .logo { display: flex; align-items: center; color: var(--navy); cursor: pointer; }
.landing .lp-nav .links { display: flex; gap: 30px; font-size: 14px; font-weight: 500; color: var(--muted); }
.landing .lp-nav .links a { position: relative; cursor: pointer; }
.landing .lp-nav .links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1.5px;
    background: var(--ocean); transform: scaleX(0); transform-origin: left; transition: transform .24s var(--ease);
}
.landing .lp-nav .links a:hover { color: var(--navy); }
.landing .lp-nav .links a:hover::after { transform: scaleX(1); }
.landing .lp-nav .right { display: flex; align-items: center; gap: 16px; }
.landing .lp-nav .signin { font-size: 14px; font-weight: 600; color: var(--navy); cursor: pointer; }
@media (max-width: 900px) { .landing .lp-nav .links { display: none; } }

/* ---------- hero ---------- */
.landing .hero {
    padding: 90px 0 50px; text-align: center; position: relative;
    background: radial-gradient(120% 75% at 50% -10%, rgba(110, 177, 214, .20), transparent 60%);
}
.landing .eyebrow {
    display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600;
    color: var(--ocean); background: rgba(55, 118, 161, .1); border: 1px solid rgba(55, 118, 161, .22);
    padding: 7px 16px; border-radius: 999px; margin-bottom: 28px;
}
.landing .eyebrow .drip {
    width: 9px; height: 9px; border-radius: 50% 50% 50% 0; transform: rotate(45deg);
    background: var(--ocean); animation: lp-settle 3s var(--ease) infinite;
}
@keyframes lp-settle {
    0%, 70%, 100% { transform: rotate(45deg) translateY(0); }
    80% { transform: rotate(45deg) translateY(1px) scaleY(.85); }
}
.landing .hero h1 {
    font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 7vw, 88px); line-height: 1.02;
    letter-spacing: -.018em; color: var(--lp-ink); max-width: 15ch; margin: 0 auto;
}
.landing .hero h1 em { font-style: italic; color: var(--ocean); }
.landing .hero .underline { height: 2px; width: 0; background: var(--ocean); margin: 26px auto 0; animation: lp-draw 1s var(--ease) .4s forwards; }
@keyframes lp-draw { to { width: 104px; } }
.landing .hero .lede { font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 620px; margin: 26px auto 0; line-height: 1.6; }
.landing .hero .cta-row { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.landing .hero .reassure { margin-top: 22px; font-size: 13.5px; color: var(--muted); display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.landing .hero .reassure b { color: var(--navy); }
.landing .hero .reassure span { display: inline-flex; gap: 7px; align-items: center; }
.landing .check { color: var(--ocean); font-weight: 700; }

/* the real Google button + sign-in helpers live in the hero.
   Scoped under `.hero` to outrank the PM-mode `.hero-signin { align-items: flex-start }`
   rule that leaks in via the shared component-scoped stylesheet. */
.landing .hero .hero-signin { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 32px; width: 100%; }
.landing .hero .hero-signin #google-signin-button { display: flex; justify-content: center; width: 100%; }
.landing .keep-logged-in { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); cursor: pointer; user-select: none; }
.landing .keep-logged-in input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--navy); cursor: pointer; }
.landing .signin-loading { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .9rem; }
.landing .spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid var(--line); border-top-color: var(--ocean); border-radius: 50%; animation: lp-spin .7s linear infinite; flex-shrink: 0; }
@keyframes lp-spin { to { transform: rotate(360deg); } }
.landing .signin-error { margin: 0; font-size: .85rem; color: var(--status-error); }

/* ---------- generic section ---------- */
.landing .sec { padding: 56px 0; position: relative; }
.landing .sec-head { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.landing .sec-head h2 {
    font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4.4vw, 50px); line-height: 1.06;
    letter-spacing: -.012em; color: var(--lp-ink); margin-top: 16px;
}
.landing .sec-head h2 em { font-style: italic; color: var(--ocean); }
.landing .sec-head h2::after { content: ""; display: block; width: 0; height: 2px; background: var(--ocean); margin: 18px auto 0; transition: width .8s var(--ease) .15s; }
.landing .sec-head.in h2::after { width: 60px; }
.landing .sec-head .p { font-size: 17.5px; color: var(--muted); margin-top: 16px; line-height: 1.6; }

/* reveal — only hidden once JS adds `.fx-ready`, so the page degrades to fully visible */
.landing.fx-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.landing.fx-ready .reveal.in { opacity: 1; transform: none; }
.landing.fx-ready .stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.landing.fx-ready .stagger.in > * { opacity: 1; transform: none; }
.landing.fx-ready .stagger.in > *:nth-child(2) { transition-delay: .08s; }
.landing.fx-ready .stagger.in > *:nth-child(3) { transition-delay: .16s; }
.landing.fx-ready .stagger.in > *:nth-child(4) { transition-delay: .24s; }
.landing.fx-ready .stagger.in > *:nth-child(5) { transition-delay: .32s; }
.landing.fx-ready .stagger.in > *:nth-child(6) { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
    .landing .reveal, .landing .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
    .landing .hero .underline, .landing .sec-head h2::after { animation: none !important; width: 104px; }
    .landing .eyebrow .drip { animation: none; }
}

/* ====================================================== */
/*  PRODUCT IN ACTION — screenshot tab switcher           */
/* ====================================================== */
.landing .product { background-image: radial-gradient(78% 58% at 50% 2%, rgba(110, 177, 214, .11), transparent 60%); }
.landing .ai-note {
    display: inline-flex; align-items: center; gap: 9px; margin: 0 auto 26px; font-size: 13px;
    color: var(--ocean); background: rgba(110, 177, 214, .14); border: 1px solid rgba(110, 177, 214, .4);
    padding: 7px 15px; border-radius: 999px;
}
.landing .ai-note .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--daylight); }
.landing .modetabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.landing .modetab {
    font-size: 13.5px; font-weight: 600; color: var(--muted); padding: 9px 18px; border-radius: 9px;
    border: 1px solid transparent; cursor: pointer; transition: all .2s var(--ease); background: transparent; font-family: var(--sans);
}
.landing .modetab:hover { color: var(--navy); }
.landing .modetab.on { background: var(--paper); border-color: var(--line); color: var(--navy); }

/* product section: extra compression so the whole demo fits one viewport */
.landing .product { padding: 44px 0; }
.landing .product .sec-head { max-width: 920px; margin-bottom: 20px; }
.landing .product .sec-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.landing .product .sec-head .p { margin-top: 12px; font-size: 16px; }
.landing .product .ai-note { margin-bottom: 16px; }
.landing .product .modetabs { margin-bottom: 16px; }
.landing .product .app-shot img { max-height: 50vh; }

.landing .app-shot {
    width: fit-content; max-width: 100%; margin: 0 auto; border-radius: 16px; overflow: hidden; background: #fff;
    border: 1px solid rgba(0, 58, 107, .13); box-shadow: 0 50px 110px -45px rgba(0, 41, 76, .5);
}
.landing .app-shot img { display: block; width: auto; max-width: 100%; max-height: 52vh; height: auto; animation: lp-panelin .42s var(--ease); }
.landing .app-shot figure { margin: 0; }
.landing .app-shot .frame { position: relative; }
.landing .app-shot figcaption {
    font-family: var(--serif); font-style: italic; font-size: 14.5px; color: var(--muted);
    text-align: center; padding: 16px 18px 4px;
}
@keyframes lp-panelin { from { opacity: 0; } to { opacity: 1; } }

/* ---------- why / the problem (navy) ---------- */
.landing .why { background-color: var(--navy); color: var(--cream); background-image: radial-gradient(70% 95% at 100% 0%, rgba(110, 177, 214, .13), transparent 55%); }
.landing .why .kicker { color: var(--daylight); }
.landing .why .sec-head h2 { color: var(--cream); }
.landing .why .sec-head h2 em { color: var(--daylight); }
.landing .why .sec-head h2::after { background: var(--daylight); }
.landing .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.landing .why-list { display: flex; flex-direction: column; gap: 20px; }
.landing .why-item { display: flex; gap: 15px; }
.landing .why-item .x { flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; background: rgba(255, 255, 255, .08); display: flex; align-items: center; justify-content: center; color: var(--daylight); }
.landing .why-item .x svg { width: 17px; height: 17px; }
.landing .why-item h4 { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.landing .why-item p { font-size: 14px; color: #a6c1d3; line-height: 1.5; }
.landing .why-quote { font-family: var(--serif); font-weight: 400; font-size: clamp(23px, 3vw, 36px); line-height: 1.25; color: var(--cream); }
.landing .why-quote em { font-style: italic; color: var(--daylight); }
.landing .why-quote .hl { background: linear-gradient(transparent 22%, rgba(110, 177, 214, .32) 22% 92%, transparent 92%); }
@media (max-width: 860px) { .landing .why-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- rtb (what you can count on) ---------- */
.landing .rtb { background-color: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background-image: repeating-linear-gradient(45deg, rgba(0, 58, 107, .016) 0 1px, transparent 1px 9px); }
.landing .rtb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 32px; }
.landing .rtb-card { transition: transform .25s var(--ease); }
.landing .rtb-card:hover { transform: translateY(-3px); }
.landing .rtb-card .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(0, 58, 107, .06); display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.landing .rtb-card .ic svg { width: 23px; height: 23px; color: var(--navy); }
.landing .rtb-card h4 { font-family: var(--serif); font-weight: 500; font-size: 18px; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.landing .rtb-card p { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
@media (max-width: 900px) { .landing .rtb-grid { grid-template-columns: 1fr 1fr; gap: 38px 28px; } }
@media (max-width: 560px) { .landing .rtb-grid { grid-template-columns: 1fr; } }

/* ---------- feature grid ---------- */
.landing .features { background-image: radial-gradient(58% 52% at 100% 4%, rgba(110, 177, 214, .085), transparent 55%); }
.landing .fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.landing .fcard {
    background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 20px;
    transition: all .25s var(--ease); display: flex; flex-direction: column;
    background-image: repeating-linear-gradient(45deg, rgba(0, 58, 107, .02) 0 1px, transparent 1px 8px);
}
.landing .fcard:hover { transform: translateY(-3px); border-color: var(--ocean); box-shadow: 0 20px 40px -24px rgba(0, 41, 76, .3); }
.landing .fcard h4 { font-family: var(--serif); font-weight: 500; font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.landing .fcard p { font-size: 13.5px; line-height: 1.5; color: var(--muted); }
@media (max-width: 880px) { .landing .fgrid { grid-template-columns: 1fr; } }

/* feature visual minis */
.landing .fmini { background: #fff; border: 1px solid #ece3d2; border-radius: 11px; padding: 12px 14px; margin-bottom: 14px; min-height: 82px; display: flex; flex-direction: column; justify-content: center; gap: 9px; overflow: hidden; position: relative; }
.landing .fmini.center { align-items: center; text-align: center; }
.landing .fmini.ai { background: rgba(110, 177, 214, .12); border-color: rgba(110, 177, 214, .42); }
.landing .mo-row { display: flex; align-items: center; gap: 9px; }
.landing .mo-h { color: #cbc2aa; font-size: 12px; }
.landing .mo-bar { height: 7px; border-radius: 4px; background: rgba(0, 58, 107, .13); }
.landing .mo-bar.s { background: rgba(0, 58, 107, .22); }
.landing .mo-av { width: 17px; height: 17px; border-radius: 50%; font-size: 8px; font-weight: 700; color: var(--navy); display: flex; align-items: center; justify-content: center; background: var(--av-teal); margin-left: auto; }
.landing .mo-av.t { background: var(--av-tan); margin-left: -6px; border: 1.5px solid #fff; }
.landing .streak { display: flex; gap: 8px; }
.landing .sd { width: 13px; height: 13px; border-radius: 50%; background: rgba(0, 58, 107, .12); }
.landing .sd.on { background: var(--ocean); }
.landing .sd.today { background: var(--daylight); box-shadow: 0 0 0 3px rgba(110, 177, 214, .32); }
.landing .wchip { font-family: var(--mono); font-size: 10px; color: var(--ocean); background: rgba(55, 118, 161, .1); padding: 5px 11px; border-radius: 6px; }
.landing .flow { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; justify-content: center; }
.landing .pill { font-size: 10.5px; font-weight: 600; color: var(--navy); background: #f3ecdb; border: 1px solid #e7dcc6; border-radius: 6px; padding: 5px 9px; }
.landing .pill.mark { background: var(--navy); color: #fff; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 7px; font-family: var(--serif); padding: 0; font-size: 14px; }
.landing .arr { color: #bbb29c; font-size: 12px; }
.landing .vh { display: flex; align-items: center; gap: 11px; }
.landing .vh + .vh { margin-top: 9px; }
.landing .vdot { width: 9px; height: 9px; border-radius: 50%; background: var(--ocean); flex-shrink: 0; z-index: 1; }
.landing .vdot.o { background: #cdbfa4; }
.landing .vmeta { font-size: 10.5px; color: #6a7681; }
.landing .vmeta b { color: var(--navy); }
.landing .vline { position: absolute; left: 18.5px; top: 18px; bottom: 18px; width: 1.5px; background: #e6dcc6; }
.landing .cert { display: flex; align-items: center; gap: 12px; }
.landing .seal { width: 34px; height: 34px; flex-shrink: 0; color: var(--ocean); display: block; }
.landing .seal svg { width: 34px; height: 34px; }
.landing .cert b { font-size: 12px; color: var(--navy); display: block; margin-bottom: 2px; }
.landing .cert .sig { font-family: var(--serif); font-style: italic; font-size: 11px; color: #8a8472; }
.landing .bubble { font-size: 11px; line-height: 1.45; color: var(--navy); background: #fff; border: 1px solid rgba(110, 177, 214, .55); border-radius: 10px 10px 10px 3px; padding: 9px 11px; }
.landing .ask { display: flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 700; color: var(--ocean); align-self: flex-start; }
.landing .ask .nibi { width: 14px; height: 14px; }

/* ---------- never stance (navy) ---------- */
.landing .stance { background: var(--navy); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
.landing .stance::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 12px); pointer-events: none; }
.landing .stance::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(62% 82% at 0% 100%, rgba(110, 177, 214, .13), transparent 55%); pointer-events: none; }
.landing .stance .big { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 5vw, 60px); line-height: 1.1; max-width: 17ch; margin: 0 auto; position: relative; }
.landing .stance .big .never { font-style: italic; color: var(--daylight); }
.landing .stance p { font-size: 17px; color: #a6c1d3; max-width: 580px; margin: 24px auto 0; line-height: 1.6; position: relative; }

/* ---------- compare ---------- */
.landing .compare { background-color: var(--cream); background-image: repeating-linear-gradient(45deg, rgba(0, 58, 107, .014) 0 1px, transparent 1px 10px); }
.landing .ctable-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); background: var(--paper); }
.landing table.ctable { border-collapse: collapse; width: 100%; min-width: 820px; font-size: 13.5px; }
.landing .ctable th, .landing .ctable td { padding: 14px 13px; text-align: center; border-bottom: 1px solid #efe8da; }
.landing .ctable thead th { font-weight: 600; color: var(--muted); font-size: 12.5px; }
.landing .ctable .feat-col { text-align: left; font-weight: 600; color: var(--lp-ink); font-size: 14px; }
.landing .ctable .arch-col { background: var(--navy); color: #fff; font-weight: 700; }
.landing .ctable thead .arch-col { font-family: var(--serif); font-weight: 500; font-size: 16px; border-radius: 10px 10px 0 0; }
.landing .ctable td.dim { color: #b3ab97; }
.landing .ctable td .sm { font-size: 12px; color: var(--muted); }
.landing .ctable .never-cell { background: var(--navy-deep); color: var(--daylight); font-family: var(--serif); font-style: italic; font-weight: 500; }
.landing .ctable tbody tr:hover td:not(.arch-col):not(.never-cell) { background: #eef5fa; }
.landing.fx-ready .ctable tbody tr { opacity: 0; transform: translateY(10px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.landing .ctable-wrap.in tbody tr { opacity: 1; transform: none; }
.landing .ctable-wrap.in tbody tr:nth-child(2) { transition-delay: .06s; }
.landing .ctable-wrap.in tbody tr:nth-child(3) { transition-delay: .12s; }
.landing .ctable-wrap.in tbody tr:nth-child(4) { transition-delay: .18s; }
.landing .ctable-wrap.in tbody tr:nth-child(5) { transition-delay: .24s; }
.landing .ctable-wrap.in tbody tr:nth-child(6) { transition-delay: .30s; }
.landing .ctable-wrap.in tbody tr:nth-child(7) { transition-delay: .36s; }
.landing .ctable-wrap.in tbody tr:nth-child(8) { transition-delay: .42s; }
.landing .ctable-wrap.in tbody tr:nth-child(9) { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) { .landing .ctable tbody tr { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---------- pricing ---------- */
.landing .pricing { background-image: radial-gradient(58% 52% at 0% 26%, rgba(110, 177, 214, .075), transparent 55%); }
.landing .plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.landing .plan { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 30px 26px; }
.landing .plan.rec { background: var(--navy); color: #fff; transform: scale(1.04); box-shadow: 0 40px 80px -40px rgba(0, 41, 76, .55); }
.landing .plan .badge { display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; background: var(--daylight); color: var(--navy); padding: 5px 11px; border-radius: 7px; margin-bottom: 14px; }
.landing .plan .pname { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 5px; }
.landing .plan.rec .pname { color: #fff; }
.landing .plan .price { font-family: var(--serif); font-size: 44px; font-weight: 500; color: var(--lp-ink); line-height: 1; }
.landing .plan.rec .price { color: #fff; }
.landing .plan .price small { font-size: 15px; font-weight: 400; color: #9a9078; }
.landing .plan.rec .price small { color: var(--daylight); }
.landing .plan .per { font-size: 12.5px; color: #9a9078; margin-top: 6px; }
.landing .plan.rec .per { color: var(--daylight); }
.landing .plan .desc { font-size: 13.5px; line-height: 1.5; color: var(--muted); margin: 14px 0 20px; min-height: 40px; }
.landing .plan.rec .desc { color: #cddded; }
.landing .plan .pbtn { width: 100%; justify-content: center; }
.landing .plan ul { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.landing .plan li { font-size: 13px; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.landing .plan.rec li { color: #cddded; }
.landing .plan li .c { color: var(--ocean); font-weight: 700; flex-shrink: 0; }
.landing .plan.rec li .c { color: var(--daylight); }
.landing .pricing .note { text-align: center; font-family: var(--serif); font-style: italic; color: var(--muted); margin-top: 28px; font-size: 16px; }
@media (max-width: 880px) { .landing .plans { grid-template-columns: 1fr; } .landing .plan.rec { transform: none; } }

/* ---------- promise band ---------- */
.landing .promise { background-color: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; background-image: repeating-linear-gradient(45deg, rgba(0, 58, 107, .020) 0 1px, transparent 1px 9px), radial-gradient(72% 80% at 50% 0%, rgba(110, 177, 214, .10), transparent 60%); }
.landing .promise .journey { display: flex; align-items: center; justify-content: center; margin-bottom: 34px; gap: 0; }
.landing .promise .jline { height: 2px; width: 0; background: linear-gradient(90deg, var(--ocean), var(--daylight)); transition: width 1.1s var(--ease) .15s; }
.landing .promise.in .jline { width: min(300px, 40vw); }
.landing .promise .dot-a, .landing .promise .dot-b { width: 12px; height: 12px; border-radius: 50% 50% 50% 0; transform: rotate(45deg); flex-shrink: 0; }
.landing .promise .dot-a { background: var(--ocean); }
.landing .promise .dot-b { background: var(--daylight); }
.landing .promise h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 4.2vw, 48px); line-height: 1.1; letter-spacing: -.012em; color: var(--lp-ink); max-width: 18ch; margin: 0 auto; }
.landing .promise h2 em { font-style: italic; color: var(--ocean); }
.landing .promise p { font-size: 17px; color: var(--muted); max-width: 560px; margin: 22px auto 0; line-height: 1.6; }

/* ---------- faq ---------- */
.landing .faq { background-color: var(--cream); border-top: 1px solid var(--line); background-image: repeating-linear-gradient(45deg, rgba(0, 58, 107, .014) 0 1px, transparent 1px 10px), radial-gradient(60% 60% at 100% 100%, rgba(110, 177, 214, .06), transparent 55%); }
.landing .faq-list { max-width: 780px; margin: 0 auto; }
.landing .qa { border-bottom: 1px solid var(--line); }
.landing .qa > summary {
    list-style: none; width: 100%; text-align: left; padding: 23px 4px; font-family: var(--serif);
    font-size: 19px; color: var(--navy); font-weight: 500; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center; gap: 20px;
}
.landing .qa > summary::-webkit-details-marker { display: none; }
.landing .qa .sign { font-size: 23px; color: var(--ocean); transition: transform .3s var(--ease); flex-shrink: 0; }
.landing .qa[open] .sign { transform: rotate(45deg); }
.landing .qa .ans p { font-size: 15.5px; line-height: 1.7; color: var(--muted); padding: 0 4px 24px; margin: 0; }
.landing .qa .ans p + p { padding-top: 12px; }
.landing .qa .ans a { color: var(--ocean); text-decoration: underline; }

/* ---------- final (navy) ---------- */
.landing .final { background: var(--navy); color: #fff; text-align: center; position: relative; overflow: hidden; }
.landing .final::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(110, 177, 214, .12) 1px, transparent 1.4px); background-size: 20px 20px; opacity: .6; }
.landing .final .endmark { display: flex; justify-content: center; margin-bottom: 24px; position: relative; }
.landing .final .endmark .drop { width: 16px; height: 16px; border-radius: 50% 50% 50% 0; transform: rotate(45deg); background: var(--daylight); }
.landing .final h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5.4vw, 68px); line-height: 1.0; letter-spacing: -.018em; position: relative; }
.landing .final h2 em { font-style: italic; color: var(--daylight); }
.landing .final .cta-row { margin-top: 30px; position: relative; display: flex; justify-content: center; }
.landing .final small { display: block; margin-top: 16px; color: #a6c1d3; font-size: 13px; position: relative; }

/* ---------- footer ---------- */
.landing .lp-footer { background: var(--navy-deep); color: #8ba8bd; padding: 56px 6vw 38px; background-image: radial-gradient(rgba(110, 177, 214, .1) 1px, transparent 1.4px); background-size: 18px 18px; }
.landing .foot-grid { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 36px; }
.landing .foot-grid .logo { color: #fff; display: inline-flex; }
.landing .foot-grid .tag { font-family: var(--serif); font-style: italic; font-size: 14px; margin-top: 12px; max-width: 240px; line-height: 1.5; }
.landing .foot-col h5 { color: var(--cream); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 13px; }
.landing .foot-col a { display: block; font-size: 14px; margin-bottom: 9px; cursor: pointer; }
.landing .foot-col a:hover { color: var(--cream); }
.landing .foot-bottom { max-width: var(--maxw); margin: 38px auto 0; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; justify-content: space-between; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }
.landing .foot-bottom .mono { font-family: var(--mono); letter-spacing: .04em; }
