/* =============================================================================
   GROW · frontend4 — "Learn more" sequence (loads after style.css)
   ============================================================================= */

.learn { min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto 1fr auto; padding: 0 clamp(20px, 3.2vw, 48px); }

/* ── top bar: section menu (centre) + G circle menu (right) ─────────────── */
.lbar { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: clamp(18px, 2.4vw, 34px) 0 0; }
.lbar__home--right { justify-self: end; }
.lbar__home { font-size: 13px; font-weight: 500; color: var(--ink-mute); letter-spacing: .02em; display: inline-flex; align-items: center; gap: 8px; }
.lbar__home:hover { color: var(--ink); }
.lbar__home svg { width: 14px; height: 14px; }

.menu { display: flex; align-items: center; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(17,17,16,.04); }
.menu a {
    position: relative; display: inline-flex; align-items: center; gap: 8px;
    height: 40px; padding: 0 16px; border-radius: 999px;
    font-size: 14px; font-weight: 500; color: var(--ink-soft); letter-spacing: -0.005em;
    transition: color .2s, background .2s;
}
.menu a:hover { color: var(--ink); }
.menu a.is-active { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(17,17,16,.05), 0 6px 16px -8px rgba(17,17,16,.18); }

/* G circle + menu (hover or click; JS adds .is-open with a close delay) */
.gmenu { justify-self: start; position: relative; }
.gmenu__btn {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 4px; margin-left: -4px;
    background: transparent; border: 0; border-radius: 10px; color: #8a8a86; cursor: pointer;
    transition: color .2s;
}
.gmenu__logo { height: 22px; width: auto; display: block; overflow: visible; }
.gmenu__chev { width: 16px; height: 16px; margin-top: 2px; transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.gmenu__btn:hover, .gmenu.is-open .gmenu__btn { color: var(--ink); }
.gmenu.is-open .gmenu__chev { transform: rotate(180deg); }
.gmenu__panel {
    position: absolute; left: 0; top: calc(100% + 10px); min-width: 200px;
    background: #fff; border-radius: 18px; padding: 8px;
    box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 24px 60px -20px rgba(17,17,16,.35);
    opacity: 0; transform: translateY(-6px); pointer-events: none;
    transition: opacity .2s, transform .2s cubic-bezier(.2,.7,.2,1); z-index: 50;
}
.gmenu::after { content: ""; position: absolute; left: -20px; right: -20px; top: 100%; height: 16px; } /* hover bridge */
.gmenu.is-open .gmenu__panel { opacity: 1; transform: none; pointer-events: auto; }
.gmenu__panel a {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 11px 14px; border-radius: 12px; font-size: 15px; font-weight: 500; color: var(--ink);
}
.gmenu__panel a:hover { background: rgba(17,17,16,.05); }
.gmenu__panel a svg { width: 14px; height: 14px; color: var(--ink-mute); }
.gmenu__panel a sup { font-size: .55em; vertical-align: top; position: relative; top: .25em; margin-left: 1px; }
.gmenu__panel { min-width: 290px; }
.gmenu__panel a span { white-space: nowrap; }
.gmenu__panel hr { border: 0; border-top: 1px solid rgba(17,17,16,.07); margin: 6px 8px; }

/* ── slides ─────────────────────────────────────────────────────────────── */
.deck { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; }
.slide {
    grid-area: 1 / 1; /* stack */
    display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(32px, 6vw, 110px);
    align-items: start; padding: clamp(28px, 5vh, 64px) clamp(0px, 3vw, 56px);
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: opacity .45s cubic-bezier(.2,.7,.2,1), transform .45s cubic-bezier(.2,.7,.2,1), visibility 0s .45s;
}
.slide.is-active { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.slide.is-active > * { animation: rise .6s cubic-bezier(.2,.7,.2,1) both; }
.slide.is-active > :nth-child(2) { animation-delay: .12s; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.slide__eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); margin: 0 0 18px; }
.slide h1, .slide h2 {
    font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50;
    font-size: clamp(40px, 4.2vw, 74px); line-height: 1.02; letter-spacing: -0.025em; color: var(--ink); margin: 0 0 26px;
}
.slide .lead, .slide .slide__standfirst {
    font-family: var(--font-sans); font-weight: 400;
    font-size: clamp(19px, 1.45vw, 24px); line-height: 1.45; letter-spacing: -0.012em; color: var(--ink); margin: 0;
    max-width: 34ch;
}
.slide .slide__standfirst { margin: -12px 0 16px; }
.slide__body { padding-top: clamp(8px, 2.5vw, 44px); }
.slide__body p { font-size: clamp(16.5px, 1.15vw, 19px); font-weight: 300; line-height: 1.65; color: var(--ink-soft); margin: 0 0 1.2em; letter-spacing: -0.006em; max-width: 56ch; }
.slide__body p b, .slide__body li b { font-weight: 600; color: var(--ink); }
.slide__body p:last-child { margin-bottom: 0; }
.slide__body sup { font-size: .55em; vertical-align: top; position: relative; top: .2em; }

/* pull quote (bottom of the left column) */
.slide__quote { margin: clamp(28px, 4vw, 56px) 0 0; padding: 0 0 0 18px; border-left: 2px solid var(--ink); max-width: 40ch; }
.slide__quote p { margin: 0; font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(18px, 1.4vw, 23px); line-height: 1.4; letter-spacing: -0.01em; color: var(--ink-soft); }

/* facts row */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 0 30px; }
.fact { background: #fff; border-radius: 16px; padding: 18px 20px 16px; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -18px rgba(17,17,16,.25); }
.fact b { display: block; font-family: var(--font-serif); font-weight: 400; font-size: clamp(30px, 2.6vw, 44px); letter-spacing: -0.03em; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.fact span { display: block; margin-top: 8px; font-size: 13px; color: var(--ink-mute); font-weight: 500; }

/* numbered list */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.steps li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; background: #fff; border-radius: 16px; padding: 16px 18px; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -18px rgba(17,17,16,.25); }
.steps li i { font-style: normal; width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px; font-weight: 600; }
.steps li b { display: block; font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 3px; letter-spacing: -0.01em; }
.steps li span { font-size: 15.5px; font-weight: 300; color: var(--ink-soft); line-height: 1.55; }

/* compact numbered list (10 steps, two columns) */
.steps--compact { grid-template-columns: 1fr; gap: 4px; margin-top: 4px; max-width: 480px; }
.steps--compact li { grid-template-columns: 26px 1fr; gap: 12px; align-items: center; background: transparent; box-shadow: none; border-radius: 0; padding: 7px 0; border-top: 1px solid rgba(17,17,16,.07); }
.steps--compact li:nth-child(1) { border-top: 0; }
.steps--compact li i { width: 26px; height: 26px; font-size: 11px; }
.steps--compact li span { font-size: 15px; line-height: 1.4; color: var(--ink); font-weight: 400; }
.steps--compact li span em { font-style: normal; color: var(--ink-mute); }
.steps-outro { margin-top: 18px !important; font-weight: 500 !important; color: var(--ink) !important; }
.steps-help { margin-top: 6px !important; }
.steps-help a { color: var(--ink); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(17,17,16,.3); text-underline-offset: 4px; transition: text-decoration-color .2s; }
.steps-help a:hover { text-decoration-color: var(--ink); }

/* ── FAQ page ─────────────────────────────────────────────────────────── */
.faq { max-width: 1120px; width: 100%; margin: 0 auto; padding: clamp(28px, 5vh, 64px) 0 40px; display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(32px, 6vw, 110px); align-items: start; }
.faq__intro { position: sticky; top: 40px; }
.faq__intro h1 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(44px, 4.6vw, 78px); line-height: 1.0; letter-spacing: -0.025em; margin: 0 0 22px; color: var(--ink); }
.faq__intro p { font-size: clamp(17px, 1.25vw, 21px); font-weight: 300; line-height: 1.55; color: var(--ink-soft); margin: 0 0 26px; max-width: 36ch; }
.faq__intro .btn-dark { height: 52px; padding: 0 26px; font-size: 16px; }
.faq__list { display: grid; gap: 10px; }
.faq__item { background: #fff; border-radius: 18px; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -18px rgba(17,17,16,.25); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; background: transparent; border: 0; cursor: pointer; padding: 20px 22px; font: inherit; font-size: 17px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
.faq__q i { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: rgba(17,17,16,.05); display: inline-flex; align-items: center; justify-content: center; transition: transform .3s cubic-bezier(.2,.7,.2,1), background .2s; }
.faq__q i svg { width: 14px; height: 14px; }
.faq__item.is-open .faq__q i { transform: rotate(45deg); background: var(--ink); color: #fff; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s cubic-bezier(.2,.7,.2,1); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { margin: 0; padding: 0 22px 22px; font-size: 16px; font-weight: 300; line-height: 1.62; color: var(--ink-soft); max-width: 60ch; }
@media (max-width: 1000px) { .faq { grid-template-columns: 1fr; gap: 28px; } .faq__intro { position: static; } }


/* pricing figures (left column, under the lead) */
.fees { display: flex; gap: 14px; margin: 30px 0 14px; }
.fee { flex: 1; background: #fff; border-radius: 16px; padding: 20px 22px 18px; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -18px rgba(17,17,16,.25); }
.fee b { display: block; font-family: var(--font-serif); font-weight: 400; font-size: clamp(40px, 3.6vw, 60px); line-height: .95; letter-spacing: -0.035em; color: var(--ink); font-variant-numeric: tabular-nums; }
.fee span { display: block; margin-top: 10px; font-size: 13px; color: var(--ink-mute); font-weight: 500; }
.fee--alt b { color: var(--ink-soft); }
.price-note { font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute); margin: 0; line-height: 1.5; }

/* bullet list (plain) */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ticks li b { font-weight: 600; color: var(--ink); }
.ticks li sup { font-size: .55em; vertical-align: top; position: relative; top: .2em; }
.ticks li { position: relative; padding-left: 28px; font-size: clamp(16.5px, 1.15vw, 19px); font-weight: 300; line-height: 1.55; color: var(--ink-soft); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .55em; width: 14px; height: 14px; border-radius: 50%; background: var(--ink); }
.ticks li::after { content: ""; position: absolute; left: 3.5px; top: calc(.55em + 3px); width: 7px; height: 4px; border-left: 1.6px solid #fff; border-bottom: 1.6px solid #fff; transform: rotate(-45deg); }

.placeholder { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .01em; text-transform: none; color: #b45309; background: #fffbeb; border-radius: 999px; padding: 5px 10px; margin-bottom: 14px; }

/* ── bottom: progress + prev/next ───────────────────────────────────────── */
.lnav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 0 0 clamp(18px, 2.4vw, 32px); }
.lnav__count { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-mute); letter-spacing: .04em; }
.lnav__count b { color: var(--ink); font-weight: 600; }
.lnav__dots { display: flex; gap: 6px; justify-content: center; }
.lnav__dots i { width: 28px; height: 3px; border-radius: 2px; background: rgba(17,17,16,.1); transition: background .3s, width .3s; }
.lnav__dots i.on { background: var(--ink); width: 44px; }
.lnav__dots i.done { background: rgba(17,17,16,.35); }
.lnav__btns { justify-self: end; display: flex; gap: 8px; }
.lnav__btns a {
    display: inline-flex; align-items: center; gap: 10px; height: 54px; padding: 0 22px; border-radius: 999px;
    font-size: 15.5px; font-weight: 500; letter-spacing: -0.01em;
    transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, opacity .2s;
}
.lnav__btns a svg { width: 16px; height: 16px; }
.lnav__prev { background: #fff; color: var(--ink); border: 1px solid rgba(17,17,16,.04); box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -10px rgba(17,17,16,.18); }
.lnav__next { background: var(--ink); color: #fff; box-shadow: 0 10px 30px -12px rgba(17,17,16,.45); }
.lnav__btns a:hover { transform: translateY(-1px); }
.lnav__btns a[aria-disabled="true"] { opacity: .35; pointer-events: none; }

/* ── responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
    .lbar { grid-template-columns: auto 1fr auto; gap: 12px; }
    .menu { overflow-x: auto; scrollbar-width: none; max-width: 100%; }
    .menu::-webkit-scrollbar { display: none; }
    .menu a { height: 36px; padding: 0 12px; font-size: 13px; white-space: nowrap; }
    .slide { grid-template-columns: 1fr; gap: 28px; }
    .slide .lead { max-width: none; }
    .slide__body { padding-top: 0; }
    .facts { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 640px) {
    .lbar__home span { display: none; }
    .facts { grid-template-columns: 1fr; }
    .lnav { grid-template-columns: 1fr auto; }
    .lnav__dots { display: none; }
    .lnav__btns a { height: 48px; padding: 0 18px; font-size: 15px; }
    .lnav__btns a span { display: none; }
}
@media (prefers-reduced-motion: reduce) { .slide, .slide.is-active > * { transition: none; animation: none; } }

/* ── Methodology page ───────────────────────────────────────────────────── */
.meth { max-width: 1120px; width: 100%; margin: 0 auto; padding: clamp(28px, 5vh, 72px) 0 40px; }
.meth__hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(32px, 6vw, 110px); align-items: center; padding-bottom: clamp(40px, 6vw, 80px); border-bottom: 1px solid rgba(17,17,16,.08); margin-bottom: clamp(40px, 6vw, 80px); }
.meth__hero h1 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(46px, 5.2vw, 88px); line-height: .98; letter-spacing: -0.025em; margin: 0 0 22px; color: var(--ink); }
.meth__hero h1 sup { font-size: .3em; vertical-align: top; position: relative; top: .45em; letter-spacing: 0; font-family: var(--font-sans); font-weight: 500; }
.meth__hero .lead { font-size: clamp(18px, 1.35vw, 23px); font-weight: 300; line-height: 1.5; color: var(--ink-soft); margin: 0; max-width: 44ch; }
.meth__index { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.meth__index a { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 16px; background: #fff; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -18px rgba(17,17,16,.25); font-size: 17px; font-weight: 500; color: var(--ink); transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.meth__index a:hover { transform: translateX(4px); }
.meth__index i { font-style: normal; font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute); }

.principle { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(32px, 6vw, 110px); padding: 0 0 clamp(44px, 6vw, 88px); margin-bottom: clamp(44px, 6vw, 88px); border-bottom: 1px solid rgba(17,17,16,.08); scroll-margin-top: 40px; }
.principle__head { position: sticky; top: 40px; align-self: start; }
.principle__num { display: inline-block; font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; color: var(--ink-mute); margin-bottom: 18px; }
.principle h2 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(36px, 3.8vw, 62px); line-height: 1.02; letter-spacing: -0.025em; margin: 0 0 14px; color: var(--ink); }
.principle__tag { font-size: clamp(17px, 1.25vw, 21px); font-weight: 400; color: var(--ink-soft); margin: 0; letter-spacing: -0.01em; }
.principle__body p { font-size: clamp(16.5px, 1.15vw, 19px); font-weight: 300; line-height: 1.65; color: var(--ink-soft); margin: 0 0 1.2em; max-width: 58ch; }
.principle__body p b, .principle__body li b { font-weight: 600; color: var(--ink); }
.principle__body .ticks { margin: 0 0 26px; }
.principle__outcome { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: baseline; background: #fff; border-radius: 16px; padding: 16px 20px; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -18px rgba(17,17,16,.25); font-weight: 400 !important; color: var(--ink) !important; max-width: none !important; }
.principle__outcome span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); }

.meth__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: clamp(44px, 6vw, 88px); }
.meth__card { background: #fff; border-radius: 22px; padding: clamp(24px, 3vw, 40px); box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 14px 40px -22px rgba(17,17,16,.3); }
.meth__card-eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); margin: 0 0 10px; }
.meth__card h3 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(30px, 2.8vw, 44px); letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1.05; }
.meth__card > p { font-size: 16.5px; font-weight: 300; line-height: 1.6; color: var(--ink-soft); margin: 0 0 18px; }
.meth__card .ticks li { font-size: 15.5px; }

.meth__cta { text-align: center; padding: clamp(32px, 5vw, 64px) 20px; }
.meth__cta h2 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(34px, 3.6vw, 56px); letter-spacing: -0.025em; margin: 0 0 12px; }
.meth__cta p { font-size: 17.5px; font-weight: 300; color: var(--ink-soft); line-height: 1.55; max-width: 52ch; margin: 0 auto 26px; }
.meth__cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.meth__cta-btns .btn-dark, .meth__cta-btns .btn-login { height: 54px; padding: 0 26px; font-size: 16px; }

@media (max-width: 1000px) {
    .meth__hero { grid-template-columns: 1fr; }
    .principle { grid-template-columns: 1fr; gap: 24px; }
    .principle__head { position: static; }
    .meth__pair { grid-template-columns: 1fr; }
}

/* ── Scorecard (quiz + results) ─────────────────────────────────────────── */
.sc { max-width: 1120px; width: 100%; margin: 0 auto; padding: clamp(24px, 4vh, 56px) 0 40px; }
.sc-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 110px); align-items: center; min-height: 60vh; }
.sc-intro h1 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(46px, 5.2vw, 88px); line-height: .98; letter-spacing: -0.025em; margin: 0 0 22px; color: var(--ink); }
.sc-intro .lead { font-size: clamp(18px, 1.35vw, 23px); font-weight: 300; line-height: 1.5; color: var(--ink-soft); margin: 0 0 28px; max-width: 44ch; }
.sc-intro .meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-mute); margin: 0 0 0 18px; }
.sc-intro .btn-dark { height: 56px; padding: 0 30px; font-size: 16.5px; }
.sc-pillars { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.sc-pillars li { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: 16px; padding: 16px 20px; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -18px rgba(17,17,16,.25); font-size: 16px; font-weight: 500; }
.sc-pillars i { font-style: normal; font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute); }
.sc-pillars span { color: var(--ink-mute); font-weight: 400; margin-left: auto; font-size: 13px; }

.sc-q { max-width: 760px; margin: 0 auto; padding-top: clamp(12px, 3vh, 40px); }
.sc-q__prog { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.sc-q__prog span { font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute); letter-spacing: .04em; }
.sc-q__prog i { flex: 1; height: 3px; border-radius: 2px; background: rgba(17,17,16,.1); position: relative; overflow: hidden; }
.sc-q__prog i::after { content: ""; position: absolute; inset: 0; width: var(--p, 0%); background: var(--ink); transition: width .4s cubic-bezier(.2,.7,.2,1); }
.sc-q h2 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(32px, 3.4vw, 50px); line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 8px; color: var(--ink); }
.sc-q__help { font-size: 15px; color: var(--ink-mute); margin: 0 0 24px; }
.sc-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0 0 24px; }
.sc-opts--wide { grid-template-columns: 1fr; }
.sc-opt { display: flex; align-items: center; gap: 14px; text-align: left; width: 100%; background: #fff; border: 1.5px solid transparent; border-radius: 16px; padding: 15px 18px; font: inherit; font-size: 16px; font-weight: 500; color: var(--ink); cursor: pointer; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -20px rgba(17,17,16,.25); transition: border-color .2s, transform .2s cubic-bezier(.2,.7,.2,1); }
.sc-opt:hover { transform: translateY(-1px); }
.sc-opt i { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(17,17,16,.25); display: inline-flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.sc-opt i svg { width: 12px; height: 12px; opacity: 0; }
.sc-opt.is-on { border-color: var(--ink); }
.sc-opt.is-on i { background: var(--ink); border-color: var(--ink); color: #fff; }
.sc-opt.is-on i svg { opacity: 1; }
.sc-opt small { display: block; font-size: 13px; font-weight: 400; color: var(--ink-mute); margin-top: 2px; }
.sc-q__nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sc-q__nav .lnav__btns { justify-self: auto; }
.sc-q__nav .lnav__btns a[aria-disabled="true"] { opacity: .35; pointer-events: none; }
.sc-q__key { font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute); }

/* results */
.sc-r__head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(24px, 4vw, 64px); align-items: end; padding-bottom: clamp(28px, 4vw, 48px); border-bottom: 1px solid rgba(17,17,16,.08); margin-bottom: clamp(28px, 4vw, 48px); }
.sc-r__eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); margin: 0 0 14px; }
.sc-r__head h1 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(40px, 4.6vw, 76px); line-height: 1; letter-spacing: -0.025em; margin: 0 0 16px; color: var(--ink); }
.sc-r__head .lead { font-size: clamp(17px, 1.25vw, 21px); font-weight: 300; line-height: 1.5; color: var(--ink-soft); margin: 0; max-width: 52ch; }
.sc-score { text-align: center; background: #fff; border-radius: 24px; padding: 24px 32px; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 14px 40px -22px rgba(17,17,16,.3); min-width: 200px; }
.sc-score b { display: block; font-family: var(--font-serif); font-weight: 400; font-size: 72px; line-height: 1; letter-spacing: -0.04em; color: var(--ink); }
.sc-score b small { font-size: 22px; color: var(--ink-mute); letter-spacing: 0; }
.sc-score span { display: block; margin-top: 6px; font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.sc-score em { display: block; font-style: normal; margin-top: 10px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); }

.sc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: clamp(28px, 4vw, 48px); }
.sc-card { background: #fff; border-radius: 22px; padding: 26px 28px; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 14px 40px -22px rgba(17,17,16,.3); display: grid; gap: 12px; }
.sc-card--wide { grid-column: 1 / -1; }
.sc-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sc-card__top i { font-style: normal; font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute); }
.sc-card h3 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(26px, 2.4vw, 36px); letter-spacing: -0.02em; margin: 0; line-height: 1.08; }
.sc-card__bar { height: 4px; border-radius: 2px; background: rgba(17,17,16,.08); overflow: hidden; }
.sc-card__bar i { display: block; height: 100%; width: var(--p); background: var(--ink); border-radius: 2px; transform-origin: left; animation: growx 1s cubic-bezier(.2,.7,.2,1) both; }
.sc-card p { margin: 0; font-size: 15.5px; font-weight: 300; line-height: 1.6; color: var(--ink-soft); }
.sc-card p b { font-weight: 600; color: var(--ink); }
.sc-card__grow { margin-top: 4px; padding-top: 14px; border-top: 1px solid rgba(17,17,16,.07); display: grid; gap: 6px; }
.sc-card__grow span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); }
.sc-card__grow p { color: var(--ink); font-weight: 400; }
.chip--status { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: .02em; }
.chip--priority { background: #fff1f2; color: #be123c; }
.chip--opportunity { background: #fffbeb; color: #b45309; }
.chip--ontrack { background: #ecfdf5; color: #047857; }

.sc-impact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sc-impact .fact b { font-size: clamp(30px, 2.8vw, 46px); }
.sc-impact .fact span { font-size: 13px; line-height: 1.4; }
.sc-note { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-mute); margin: 10px 0 0; line-height: 1.5; }

.sc-r__cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; background: var(--ink); color: #fff; border-radius: 24px; padding: clamp(24px, 3.4vw, 40px); margin-bottom: 16px; }
.sc-r__cta h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(28px, 2.8vw, 42px); letter-spacing: -0.02em; margin: 0 0 8px; line-height: 1.08; }
.sc-r__cta p { margin: 0; font-size: 16px; font-weight: 300; color: rgba(255,255,255,.72); line-height: 1.55; max-width: 50ch; }
.sc-r__cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.sc-r__cta .btn-login { height: 52px; }
.sc-r__cta .btn-ghost { display: inline-flex; align-items: center; height: 52px; padding: 0 24px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: 16px; font-weight: 500; }
.sc-r__foot { display: flex; gap: 18px; align-items: center; font-size: 13.5px; color: var(--ink-mute); }
.sc-r__foot a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(17,17,16,.3); text-underline-offset: 4px; }

@media (max-width: 900px) {
    .sc-intro { grid-template-columns: 1fr; min-height: 0; }
    .sc-opts { grid-template-columns: 1fr; }
    .sc-r__head { grid-template-columns: 1fr; }
    .sc-grid { grid-template-columns: 1fr; }
    .sc-impact { grid-template-columns: 1fr; }
    .sc-r__cta { grid-template-columns: 1fr; }
}

/* ── Find your growth — intro with fanned agent cards ──────────────────── */
.fg { text-align: center; padding: clamp(24px, 5vh, 64px) 0 24px; overflow-x: clip; }
.fg h1 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(52px, 6.4vw, 108px); line-height: 1; letter-spacing: -0.03em; margin: 0 0 18px; color: var(--ink); }
.fg__sub { font-size: clamp(18px, 1.5vw, 26px); font-weight: 300; line-height: 1.45; color: var(--ink-soft); margin: 0 auto 34px; max-width: 30ch; letter-spacing: -0.01em; }
.fg__start { height: 56px; padding: 0 30px; font-size: 16.5px; }
.fg__reset { margin: 14px 0 0; font-size: 13.5px; }
.fg__reset a, .sc-q__key a { color: var(--ink-mute); text-decoration: underline; text-underline-offset: 3px; }
.fg__reset a:hover, .sc-q__key a:hover { color: var(--ink); }
.fg__fan { position: relative; height: clamp(300px, 25vw, 380px); margin: clamp(44px, 5.5vw, 84px) auto 0; width: min(100%, 900px); }
.fg__card {
    position: absolute; left: 50%; bottom: 30px; width: clamp(220px, 22vw, 290px); height: clamp(242px, 24.2vw, 319px);
    border-radius: 28px; padding: 12% 8% 9%;
    background: #fff; border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 2px 3px rgba(17,17,16,.03), 0 30px 60px -24px rgba(17,17,16,.35), 0 60px 120px -40px rgba(17,17,16,.2);
    transform-origin: 50% 100%;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.fg__card--warm    { background: linear-gradient(165deg, #fff 0%, #fbf4ee 60%, #f7ece6 100%); }
.fg__card--neutral { background: linear-gradient(165deg, #fff 0%, #f7f6f8 60%, #f1eff3 100%); }
.fg__card--cool    { background: linear-gradient(165deg, #fff 0%, #f1f4fb 60%, #e9eef9 100%); }
.fg__card--1 { transform: translateX(-50%) translateX(-62%) rotate(-9deg) translateY(14px); z-index: 1; animation: fan1 1.1s cubic-bezier(.2,.7,.2,1) both; }
.fg__card--2 { transform: translateX(-50%) translateY(-22px); z-index: 3; animation: fan2 1.1s cubic-bezier(.2,.7,.2,1) both; }
.fg__card--3 { transform: translateX(-50%) translateX(62%) rotate(9deg) translateY(14px); z-index: 2; animation: fan3 1.1s cubic-bezier(.2,.7,.2,1) both; }
@keyframes fan1 { from { transform: translateX(-50%) translateY(60px); opacity: 0; } to { transform: translateX(-50%) translateX(-62%) rotate(-9deg) translateY(14px); opacity: 1; } }
@keyframes fan2 { from { transform: translateX(-50%) translateY(60px); opacity: 0; } to { transform: translateX(-50%) translateY(-22px); opacity: 1; } }
@keyframes fan3 { from { transform: translateX(-50%) translateY(60px); opacity: 0; } to { transform: translateX(-50%) translateX(62%) rotate(9deg) translateY(14px); opacity: 1; } }
/* WebKit ignores aspect-ratio on %-width flex items in a column container
   (the circle stretched into an oval and the taller card covered the Start
   button in Safari) — size the circles with the %-padding trick instead. */
.fg__avatar {
    position: relative; width: 38%; height: 0; padding-bottom: 38%; flex: none; border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #fff 0%, #f3f1f6 55%, #e6e2ee 100%);
    box-shadow: 0 0 0 4px #fff, 0 10px 24px -12px rgba(17,17,16,.35);
    color: #5b21b6; margin-bottom: 8%;
}
.fg__avatar > svg { position: absolute; inset: 0; margin: auto; width: 44%; height: 44%; }
.fg__badge { position: absolute; right: -6%; bottom: -2%; width: 34%; height: 0; padding-bottom: 34%; border-radius: 50%; background: linear-gradient(135deg, #ff1e80 0%, #9c32b0 50%, #6000ff 100%); color: #fff; box-shadow: 0 0 0 3px #fff, 0 8px 18px -8px rgba(96,0,255,.5); }
.fg__badge svg { position: absolute; inset: 0; margin: auto; width: 50%; height: 50%; }
.fg__name { white-space: nowrap; font-family: var(--font-display); font-weight: 600; font-size: clamp(14px, 1.1vw, 16px); letter-spacing: -0.01em; color: var(--ink); margin-bottom: 7%; }
.fg__lines { width: 80%; display: grid; gap: 9%; margin-bottom: auto; }
.fg__lines i { display: block; height: 9px; border-radius: 6px; background: rgba(17,17,16,.09); }
.fg__lines i:nth-child(1) { width: 100%; } .fg__lines i:nth-child(2) { width: 62%; margin: 0 auto; } .fg__lines i:nth-child(3) { width: 84%; margin: 0 auto; }
.fg__stats { display: flex; gap: 14%; justify-content: center; width: 100%; margin-top: 10%; }
.fg__stats b { display: block; font-size: clamp(18px, 1.8vw, 26px); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1; }
.fg__stats span { display: block; margin-top: 4px; white-space: nowrap; font-size: 10px; font-weight: 600; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); }
@media (max-width: 640px) { .fg__fan { height: 300px; } .fg__card { width: 200px; height: 220px; } }
@media (prefers-reduced-motion: reduce) { .fg__card { animation: none !important; } }

/* ── footer (all pages) ─────────────────────────────────────────────────── */
.foot nav a { color: var(--ink-mute); }
.foot nav a:hover { color: var(--ink); }
.foot__copy, .foot__copy span { color: var(--ink-mute); margin: 0 !important; opacity: 1 !important; }

/* dark variant of the logo dropdown (homepage) */
.gmenu--dark .gmenu__btn { color: var(--ink); }
.gmenu--dark .gmenu__logo { height: 24px; }

/* ── standard content pages (About, Agencies) ───────────────────────────── */
.std { max-width: 1120px; width: 100%; margin: 0 auto; padding: clamp(28px, 5vh, 72px) 0 40px; }
.std__hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 6vw, 110px); align-items: center; padding-bottom: clamp(40px, 6vw, 80px); border-bottom: 1px solid rgba(17,17,16,.08); margin-bottom: clamp(40px, 6vw, 80px); }
.std__hero h1 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(44px, 4.8vw, 80px); line-height: 1; letter-spacing: -0.025em; margin: 0 0 22px; color: var(--ink); }
.std__hero .lead { font-size: clamp(18px, 1.35vw, 23px); font-weight: 300; line-height: 1.5; color: var(--ink-soft); margin: 0; max-width: 46ch; }
.facts--stack { grid-template-columns: 1fr; margin: 0; }
.std__row { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(32px, 6vw, 110px); padding-bottom: clamp(40px, 5vw, 72px); margin-bottom: clamp(40px, 5vw, 72px); border-bottom: 1px solid rgba(17,17,16,.08); align-items: start; }
.std__side { position: sticky; top: 40px; }
.std__side h2 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(32px, 3.4vw, 54px); line-height: 1.04; letter-spacing: -0.025em; margin: 0; color: var(--ink); }
.std__side h2 sup { font-size: .35em; vertical-align: top; position: relative; top: .4em; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0; }
.std__tag { margin: 12px 0 0; font-size: 16px; color: var(--ink-mute); }
.std__copy p { font-size: clamp(16.5px, 1.15vw, 19px); font-weight: 300; line-height: 1.65; color: var(--ink-soft); margin: 0 0 1.2em; max-width: 58ch; }
.std__copy p b, .std__copy li b { font-weight: 600; color: var(--ink); }
.std__copy a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(17,17,16,.3); text-underline-offset: 4px; }
.std__copy .ticks { margin-top: 4px; }
.std__copy sup { font-size: .55em; vertical-align: top; position: relative; top: .2em; }
.meth__pair--3 { grid-template-columns: repeat(3, 1fr); }
.meth__pair--3 .meth__card { padding: 22px 22px 24px; }
.meth__pair--3 .meth__card h3 { font-size: clamp(24px, 2vw, 30px); }
.meth__pair--3 .meth__card > p { font-size: 15px; margin: 0; }
@media (max-width: 1000px) {
    .std__hero, .std__row { grid-template-columns: 1fr; }
    .std__side { position: static; }
    .meth__pair--3 { grid-template-columns: 1fr; }
}

/* ── legal documents (Terms, Privacy) ───────────────────────────────────── */
.doc { max-width: 1120px; width: 100%; margin: 0 auto; padding: clamp(28px, 5vh, 64px) 0 40px; }
.doc__head { padding-bottom: clamp(28px, 4vw, 48px); border-bottom: 1px solid rgba(17,17,16,.08); margin-bottom: clamp(28px, 4vw, 48px); }
.doc__eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); margin: 0 0 14px; }
.doc__head h1 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(40px, 4.6vw, 72px); line-height: 1; letter-spacing: -0.025em; margin: 0 0 14px; color: var(--ink); }
.doc__meta { margin: 0; font-size: 14px; color: var(--ink-mute); }
.doc__grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.doc__toc { position: sticky; top: 32px; max-height: calc(100vh - 64px); overflow: auto; }
.doc__toc p { font-family: var(--font-mono); font-size: 11px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); margin: 0 0 10px; }
.doc__toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.doc__toc a { display: block; padding: 6px 10px; border-radius: 8px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.35; }
.doc__toc a:hover { background: rgba(17,17,16,.05); color: var(--ink); }
.doc__body { max-width: 72ch; }
.doc__body section { scroll-margin-top: 32px; padding-bottom: 28px; }
.doc__body h2 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(26px, 2.4vw, 34px); letter-spacing: -0.02em; line-height: 1.1; margin: 18px 0 14px; color: var(--ink); }
.doc__body h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin: 22px 0 8px; color: var(--ink); }
.doc__body p, .doc__body li { font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--ink-soft); }
.doc__body p { margin: 0 0 1em; }
.doc__body ul, .doc__body ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.doc__body li { margin-bottom: .4em; }
.doc__body li::marker { color: var(--ink-mute); }
.doc__body strong, .doc__body b { font-weight: 600; color: var(--ink); }
.doc__body a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(17,17,16,.3); text-underline-offset: 3px; }
.doc__body table { width: 100%; border-collapse: collapse; font-size: 14.5px; margin: 0 0 1.4em; }
.doc__body th, .doc__body td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(17,17,16,.08); vertical-align: top; font-weight: 300; line-height: 1.5; }
.doc__body th { font-weight: 600; color: var(--ink); }
.doc__body .legal-card, .doc__body aside, .doc__body blockquote { background: #fff; border-radius: 14px; padding: 16px 18px; margin: 0 0 1.2em; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -18px rgba(17,17,16,.25); }
@media (max-width: 900px) { .doc__grid { grid-template-columns: 1fr; } .doc__toc { position: static; max-height: none; } }

/* results link */
.sc-r__foot { flex-wrap: wrap; row-gap: 10px; }
.sc-link { display: inline-flex; align-items: center; gap: 8px; background: #fff; border-radius: 999px; padding: 6px 6px 6px 14px; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -20px rgba(17,17,16,.25); }
.sc-link__lbl { font-size: 12px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.sc-link__url { font: inherit; font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); border: 0; background: transparent; width: clamp(180px, 24vw, 340px); outline: none; text-overflow: ellipsis; }
.sc-link__copy { font: inherit; font-size: 12.5px; font-weight: 600; color: #fff; background: var(--ink); border: 0; border-radius: 999px; height: 32px; padding: 0 14px; cursor: pointer; }
.sc-link--muted { background: transparent; box-shadow: none; padding-left: 0; color: var(--ink-mute); font-size: 13.5px; }

/* ── homepage variant B: glass agent deck inside the workspace ────────── */
.gd { position: relative; flex: 1; min-height: 0; overflow: hidden; border-radius: 18px; }
.gd__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #eef0f5 0%, #e6e9f0 55%, #e9e6f0 100%); }
.gd__bg i { position: absolute; border-radius: 50%; filter: blur(48px); opacity: .75; }
.gd__bg i:nth-child(1) { width: 420px; height: 420px; left: -8%; top: -30%; background: #fbe3ef; }
.gd__bg i:nth-child(2) { width: 480px; height: 480px; right: -10%; bottom: -40%; background: #e0dcf9; }
.gd__bg i:nth-child(3) { width: 300px; height: 300px; left: 40%; top: 50%; background: #fff; opacity: .6; }
.gd__card {
    position: absolute; left: 50%; top: 50%; width: 560px; height: 412px; padding: 24px 26px 18px; border-radius: 22px;
    display: flex; flex-direction: column;
    background: rgba(255,255,255,.42);
    -webkit-backdrop-filter: blur(18px) saturate(1.2); backdrop-filter: blur(18px) saturate(1.2);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 24px 60px -24px rgba(15,23,42,.28);
    transition: transform .9s cubic-bezier(.2,.7,.2,1), opacity .9s, filter .9s;
    will-change: transform;
}
.gd__card[data-pos="0"] { transform: translate(-50%, -50%) scale(1); z-index: 3; opacity: 1; filter: none; }
.gd__card[data-pos="1"] { transform: translate(calc(-50% + 190px), calc(-50% + 22px)) scale(.84); z-index: 2; opacity: .7; filter: blur(.3px); }
.gd__card[data-pos="2"] { transform: translate(calc(-50% - 190px), calc(-50% + 22px)) scale(.84); z-index: 1; opacity: .7; filter: blur(.3px); }
.gd__card[data-pos="3"] { transform: translate(calc(-50% + 380px), calc(-50% + 30px)) scale(.74); z-index: 0; opacity: 0; pointer-events: none; }
.gd__card[data-pos="4"] { transform: translate(calc(-50% - 380px), calc(-50% + 30px)) scale(.74); z-index: 0; opacity: 0; pointer-events: none; }
.gd__card[data-pos="5"] { transform: translate(-50%, calc(-50% + 40px)) scale(.7); z-index: 0; opacity: 0; pointer-events: none; transition: none; }
.gd__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.gd__head h3 { margin: 0; font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.015em; color: #0f172a; }
.gd__sub { font-size: 12.5px; color: #64748b; font-weight: 500; }
.gd__rows { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.gd__rows li {
    display: flex; align-items: center; gap: 12px; height: 50px; padding: 0 14px 0 10px; border-radius: 12px;
    background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8);
    transition: background .6s, transform .6s;
}
.gd__ico { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(255,30,128,.10), rgba(96,0,255,.10)); color: #6d28d9; }
.gd__ico svg { width: 14px; height: 14px; }
.gd__txt { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.2; }
.gd__txt b { font-size: 13px; font-weight: 600; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gd__txt span { font-size: 11.5px; color: #64748b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gd__val { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: #0f172a; white-space: nowrap; padding: 4px 9px; border-radius: 999px; background: rgba(15,23,42,.05); }
.gd__val--ok { background: #ecfdf5; color: #047857; }
.gd__val--down { background: #fff1f2; color: #be123c; }
.gd__val--warn { background: #fffbeb; color: #b45309; }
.gd__val--brand { background: #f5f3ff; color: #6d28d9; }
.gd__val--mute { background: #f1f5f9; color: #64748b; }
.gd__foot { margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(15,23,42,.08); font-size: 12.5px; color: #475569; }
.gd__foot b { color: #0f172a; font-weight: 600; }
/* subtle sweep: one row at a time brightens in the focused card */
.gd__card.is-focus .gd__rows li { animation: gd-row 7s ease-in-out infinite; }
.gd__card.is-focus .gd__rows li:nth-child(1) { animation-delay: 0s; }
.gd__card.is-focus .gd__rows li:nth-child(2) { animation-delay: 1.1s; }
.gd__card.is-focus .gd__rows li:nth-child(3) { animation-delay: 2.2s; }
.gd__card.is-focus .gd__rows li:nth-child(4) { animation-delay: 3.3s; }
.gd__card.is-focus .gd__rows li:nth-child(5) { animation-delay: 4.4s; }
@keyframes gd-row { 0%, 12%, 100% { background: rgba(255,255,255,.62); transform: none; } 6% { background: rgba(255,255,255,.96); transform: translateX(3px); } }
@media (prefers-reduced-motion: reduce) { .gd__card, .gd__rows li { animation: none !important; transition: none !important; } }

/* deck: titles with product mark */
.gd__head h3 em { font-style: normal; font-weight: 500; font-size: 12px; color: #6d28d9; margin-left: 8px; letter-spacing: 0; }
.gd__head h3 em sup { font-size: .55em; line-height: 0; vertical-align: super; position: static; margin-left: 1px; }

/* Cost Tracking — two-column cost ledger */
.gd__costs { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 10px; }
.gd__costs li { display: flex; align-items: center; justify-content: space-between; gap: 10px; height: 38px; padding: 0 12px; border-radius: 10px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); font-size: 12.5px; color: #334155; }
.gd__costs b { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: #0f172a; }
.gd__costs b.plus { color: #047857; }
.gd__card.is-focus .gd__costs li { opacity: 0; animation: gd-in .5s cubic-bezier(.2,.7,.2,1) forwards; }
.gd__card.is-focus .gd__costs li:nth-child(n) { animation-delay: calc(.12s + var(--i, 0) * 0s); }
.gd__card.is-focus .gd__costs li:nth-child(1) { animation-delay: .10s; } .gd__card.is-focus .gd__costs li:nth-child(2) { animation-delay: .18s; }
.gd__card.is-focus .gd__costs li:nth-child(3) { animation-delay: .26s; } .gd__card.is-focus .gd__costs li:nth-child(4) { animation-delay: .34s; }
.gd__card.is-focus .gd__costs li:nth-child(5) { animation-delay: .42s; } .gd__card.is-focus .gd__costs li:nth-child(6) { animation-delay: .50s; }
.gd__card.is-focus .gd__costs li:nth-child(7) { animation-delay: .58s; } .gd__card.is-focus .gd__costs li:nth-child(8) { animation-delay: .66s; }
.gd__card.is-focus .gd__costs li:nth-child(9) { animation-delay: .74s; } .gd__card.is-focus .gd__costs li:nth-child(10) { animation-delay: .82s; }
@keyframes gd-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.gd__foot--total { display: flex; align-items: baseline; gap: 10px; }
.gd__foot--total span { color: #475569; }
.gd__foot--total b { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: #0f172a; font-variant-numeric: tabular-nums; }
.gd__foot--total i { font-style: normal; color: #64748b; margin-left: auto; font-size: 12px; }

/* Sale Impact — chart + KPI tiles */
.gd__chart { position: relative; height: 150px; padding: 10px 12px 6px; border-radius: 14px; background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.8); }
.gd__chart svg { width: 100%; height: 100%; display: block; overflow: visible; }
.gd__legend { position: absolute; top: 10px; left: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; color: #64748b; font-weight: 500; }
.gd__legend i { width: 14px; height: 2px; border-radius: 2px; display: inline-block; margin: 0 2px 0 8px; }
.gd__legend i:first-child { margin-left: 0; }
.gd__legend-a { background: #7c3aed; } .gd__legend-b { background: #94a3b8; }
.gd__card.is-focus .gd__line { stroke-dasharray: 900; stroke-dashoffset: 900; animation: gd-draw 2.2s cubic-bezier(.2,.7,.2,1) .2s forwards; }
.gd__card.is-focus .gd__area { opacity: 0; animation: gd-fade .9s 1.6s forwards; }
.gd__card.is-focus .gd__sale-win { opacity: 0; animation: gd-fade .9s .4s forwards; }
@keyframes gd-draw { to { stroke-dashoffset: 0; } }
@keyframes gd-fade { to { opacity: 1; } }
.gd__kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.gd__kpis div { padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); }
.gd__kpis span { display: block; font-size: 11px; color: #64748b; font-weight: 500; }
.gd__kpis b { display: block; font-size: 16px; font-weight: 600; letter-spacing: -0.02em; color: #0f172a; margin: 2px 0; white-space: nowrap; font-variant-numeric: tabular-nums; }
.gd__kpis i { display: block; font-style: normal; font-size: 10.5px; color: #64748b; }
.gd__kpis i.up { color: #047857; font-weight: 600; }
.gd__card.is-focus .gd__kpis div { opacity: 0; animation: gd-in .5s cubic-bezier(.2,.7,.2,1) forwards; }
.gd__card.is-focus .gd__kpis div:nth-child(1) { animation-delay: 1.8s; } .gd__card.is-focus .gd__kpis div:nth-child(2) { animation-delay: 1.95s; }
.gd__card.is-focus .gd__kpis div:nth-child(3) { animation-delay: 2.1s; } .gd__card.is-focus .gd__kpis div:nth-child(4) { animation-delay: 2.25s; }

/* Profit Control — slider + 3-step sequence */
.gd__slider { padding: 14px 16px 12px; border-radius: 14px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); margin-bottom: 8px; }
.gd__slider-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; font-size: 12.5px; color: #475569; font-weight: 500; }
.gd__slider-top b { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: #0f172a; font-variant-numeric: tabular-nums; }
.gd__track { position: relative; height: 6px; border-radius: 3px; background: rgba(15,23,42,.08); }
.gd__fill { position: absolute; left: 0; top: 0; bottom: 0; width: 23.3%; border-radius: 3px; background: linear-gradient(90deg, #ff1e80, #9c32b0 60%, #6000ff); }
.gd__thumb { position: absolute; top: 50%; left: 23.3%; width: 22px; height: 22px; margin: -11px 0 0 -11px; border-radius: 50%; background: #fff; border: 2px solid #6d28d9; box-shadow: 0 4px 12px -4px rgba(96,0,255,.5); }
.gd__card.is-focus .gd__fill { animation: gd-fill 1.6s cubic-bezier(.2,.7,.2,1) .6s forwards; }
.gd__card.is-focus .gd__thumb { animation: gd-thumb 1.6s cubic-bezier(.2,.7,.2,1) .6s forwards; }
@keyframes gd-fill { to { width: 33.3%; } }
@keyframes gd-thumb { to { left: 33.3%; } }
.gd__ticks { display: flex; justify-content: space-between; margin-top: 8px; font-size: 10px; color: #94a3b8; font-weight: 500; }
.gd__steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.gd__step { display: flex; align-items: center; gap: 12px; height: 50px; padding: 0 14px; border-radius: 12px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); opacity: .38; transition: opacity .5s; }
.gd__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(15,23,42,.15); flex-shrink: 0; }
.gd__step-val { opacity: 0; transition: opacity .4s; }
.gd__card.is-focus .gd__step--1 { animation: gd-on .4s 2.3s forwards; }
.gd__card.is-focus .gd__step--1 .gd__dot { animation: gd-pulse 1s 2.3s 3; background: #7c3aed; }
.gd__card.is-focus .gd__step--1 .gd__step-val--busy { animation: gd-blink 2.6s 2.3s forwards; }
.gd__card.is-focus .gd__step--1 .gd__step-val--done { animation: gd-fade .3s 4.2s forwards; }
.gd__step-val--done { position: absolute; right: 14px; }
.gd__step { position: relative; }
@keyframes gd-blink { 0% { opacity: 0; } 10%, 85% { opacity: 1; } 100% { opacity: 0; } }
.gd__card.is-focus .gd__step--2 { animation: gd-on .4s 4.2s forwards; }
.gd__card.is-focus .gd__step--2 .gd__dot { background: #10b981; }
.gd__card.is-focus .gd__step--2 .gd__step-val { animation: gd-fade .3s 4.4s forwards; }
.gd__card.is-focus .gd__step--3 { animation: gd-on .4s 5.4s forwards; }
.gd__card.is-focus .gd__step--3 .gd__dot { background: #10b981; }
.gd__card.is-focus .gd__step--3 .gd__step-val { animation: gd-fade .3s 5.6s forwards; }
@keyframes gd-on { to { opacity: 1; } }
@keyframes gd-pulse { 0% { box-shadow: 0 0 0 0 rgba(124,58,237,.45); } 100% { box-shadow: 0 0 0 8px transparent; } }

/* ── Agencies hero: Find-page format + homepage glass deck ───────────────── */
.fg--agencies { padding-bottom: 0; }
.fg--agencies .fg__sub { max-width: 44ch; }
.fg--agencies .meth__cta-btns { justify-content: center; }
.ag-stage { text-align: left; position: relative; height: 520px; margin: clamp(36px, 5vw, 64px) auto clamp(56px, 7vw, 104px); max-width: 1120px; border-radius: 28px; overflow: hidden; box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 30px 80px -40px rgba(15,23,42,.35); }
.ag-stage .gd { position: absolute; inset: 0; border-radius: 28px; }

/* Title: per-letter drop-in (random order) + one gradient band flowing left→right across all letters */
@property --fx-x { syntax: '<length>'; inherits: true; initial-value: 0px; }
.fx-title { position: relative; display: inline-block; --fx-x: 0px; line-height: 1.12; }
.fx-word { display: inline-block; white-space: nowrap; }
.fx-letter {
    display: inline-block; opacity: 0; transform: translateY(-.45em);
    padding: .12em .04em .26em; margin: -.12em -.04em -.26em; /* bleed so ascenders/descenders aren't clipped by the text clip box */
    color: transparent; -webkit-text-fill-color: transparent;
    background-image: linear-gradient(100deg, var(--ink) 0%, var(--ink) 34%, #8a2a5c 42%, #5c2a86 50%, #3a2a96 58%, var(--ink) 66%, var(--ink) 100%);
    background-size: calc(var(--fx-w, 1000px) * 3) 100%;
    background-position: calc(var(--fx-x) - var(--fx-l, 0px)) 0;
    background-repeat: no-repeat;
    -webkit-background-clip: text; background-clip: text;
}
.fx-title.is-on { animation: fx-flow 2.6s cubic-bezier(.45,0,.2,1) .35s forwards; }
.fx-title.is-on .fx-letter { animation: fx-letter .8s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes fx-letter { from { opacity: 0; transform: translateY(-.45em); } 55% { opacity: 1; } to { opacity: 1; transform: none; } }
@keyframes fx-flow {
    0%   { --fx-x: calc(var(--fx-w, 1000px) * -2); filter: drop-shadow(0 0 0 rgba(156,50,176,0)); }
    30%  { filter: drop-shadow(0 0 16px rgba(120,60,170,.22)); }
    75%  { filter: drop-shadow(0 0 16px rgba(120,60,170,.16)); }
    100% { --fx-x: 0px; filter: drop-shadow(0 0 0 rgba(156,50,176,0)); }
}
@media (prefers-reduced-motion: reduce) { .fx-letter { opacity: 1; transform: none; animation: none !important; background: none; color: var(--ink); -webkit-text-fill-color: initial; } .fx-title.is-on { animation: none; } }

.lbar__apply { justify-self: end; height: 46px; padding: 0 22px; font-size: 15px; }
.std__side .std__lead { font-size: clamp(19px, 1.45vw, 24px); font-weight: 400; color: var(--ink); line-height: 1.45; letter-spacing: -0.012em; margin: 22px 0 0; max-width: 34ch; }

/* ── Agencies: 3 challenges, solved — glass trio on a tinted stage ───────── */
.ch { position: relative; padding: 0 0 clamp(40px, 5vw, 72px); margin-bottom: clamp(40px, 5vw, 72px); border-bottom: 1px solid rgba(17,17,16,.08); }
.ch__head { text-align: center; max-width: 72ch; margin: 0 auto clamp(28px, 3.5vw, 44px); }
.ch__eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .01em; text-transform: none; color: #64748b; margin: 0 0 12px; }
.ch__head h2 { white-space: nowrap; font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(30px, 3.6vw, 56px); line-height: 1.02; letter-spacing: -0.025em; color: #0f172a; margin: 0 0 14px; }
.ch__head p { font-size: clamp(16px, 1.15vw, 18.5px); font-weight: 300; color: #475569; line-height: 1.55; margin: 0; }
.ch__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ch__card {
    display: flex; flex-direction: column; padding: 26px 26px 22px; border-radius: 22px;
    background: rgba(255,255,255,.72); -webkit-backdrop-filter: blur(18px) saturate(1.2); backdrop-filter: blur(18px) saturate(1.2);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 24px 60px -30px rgba(17,17,16,.25);
}
.ch__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: #64748b; margin-bottom: 16px; }
.ch__card h3 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(30px, 2.6vw, 40px); letter-spacing: -0.025em; line-height: 1; color: #0f172a; margin: 0 0 8px; }
.ch__tag { font-size: 14px; font-weight: 500; color: var(--ink); margin: 0 0 14px; }
.ch__text { font-size: 15px; font-weight: 300; line-height: 1.6; color: #475569; margin: 0 0 16px; }
.ch__text sup, .ch__foot sup { font-size: .6em; vertical-align: top; position: relative; top: .2em; }
.ch__list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 8px; }
.ch__list li { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 8px 12px 8px 10px; border-radius: 12px; background: rgba(17,17,16,.035); border: 1px solid rgba(255,255,255,.9); font-size: 13.5px; font-weight: 500; color: #0f172a; line-height: 1.35; }
.ch__list i { flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg, rgba(255,30,128,.10), rgba(96,0,255,.10)); position: relative; }
.ch__list i::after { content: ""; position: absolute; left: 7px; top: 5px; width: 5px; height: 9px; border-right: 1.8px solid #6d28d9; border-bottom: 1.8px solid #6d28d9; transform: rotate(45deg); }
.ch__foot { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(15,23,42,.08); display: flex; align-items: baseline; gap: 8px; font-size: 12.5px; color: #64748b; }
.ch__foot b { font-weight: 600; color: #0f172a; }
@media (max-width: 1000px) { .ch__grid { grid-template-columns: 1fr; } .ch__head h2 { white-space: normal; } }

.std__row--airy { padding-top: clamp(32px, 5vw, 72px); padding-bottom: clamp(64px, 9vw, 128px); margin-bottom: clamp(64px, 9vw, 128px); }
.ag-stage + * , .std--agencies .ag-stage { margin-bottom: clamp(72px, 9vw, 128px); }

/* ── Agencies: Meet your agentic workspace — one card + text ─────────────── */
.mw { padding-bottom: clamp(40px, 5vw, 72px); margin-bottom: clamp(40px, 5vw, 72px); border-bottom: 1px solid rgba(17,17,16,.08); }
.mw__head { text-align: center; max-width: 74ch; margin: 0 auto clamp(28px, 3.5vw, 44px); }
.mw__head h2 { white-space: nowrap; font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(30px, 3.6vw, 56px); line-height: 1.02; letter-spacing: -0.025em; color: var(--ink); margin: 0 0 12px; }
.mw__head p { font-size: clamp(16px, 1.15vw, 18.5px); font-weight: 300; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.mw__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.mw__left { min-width: 0; }
.mw__stage { position: relative; height: 460px; border-radius: 28px; overflow: hidden; box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 30px 80px -40px rgba(15,23,42,.35); }
.mw__stage > .gd--solo { position: absolute; inset: 0; border-radius: 28px; }
.gd--solo .gd__card[data-pos="0"] { transform: translate(-50%, -50%) scale(1); }
.gd--solo .gd__card[data-pos="3"] { transform: translate(calc(-50% + 60px), -50%) scale(.96); opacity: 0; }
.gd--solo .gd__card[data-pos="5"] { transform: translate(calc(-50% - 60px), -50%) scale(.96); opacity: 0; transition: transform .9s cubic-bezier(.2,.7,.2,1), opacity .6s; }

/* name tiles under the card — quiet */
.mw__tabs { display: flex; justify-content: center; gap: 6px; margin: 14px 0 0; flex-wrap: wrap; }
.mw__tab {
    display: inline-flex; align-items: center; height: 32px; padding: 0 7px; border-radius: 999px; border: 1px solid transparent;
    background: transparent; color: var(--ink-mute); cursor: pointer; font: inherit; font-size: 12.5px; font-weight: 500;
    transition: color .25s, background .25s, border-color .25s;
}
.mw__tab i { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; color: currentColor; flex-shrink: 0; opacity: .7; transition: opacity .25s; }
.mw__tab i svg { width: 14px; height: 14px; }
.mw__tab span { max-width: 0; opacity: 0; overflow: hidden; white-space: nowrap; transition: max-width .35s cubic-bezier(.2,.7,.2,1), opacity .25s, margin .35s; }
.mw__tab.is-on { color: var(--ink); background: rgba(17,17,16,.05); }
.mw__tab.is-on i, .mw__tab:hover i { opacity: 1; }
.mw__tab.is-on span, .mw__tab:hover span { max-width: 160px; opacity: 1; margin-left: 6px; }
.mw__tabs:hover .mw__tab.is-on:not(:hover) span { max-width: 0; opacity: 0; margin-left: 0; }
.mw__tab:hover { color: var(--ink); }

/* overview state: full-width workspace, then zooms into the two-column slides */
.mw__stack { position: relative; display: grid; }
.mw__stack > * { grid-area: 1 / 1; }
.mw__overview { position: relative; width: 100%; opacity: 0; transform: scale(1.06); transform-origin: 50% 60%; transition: opacity .7s, transform 1s cubic-bezier(.4,0,.2,1); pointer-events: none; z-index: 2; }
.mw__overview.is-on { opacity: 1; transform: none; }
.mw__app-scale { position: absolute; left: 0; top: 0; width: 1180px; height: 740px; transform-origin: 0 0; }
.mw__overview .skybar-app-container { animation: none; }
.mw__overview .gd__card { transition: none; }
.mw__grid { opacity: 0; transform: scale(.97); transition: opacity .7s .15s, transform 1s cubic-bezier(.4,0,.2,1); pointer-events: none; align-self: center; }
.mw__grid.is-on { opacity: 1; transform: none; pointer-events: auto; }
.mw__tabs { margin-top: 22px; }

/* centred text beneath */
.mw__text { position: relative; min-height: 340px; text-align: left; }
.mw__item { position: absolute; inset: 0; opacity: 0; transform: translateY(8px); transition: opacity .6s, transform .6s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.mw__item.is-on { opacity: 1; transform: none; pointer-events: auto; }
.mw__eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); margin: 0 0 12px; }
.mw__item h3 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(28px, 2.8vw, 44px); line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); margin: 0 0 14px; }
.mw__item p:not(.mw__eyebrow) { font-size: clamp(16px, 1.15vw, 18.5px); font-weight: 300; line-height: 1.6; color: var(--ink-soft); margin: 0 0 18px; max-width: 44ch; }
.mw__item .ticks { display: grid; gap: 10px; }
.mw__item .ticks li { font-size: 15px; }
@media (max-width: 1000px) { .mw__head h2 { white-space: normal; } .mw__grid { grid-template-columns: 1fr; } .mw__stage { height: 420px; } .mw__stage .gd__card { width: 92%; } .mw__text { min-height: 0; } .mw__item { position: relative; display: none; } .mw__item.is-on { display: block; }  }

/* segmented pills (SEM / E-commerce / Growing) */
.seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(17,17,16,.05); margin: 0 0 22px -4px; }
.seg__btn { font: inherit; font-size: 14px; font-weight: 500; color: var(--ink-soft); background: transparent; border: 0; border-radius: 999px; height: 38px; padding: 0 16px; cursor: pointer; transition: color .2s, background .2s, box-shadow .2s; }
.seg__btn:hover { color: var(--ink); }
.seg__btn.is-on { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(17,17,16,.05), 0 6px 16px -8px rgba(17,17,16,.18); }
.seg__pane { display: none; animation: rise .45s cubic-bezier(.2,.7,.2,1); }
.seg__pane.is-on { display: block; }
.seg__pane sup { font-size: .55em; vertical-align: top; position: relative; top: .2em; }
.seg__title { margin: 0 0 10px; font-size: 15px; font-weight: 600; letter-spacing: -0.005em; color: var(--ink); }
.std__side .std__apply { margin: 24px 0 0; }
.std__side .std__apply .btn-dark { height: 52px; padding: 0 24px; font-size: 15.5px; }
.std__side .std__perks { margin-top: 22px; gap: 8px; }
.std__side .std__perks li { font-size: 15.5px; }
#getting-started .steps-help { margin-top: 22px !important; }

/* ── Explore Features page ─────────────────────────────────────────────── */
/* pill nav: many pills → a scrolling strip with soft edges; learn.js centres the active pill */
.menu--scroll { max-width: min(62vw, 960px); overflow-x: auto; scrollbar-width: none; padding: 4px 28px; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%); }
.menu--scroll::-webkit-scrollbar { display: none; }
.menu--scroll a { flex-shrink: 0; white-space: nowrap; }
.slide--intro, .slide--feat { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); align-items: center; }
.slide--feat .mw__stage { width: 100%; }
.slide--feat .gd--solo .gd__card[data-pos="0"] { transition: none; }
.feat__text { min-width: 0; }
.feat__text .mw__eyebrow { margin-bottom: 14px; }
.feat__text h2 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(30px, 3.1vw, 50px); line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); margin: 0 0 16px; }
.feat__text h2 sup { font-size: .35em; vertical-align: top; position: relative; top: .4em; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0; }
.feat__text > p:not(.mw__eyebrow):not(.lead) { font-size: clamp(16.5px, 1.15vw, 19px); font-weight: 300; line-height: 1.6; color: var(--ink-soft); margin: 0 0 18px; max-width: 46ch; }
.feat__text > p b { font-weight: 600; color: var(--ink); }
.feat__text sup { font-size: .55em; vertical-align: top; position: relative; top: .2em; }
.feat__text .lead { font-size: clamp(18px, 1.3vw, 22px); font-weight: 400; line-height: 1.45; letter-spacing: -0.012em; color: var(--ink); margin: 0 0 18px; max-width: 40ch; }
.feat__text .ticks { gap: 10px; }
.feat__text .ticks li { font-size: 15.5px; }
.feat__app { position: relative; width: 100%; }
.feat__app-scale { position: absolute; left: 0; top: 0; width: 1180px; height: 740px; transform-origin: 0 0; }
.feat__app .skybar-app-container { animation: none; }
/* new card bits, same language as the deck */
.gd__ico--av { background: linear-gradient(135deg, #ff1e80, #6000ff); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .02em; }
.gd__kpis--2 { grid-template-columns: 1fr 1fr; margin: 0 0 8px; }
.gd__kpis--2 b { font-size: 24px; }
.gd__kpis--2 i { white-space: normal; }
.gd__kpis + .gd__rows { margin-top: 8px; }
.gd__card.is-focus .gd__kpis--2 div:nth-child(1) { animation-delay: .15s; } .gd__card.is-focus .gd__kpis--2 div:nth-child(2) { animation-delay: .3s; }
@media (max-width: 1000px) {
    .menu--scroll { max-width: 100%; }
    .slide--intro, .slide--feat { grid-template-columns: 1fr; }
    .feat__text .lead { max-width: none; }
}
.gd__card:not(.gd__card--sale).is-focus .gd__kpis div:nth-child(1) { animation-delay: .1s; } .gd__card:not(.gd__card--sale).is-focus .gd__kpis div:nth-child(2) { animation-delay: .2s; }
.gd__card:not(.gd__card--sale).is-focus .gd__kpis div:nth-child(3) { animation-delay: .3s; } .gd__card:not(.gd__card--sale).is-focus .gd__kpis div:nth-child(4) { animation-delay: .4s; }

/* ── Explore Features: redrawn cards (same glass language as the deck) ──── */
.gd__panel { padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); min-width: 0; }
.gd__panel-t { display: block; font-size: 11px; font-weight: 600; color: #64748b; margin-bottom: 8px; letter-spacing: .01em; }
.gd__split { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gd__kpis--3 { grid-template-columns: repeat(3, 1fr); }
/* change impact */
.gd__chart--ci { height: 140px; }
.gd__banner { display: flex; align-items: center; gap: 10px; margin-top: 8px; padding: 9px 12px; border-radius: 12px; background: rgba(124,58,237,.08); border: 1px solid rgba(124,58,237,.14); font-size: 12px; color: #334155; min-width: 0; }
.gd__banner i { width: 10px; height: 10px; border-radius: 3px; background: #7c3aed; flex-shrink: 0; }
.gd__banner b { color: #0f172a; white-space: nowrap; }
.gd__banner span { color: #64748b; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.gd__card--ci.is-focus .gd__ci-mark { opacity: 0; animation: gd-fade .5s forwards; }
.gd__card--ci.is-focus .gd__ci-mark:nth-of-type(1) { animation-delay: 1.2s; } .gd__card--ci.is-focus .gd__ci-mark:nth-of-type(2) { animation-delay: 1.6s; } .gd__card--ci.is-focus .gd__ci-mark:nth-of-type(3) { animation-delay: 2s; }
.gd__card--ci.is-focus .gd__ci-mean, .gd__card--ci.is-focus .gd__ci-win, .gd__card--ci.is-focus text { opacity: 0; animation: gd-fade .6s 2.3s forwards; }
.gd__card--ci.is-focus .gd__kpis div:nth-child(1) { animation-delay: 2.5s; } .gd__card--ci.is-focus .gd__kpis div:nth-child(2) { animation-delay: 2.65s; } .gd__card--ci.is-focus .gd__kpis div:nth-child(3) { animation-delay: 2.8s; }
.gd__card--ci.is-focus .gd__banner { opacity: 0; animation: gd-in .5s 3s forwards; }
/* reports: pie / bars / pacing */
.gd__pie { display: flex; align-items: center; gap: 12px; }
.gd__pie svg { width: 84px; height: 84px; flex-shrink: 0; }
.gd__pie ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; font-size: 11.5px; color: #475569; flex: 1; }
.gd__pie li { display: flex; align-items: center; gap: 6px; }
.gd__pie li i { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.gd__pie li b { margin-left: auto; color: #0f172a; font-family: var(--font-mono); font-size: 11px; }
.gd__bars { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.gd__bars li { display: grid; grid-template-columns: 72px 1fr 28px; align-items: center; gap: 8px; font-size: 11.5px; color: #475569; }
.gd__bars li span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gd__bars li i { display: block; height: 8px; border-radius: 4px; background: #7c3aed; width: var(--w); transform-origin: left; }
.gd__bars li b { font-family: var(--font-mono); font-size: 11px; text-align: right; color: #0f172a; }
.gd__pace { margin-top: 8px; }
.gd__pace-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.gd__pace-top .gd__panel-t { margin: 0; }
.gd__pace-bar { position: relative; height: 8px; border-radius: 4px; background: rgba(15,23,42,.08); }
.gd__pace-bar i { position: absolute; left: 0; top: 0; bottom: 0; width: var(--w); border-radius: 4px; background: #3b82f6; transform-origin: left; }
.gd__pace-bar em { position: absolute; left: var(--at); top: -3px; width: 2px; height: 14px; background: #0f172a; border-radius: 1px; }
.gd__pace-meta { display: flex; justify-content: space-between; gap: 8px; margin-top: 9px; font-size: 11px; color: #64748b; }
.gd__pace-meta b { color: #0f172a; }
.gd__card--rep.is-focus .gd__bars li i, .gd__card--rep.is-focus .gd__pace-bar i { animation: gd-grow .9s cubic-bezier(.2,.7,.2,1) both; }
.gd__card--rep.is-focus .gd__bars li:nth-child(1) i { animation-delay: .2s; } .gd__card--rep.is-focus .gd__bars li:nth-child(2) i { animation-delay: .3s; } .gd__card--rep.is-focus .gd__bars li:nth-child(3) i { animation-delay: .4s; } .gd__card--rep.is-focus .gd__bars li:nth-child(4) i { animation-delay: .5s; }
.gd__card--rep.is-focus .gd__pace-bar i { animation-delay: .6s; }
.gd__card--rep.is-focus .gd__pie circle[class] { opacity: 0; animation: gd-fade .5s forwards; }
.gd__card--rep.is-focus .gd__pie-a { animation-delay: .2s; } .gd__card--rep.is-focus .gd__pie-b { animation-delay: .45s; } .gd__card--rep.is-focus .gd__pie-c { animation-delay: .7s; }
@keyframes gd-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
/* price suggest table */
.gd__tablewrap { border-radius: 12px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); overflow: hidden; }
.gd__table { width: 100%; border-collapse: collapse; font-size: 11px; color: #334155; table-layout: fixed; }
.gd__table thead th { font-weight: 600; color: #64748b; text-align: center; padding: 8px 4px 1px; font-size: 10.5px; }
.gd__table thead th:first-child { text-align: left; padding-left: 12px; width: 26%; }
.gd__table thead th:nth-child(2) { width: 12%; }
.gd__table thead th em { display: block; font-style: normal; font-weight: 500; font-size: 9.5px; color: #94a3b8; }
.gd__table-sub th { padding: 1px 4px 7px !important; font-size: 9.5px !important; font-weight: 500 !important; color: #94a3b8 !important; border-bottom: 1px solid rgba(15,23,42,.06); }
.gd__table tbody th { text-align: left; padding: 8px 6px 8px 12px; border-top: 1px solid rgba(15,23,42,.05); font-weight: 500; }
.gd__table tbody th b { display: block; font-size: 11.5px; color: #0f172a; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gd__table tbody th span { font-size: 9.5px; color: #94a3b8; }
.gd__table tbody td { text-align: center; padding: 8px 3px; border-top: 1px solid rgba(15,23,42,.05); font-family: var(--font-mono); font-size: 10.5px; }
.gd__table td b { display: block; color: #0f172a; font-weight: 600; }
.gd__table td span { display: block; font-weight: 600; }
.gd__table td em { display: block; font-style: normal; font-size: 9px; color: #94a3b8; font-family: var(--font-sans); }
.gd__table td.roas { color: #6d28d9; font-weight: 600; }
.gd__table .pos { color: #047857; } .gd__table .neg { color: #be123c; } .gd__table .zero { color: #64748b; }
.gd__legendrow { display: flex; gap: 14px; margin-top: 8px; font-size: 10.5px; color: #64748b; flex-wrap: wrap; }
.gd__legendrow i { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 5px; }
.gd__legendrow i.pos { background: #10b981; } .gd__legendrow i.neg { background: #f43f5e; } .gd__legendrow i.zero { background: #94a3b8; }
.gd__legendrow-r { margin-left: auto; }
.gd__card--price.is-focus tbody tr { opacity: 0; animation: gd-in .5s cubic-bezier(.2,.7,.2,1) forwards; }
.gd__card--price.is-focus tbody tr:nth-child(1) { animation-delay: .15s; } .gd__card--price.is-focus tbody tr:nth-child(2) { animation-delay: .3s; } .gd__card--price.is-focus tbody tr:nth-child(3) { animation-delay: .45s; }
/* workspaces: stacked tiles + swap lists */
.gd__split--ws { grid-template-columns: 200px 1fr; }
.gd__stack { position: relative; min-height: 240px; }
.gd__tile { position: absolute; left: 0; right: 0; height: 150px; border-radius: 16px; background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.95); box-shadow: 0 12px 30px -16px rgba(15,23,42,.3); padding: 14px 16px; }
.gd__tile--1 { top: 70px; background: #fff; display: flex; flex-direction: column; justify-content: flex-end; gap: 2px; }
.gd__tile--2 { top: 38px; transform: scale(.93); opacity: .8; }
.gd__tile--3 { top: 8px; transform: scale(.86); opacity: .55; }
.gd__tile b { font-size: 16px; color: #0f172a; font-weight: 600; letter-spacing: -0.01em; }
.gd__tile span { font-size: 11.5px; color: #64748b; }
.gd__tile--2 span, .gd__tile--3 span { position: absolute; top: 12px; left: 16px; font-weight: 600; color: #475569; }
.gd__tile em { position: absolute; top: 12px; right: 12px; font-style: normal; font-size: 10.5px; font-weight: 600; color: #047857; background: #ecfdf5; padding: 3px 8px; border-radius: 999px; }
.gd__wslists { display: grid; gap: 8px; align-content: start; min-width: 0; }
.gd__wslist { padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); }
.gd__wslist ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.gd__wslist li { display: flex; align-items: center; gap: 8px; padding: 5px 8px; border-radius: 8px; font-size: 11.5px; color: #475569; min-width: 0; }
.gd__wslist li b { color: #0f172a; font-weight: 600; font-size: 11.5px; white-space: nowrap; }
.gd__wslist li span { color: #94a3b8; font-size: 10.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gd__wslist li i { margin-left: auto; font-style: normal; color: #6d28d9; font-weight: 700; font-size: 11px; }
.gd__wslist li.on { background: rgba(124,58,237,.09); }
.gd__wslist li.mute b { color: #64748b; }
.gd__wslist li .gd__ico--av { width: 20px; height: 20px; font-size: 8.5px; border-radius: 6px; }
.gd__card--ws.is-focus .gd__tile, .gd__card--ws.is-focus .gd__wslist { opacity: 0; animation: gd-in .6s cubic-bezier(.2,.7,.2,1) forwards; }
.gd__card--ws.is-focus .gd__tile--3 { animation-delay: .1s; animation-name: gd-tile3; } .gd__card--ws.is-focus .gd__tile--2 { animation-delay: .25s; animation-name: gd-tile2; } .gd__card--ws.is-focus .gd__tile--1 { animation-delay: .4s; }
.gd__card--ws.is-focus .gd__wslist:nth-child(1) { animation-delay: .6s; } .gd__card--ws.is-focus .gd__wslist:nth-child(2) { animation-delay: .75s; }
@keyframes gd-tile2 { from { opacity: 0; transform: scale(.93) translateY(8px); } to { opacity: .8; transform: scale(.93); } }
@keyframes gd-tile3 { from { opacity: 0; transform: scale(.86) translateY(8px); } to { opacity: .55; transform: scale(.86); } }
/* notifications: bell dropdown + slack */
.gd__bellp { padding: 0; overflow: hidden; }
.gd__bellp-top { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; border-bottom: 1px solid rgba(15,23,42,.06); font-size: 10.5px; color: #6d28d9; font-weight: 600; }
.gd__bellp-top .gd__panel-t { margin: 0; display: flex; gap: 6px; align-items: center; color: #0f172a; font-size: 12px; }
.gd__bellp-top .gd__panel-t i { font-style: normal; background: #f43f5e; color: #fff; font-size: 9px; border-radius: 999px; padding: 1px 5px; }
.gd__bellp ul { list-style: none; margin: 0; padding: 4px; display: grid; gap: 2px; }
.gd__bellp li { display: flex; align-items: center; gap: 8px; padding: 6px 18px 6px 8px; border-radius: 8px; position: relative; }
.gd__bellp li.unread { background: rgba(124,58,237,.05); }
.gd__bellp li.unread::after { content: ""; position: absolute; right: 8px; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: #7c3aed; margin-top: -3px; }
.gd__bellp li .gd__ico { width: 24px; height: 24px; }
.gd__bellp li .gd__txt b { font-size: 11.5px; }
.gd__bellp li .gd__txt span { font-size: 10.5px; }
.gd__bellp-foot { padding: 7px 12px; border-top: 1px solid rgba(15,23,42,.06); font-size: 10.5px; color: #6d28d9; font-weight: 600; text-align: center; }
.gd__slack { background: #fff; padding: 0; overflow: hidden; }
.gd__slack-ch { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; border-bottom: 1px solid rgba(15,23,42,.06); font-size: 12px; font-weight: 700; color: #1d1c1d; }
.gd__slack-ch i { font-style: normal; font-size: 9.5px; font-weight: 600; color: #fff; background: #4a154b; padding: 2px 7px; border-radius: 999px; }
.gd__slack-msg { display: flex; gap: 8px; padding: 8px 12px 4px; font-size: 11px; color: #1d1c1d; line-height: 1.4; }
.gd__slack-msg > div { min-width: 0; }
.gd__slack-av { width: 26px; height: 26px; border-radius: 6px; background: linear-gradient(135deg, #ff1e80, #6000ff); color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; }
.gd__slack-av--m { background: #e2e8f0; color: #334155; }
.gd__slack-msg small { color: #616061; font-size: 9.5px; margin-left: 4px; }
.gd__slack-msg p { margin: 2px 0 0; }
.gd__card--nt.is-focus .gd__bellp li, .gd__card--nt.is-focus .gd__slack-msg { opacity: 0; animation: gd-in .5s cubic-bezier(.2,.7,.2,1) forwards; }
.gd__card--nt.is-focus .gd__bellp li:nth-child(1) { animation-delay: .15s; } .gd__card--nt.is-focus .gd__bellp li:nth-child(2) { animation-delay: .3s; } .gd__card--nt.is-focus .gd__bellp li:nth-child(3) { animation-delay: .45s; } .gd__card--nt.is-focus .gd__bellp li:nth-child(4) { animation-delay: .6s; }
.gd__card--nt.is-focus .gd__slack-msg:nth-of-type(1) { animation-delay: .8s; } .gd__card--nt.is-focus .gd__slack-msg:nth-of-type(2) { animation-delay: 1.6s; }
/* collaboration: sticky note + share */
.gd__split--notes { grid-template-columns: 1.2fr .8fr; }
.gd__note { background: #fff7c2; border: 1px solid #f0e39a; border-radius: 14px; padding: 12px 14px; box-shadow: 0 12px 28px -16px rgba(120,90,0,.4); font-size: 11.5px; color: #3f3a1e; transform: rotate(-.6deg); align-self: start; }
.gd__note-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.gd__note-top b { font-size: 13px; color: #1f1c0c; }
.gd__pin { font-size: 10px; font-weight: 600; color: #854d0e; background: rgba(255,255,255,.6); padding: 2px 7px; border-radius: 999px; white-space: nowrap; }
.gd__note p { margin: 0 0 8px; line-height: 1.45; }
.gd__note mark { background: rgba(124,58,237,.12); color: #5b21b6; border-radius: 4px; padding: 0 3px; font-weight: 600; }
.gd__note mark.at { background: rgba(255,30,128,.12); color: #9d174d; }
.gd__note-meta { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: #6b6130; margin-bottom: 8px; }
.gd__note .gd__ico--av { width: 20px; height: 20px; font-size: 8.5px; border-radius: 6px; }
.gd__note-reply { display: flex; gap: 7px; padding: 8px; border-radius: 10px; background: rgba(255,255,255,.65); margin-bottom: 8px; }
.gd__note-reply b { font-size: 11px; } .gd__note-reply small { font-size: 9.5px; color: #6b6130; } .gd__note-reply p { margin: 2px 0 0; }
.gd__note-compose { display: flex; justify-content: space-between; gap: 8px; padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,.75); border: 1px dashed rgba(120,90,0,.3); color: #8a7f4a; font-size: 10.5px; }
.gd__note-compose em { font-style: normal; opacity: .7; white-space: nowrap; }
.gd__ico--av2 { background: linear-gradient(135deg, #6000ff, #2563eb); } .gd__ico--av3 { background: linear-gradient(135deg, #10b981, #0ea5e9); } .gd__ico--av4 { background: linear-gradient(135deg, #f59e0b, #ff1e80); }
.gd__card--notes.is-focus .gd__note { opacity: 0; animation: gd-note .6s cubic-bezier(.2,.7,.2,1) .1s forwards; }
.gd__card--notes.is-focus .gd__note-reply { opacity: 0; animation: gd-in .5s .9s forwards; }
.gd__card--notes.is-focus .gd__wslist { opacity: 0; animation: gd-in .5s forwards; }
.gd__card--notes.is-focus .gd__wslist:nth-child(1) { animation-delay: .5s; } .gd__card--notes.is-focus .gd__wslist:nth-child(2) { animation-delay: .7s; }
@keyframes gd-note { from { opacity: 0; transform: rotate(-.6deg) translateY(8px); } to { opacity: 1; transform: rotate(-.6deg); } }
.gd__card--notes .gd__note { padding: 10px 12px; font-size: 11px; }
.gd__card--notes .gd__note p { margin-bottom: 6px; }
.gd__card--notes .gd__note-reply { padding: 6px 8px; margin-bottom: 6px; }
.gd__card--notes .gd__note-compose { padding: 6px 10px; }
.gd__card--notes .gd__wslist { padding: 8px 10px; }
.gd__card--notes .gd__wslist li { padding: 4px 6px; }
.gd__bellp li .gd__txt span { white-space: nowrap; }

/* ── Explore Features: intro layout + sticky bottom bar ─────────────────── */
.slide--intro { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: auto 1fr; align-items: center; column-gap: clamp(32px, 5vw, 80px); row-gap: clamp(20px, 3vw, 40px); }
.feat__title { grid-column: 1 / -1; text-align: center; font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(34px, 3.6vw, 62px); line-height: 1.04; letter-spacing: -0.025em; color: var(--ink); margin: 0 auto; max-width: none; white-space: nowrap; }
.slide--intro .feat__app { max-width: 680px; width: 100%; justify-self: center; }
.slide--intro .feat__text { max-width: 46ch; }
.slide--intro .feat__text .lead { margin-bottom: 22px; }
.slide--intro .feat__text .ticks { margin-bottom: 22px; }
.slide--intro .feat__text > p:not(.lead) { margin-bottom: 0; }
.feat__text .ticks li sup { font-size: .55em; vertical-align: top; position: relative; top: .2em; }
/* bottom bar: slide label bottom-left, sticky so long slides scroll under it */
.learn--features .lnav { position: sticky; bottom: 0; z-index: 20; background: var(--page-bg); padding-top: 16px; padding-bottom: clamp(16px, 2vw, 28px); }
.learn--features .lnav::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 28px; background: linear-gradient(180deg, rgba(242,242,240,0), var(--page-bg)); pointer-events: none; }
.learn--features .deck { padding-bottom: clamp(8px, 1.5vw, 20px); }
.lnav__label { margin-left: 14px; padding-left: 14px; border-left: 1px solid rgba(17,17,16,.15); font-family: var(--font-mono); font-size: 12px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); }
@media (max-width: 1000px) { .slide--intro { grid-template-columns: 1fr; } .lnav__label { display: none; } }
@media (max-width: 1000px) { .feat__title { white-space: normal; } }
.gmenu--tagged { display: inline-flex; align-items: center; gap: 10px; }
.gmenu__tag { font-size: 12.5px; font-weight: 500; letter-spacing: .01em; color: var(--ink-mute); padding-left: 10px; border-left: 1px solid rgba(17,17,16,.14); line-height: 1; margin-top: 2px; white-space: nowrap; }
.lbar__launch { justify-self: end; }
/* ── Methodology hero: centred animated title, lead beneath, index row beneath ── */
.fg--meth { padding-bottom: clamp(40px, 6vw, 80px); border-bottom: 1px solid rgba(17,17,16,.08); margin-bottom: clamp(40px, 6vw, 80px); }
.fg--meth .fg__sub { max-width: 52ch; margin-bottom: clamp(26px, 3vw, 40px); }
.fx-sup { font-size: .3em; vertical-align: top; position: relative; top: .5em; letter-spacing: 0; font-family: var(--font-sans); font-weight: 500; color: var(--ink); opacity: 0; animation: gd-fade .6s 1s forwards; }
.meth__index--row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 900px; margin: 0 auto; text-align: left; }
.meth__index--row a { justify-content: flex-start; }
.meth__index--row a:hover { transform: translateY(-2px); }
@media (max-width: 800px) { .meth__index--row { grid-template-columns: 1fr; } }
/* ── 404 ── */
.std--404 { display: grid; place-items: center; min-height: 60vh; }
.fg--404 { padding-top: 0; }
.nf__code { font-family: var(--font-mono); font-size: 13px; letter-spacing: .18em; color: var(--ink-mute); margin: 0 0 18px; }
.fg--404 .fg__sub { max-width: 40ch; }
.fg--404 .meth__cta-btns { justify-content: center; margin-bottom: 28px; }
.fg--404 .meth__cta-btns .btn-dark, .fg--404 .meth__cta-btns .btn-login { height: 54px; padding: 0 26px; font-size: 16px; }
.nf__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-size: 14px; color: var(--ink-mute); }
.nf__links a { color: var(--ink-soft); }
.nf__links a:hover { color: var(--ink); }
.nf__links sup { font-size: .55em; vertical-align: top; position: relative; top: .2em; }
.faq__intro .fx-title { display: block; }
.faq__intro .fx-word { white-space: normal; }
/* ── About hero: centred animated title, lead beneath, facts row beneath ── */
.fg--about { padding-bottom: clamp(40px, 6vw, 80px); border-bottom: 1px solid rgba(17,17,16,.08); margin-bottom: clamp(40px, 6vw, 80px); }
.fg--about h1 { font-size: clamp(42px, 5.2vw, 88px); max-width: none; margin-left: auto; margin-right: auto; line-height: 1.02; }
.fg--about .fg__sub { max-width: 56ch; margin-bottom: clamp(26px, 3vw, 40px); }
.facts--row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 900px; margin: 0 auto; text-align: left; }
@media (max-width: 800px) { .facts--row { grid-template-columns: 1fr; } }
/* ── About: results row (wabi take on the eBay/testimonial carousel) ───── */
.rs { padding-bottom: clamp(40px, 5vw, 72px); margin-bottom: clamp(40px, 5vw, 72px); border-bottom: 1px solid rgba(17,17,16,.08); }
.rs__head { text-align: center; max-width: 70ch; margin: 0 auto clamp(24px, 3vw, 40px); }
.rs__head h2 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(30px, 3.4vw, 52px); line-height: 1.04; letter-spacing: -0.025em; color: var(--ink); margin: 0 0 10px; }
.rs__head p { font-size: clamp(16px, 1.15vw, 18.5px); font-weight: 300; color: var(--ink-soft); margin: 0; }
.rs__row { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 14px 4px 22px; margin: 0 -4px; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); }
.rs__row::-webkit-scrollbar { display: none; }
.rs__card { flex: 0 0 360px; scroll-snap-align: center; background: #fff; border-radius: 22px; padding: 26px 26px 24px; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 24px 60px -32px rgba(17,17,16,.3); }
.rs__logo { height: 34px; width: auto; max-width: 160px; object-fit: contain; display: block; margin-bottom: 18px; }
.rs__stat { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; color: var(--ink-soft); margin: 0 0 18px; min-height: 3.6em; }
.rs__stat b { display: block; font-size: 40px; font-weight: 400; color: var(--ink); letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.rs__quote { margin: 0; padding: 14px 16px; border-radius: 14px; background: rgba(17,17,16,.035); transform: rotate(var(--rot, -1deg)); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.rs__card:hover .rs__quote { transform: none; }
.rs__who { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rs__av { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.rs__name { font-size: 13px; font-weight: 600; color: var(--ink); }
.rs__quote blockquote { margin: 0; font-size: 14.5px; font-weight: 400; line-height: 1.5; color: var(--ink-soft); }
.rs__nav { display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
.rs__btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(17,17,16,.06); background: #fff; color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 10px 30px -14px rgba(17,17,16,.25); transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.rs__btn:hover { transform: translateY(-1px); }
.rs__btn svg { width: 16px; height: 16px; }
@media (max-width: 640px) { .rs__card { flex-basis: 300px; } }
/* history timeline */
.hist li i { width: auto; min-width: 40px; height: 26px; border-radius: 999px; padding: 0 10px; font-size: 11px; }
.hist li { grid-template-columns: auto 1fr; }
.hist li span a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(17,17,16,.3); text-underline-offset: 3px; }
.hist li b sup { font-size: .55em; vertical-align: top; position: relative; top: .2em; }
.nowrap { white-space: nowrap; }
/* ── About: history timeline (left → right, sticks + glass bubbles) ─────── */
.tl { padding-bottom: clamp(40px, 5vw, 72px); margin-bottom: clamp(40px, 5vw, 72px); border-bottom: 1px solid rgba(17,17,16,.08); }
.tl__head { text-align: center; max-width: 70ch; margin: 0 auto clamp(8px, 2vw, 20px); }
.tl__head h2 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(30px, 3.4vw, 52px); line-height: 1.04; letter-spacing: -0.025em; color: var(--ink); margin: 0 0 10px; }
.tl__head p { font-size: clamp(16px, 1.15vw, 18.5px); font-weight: 300; color: var(--ink-soft); margin: 0; }
.tl__track { margin: 0 calc(50% - 50vw); padding: 0; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; cursor: grab; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%); }
.tl__track::-webkit-scrollbar { display: none; }
.tl__track.is-drag { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.tl__rail { list-style: none; margin: 0; padding: 0 calc(50vw - 116px) 0 max(40px, calc(50vw - 560px)); display: flex; width: max-content; position: relative; }
.tl__rail::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: rgba(17,17,16,.16); border-radius: 1px; }
.tl__item { position: relative; flex: 0 0 232px; height: 400px; scroll-snap-align: center; }
.tl__dot { position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; background: #fff; border: 2px solid var(--ink); box-sizing: border-box; z-index: 2; }
.tl__item.is-key .tl__dot { width: 18px; height: 18px; margin: -9px 0 0 -9px; border: 0; background: var(--brand-grad); box-shadow: 0 0 0 5px rgba(124,58,237,.12); }
.tl__year { display: none; position: absolute; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: var(--ink-mute); }
.tl__item.is-key .tl__year { color: var(--ink); font-weight: 600; }
.tl__item--up .tl__year { top: calc(50% + 18px); }
.tl__item--down .tl__year { bottom: calc(50% + 18px); }
.tl__stick { position: absolute; left: 50%; width: 1px; height: 46px; background: linear-gradient(180deg, rgba(17,17,16,.35), rgba(17,17,16,.08)); }
.tl__item--up .tl__stick { bottom: 50%; background: linear-gradient(0deg, rgba(17,17,16,.35), rgba(17,17,16,.08)); }
.tl__item--down .tl__stick { top: 50%; }
.tl__bubble { position: absolute; left: 10px; right: 10px; padding: 14px 16px 15px; border-radius: 18px; background: rgba(255,255,255,.55); -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); border: 1px solid rgba(255,255,255,.85); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 18px 44px -22px rgba(15,23,42,.28); }
.tl__item--up .tl__bubble { bottom: calc(50% + 46px); }
.tl__item--down .tl__bubble { top: calc(50% + 46px); }
.tl__item.is-key .tl__bubble { background: rgba(255,255,255,.8); border-color: rgba(124,58,237,.18); }
.tl__bubble b { display: block; font-family: var(--font-serif); font-weight: 400; font-size: 24px; letter-spacing: -0.02em; line-height: 1; color: var(--ink); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.tl__bubble p { margin: 0; font-size: 13.5px; font-weight: 400; line-height: 1.45; color: var(--ink-soft); }
.tl__item.is-key .tl__bubble p { color: var(--ink); }
.tl .rs__nav { margin-top: 2px; }
@media (max-width: 640px) { .tl__item { flex-basis: 200px; height: 380px; } .tl__rail { padding: 0 calc(50vw - 100px) 0 24px; } }
/* features deck: fit short desktop viewports (e.g. 1280×720) without page scroll */
@media (min-width: 1001px) and (max-height: 800px) {
    .learn--features .lbar { padding-top: 14px; }
    .learn--features .slide { padding-top: 10px; padding-bottom: 10px; }
    .learn--features .deck { padding-bottom: 0; }
    .learn--features .lnav { padding-top: 8px; padding-bottom: 12px; }
    .learn--features .lnav::before { height: 16px; }
    .slide--feat .mw__stage { height: 420px; }
    .feat__title { font-size: clamp(30px, 3vw, 48px); }
}
/* bottom bar on tablets: compact dots, no overflow */
@media (max-width: 1000px) {
    .lnav { grid-template-columns: auto minmax(0, 1fr) auto; gap: 12px; }
    .lnav__dots i { width: 14px; } .lnav__dots i.on { width: 24px; }
    .lnav__count { white-space: nowrap; }
}
@media (max-width: 640px) {
    .lbar { column-gap: 6px; }
    .menu--scroll { padding: 4px 12px; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%); }
    .lbar__launch { padding: 0 12px; }
}

/* ── responsive hardening ────────────────────────────────────────────────── */
/* grid items default to min-width:auto — a wide scrolling child (timeline, results row)
   must never widen the page */
.learn > header, .learn > main, .learn > footer, .std, .std > *, .tl, .tl__track, .rs, .rs__row { min-width: 0; }
@media (max-width: 1000px) {
    .lbar { grid-template-columns: auto minmax(0, 1fr) auto; column-gap: 10px; }
    .lbar .menu { min-width: 0; }
    .gmenu__tag { display: none; }
    .lbar__launch, .lbar__apply { height: 40px; padding: 0 14px; font-size: 14px; gap: 6px; }
    .lbar__launch svg { width: 14px; height: 14px; }
}
@media (max-width: 520px) {
    /* icon-only Launch App so the pill nav keeps room on phones */
    .lbar__launch { width: 40px; height: 40px; padding: 0; justify-content: center; font-size: 0; gap: 0; }
    .lbar__launch svg { width: 16px; height: 16px; color: var(--ink); }
}
/* agencies hero deck on phones/tablets: one card, scaled to the stage */
@media (max-width: 1000px) {
    .ag-stage { height: 460px; border-radius: 22px; }
    .ag-stage .gd__card { width: 92%; }
}
@media (max-width: 640px) {
    .ag-stage { height: 440px; }
    .ag-stage .gd__card:not([data-pos="0"]) { opacity: 0 !important; }
}
/* glass cards inside narrow stages: let rows shrink instead of overflowing the card */
.gd__card > * { min-width: 0; }
.gd__rows li, .gd__steps li, .gd__costs li, .gd__bellp li, .gd__wslist li { min-width: 0; }
@media (max-width: 640px) {
    .gd__card { padding: 16px 14px 12px; }
    .gd__head { flex-wrap: wrap; gap: 2px 10px; margin-bottom: 10px; }
    .gd__head h3 { font-size: 16px; }
    .gd__sub { font-size: 11px; }
    .gd__rows li { height: 46px; gap: 8px; padding: 0 10px 0 8px; }
    .gd__txt b { font-size: 12px; } .gd__txt span { font-size: 10.5px; }
    .gd__val { font-size: 10.5px; padding: 3px 7px; }
    .gd__costs { grid-template-columns: 1fr; gap: 5px; } .gd__costs li { height: 30px; font-size: 11.5px; }
    .gd__kpis { grid-template-columns: 1fr 1fr; }
    .gd__split, .gd__split--ws, .gd__split--nt, .gd__split--notes { grid-template-columns: 1fr; }
    .gd__stack { display: none; }
    .gd__table { font-size: 10px; } .gd__table thead th:first-child { width: 30%; }
    .gd__foot { font-size: 11px; }
}
@media (max-width: 640px) {
    /* price table: swipe inside the card instead of clipping rows */
    .gd__tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .gd__table { min-width: 470px; table-layout: auto; }
    .gd__table-sub { display: none; }
    .gd__table thead th { padding-bottom: 6px; border-bottom: 1px solid rgba(15,23,42,.06); }
    .gd__legendrow { gap: 8px 12px; }
}
@media (max-width: 640px) { .gd__table tbody th, .gd__table tbody td { padding-top: 5px; padding-bottom: 5px; } .gd__table thead th { padding-top: 6px; } }

/* ── Explore Features: content cards v2 ─────────────────────────────────── */
/* Setup: Google Ads + Merchant Center → GROW, then 4 steps */
.su__flow { display: grid; grid-template-columns: 1fr 60px auto 60px 1fr; align-items: center; gap: 4px; margin-bottom: 10px; }
.su__src { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 8px 10px; border-radius: 14px; background: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.85); position: relative; }
.su__logo { width: 40px; height: 40px; border-radius: 10px; background: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 1px 2px rgba(15,23,42,.06); }
.su__logo svg { width: 26px; height: 26px; }
.su__src b { font-size: 12px; font-weight: 600; color: #0f172a; white-space: nowrap; }
.su__chk { position: absolute; top: 8px; right: 8px; width: 16px; height: 16px; border-radius: 50%; background: #10b981; color: #fff; font-size: 10px; font-style: normal; display: inline-flex; align-items: center; justify-content: center; opacity: 0; transform: scale(.6); transition: opacity .3s, transform .3s; }
.su__link { width: 60px; height: 40px; display: block; }
.su__link circle { opacity: 0; }
.su__grow { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; background: #0f172a; color: #fff; font-size: 12px; font-weight: 600; white-space: nowrap; box-shadow: 0 10px 24px -12px rgba(15,23,42,.5); }
.su__grow svg { width: 14px; height: 14px; }
.su__steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.su__step { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 12px 0 10px; border-radius: 12px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); opacity: .38; transition: opacity .4s; }
.su__n { width: 22px; height: 22px; border-radius: 50%; background: rgba(15,23,42,.08); color: #334155; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.su__step .gd__txt b { font-size: 12.5px; } .su__step .gd__txt span { font-size: 11px; display: flex; align-items: center; gap: 6px; }
.su__bar { display: inline-block; width: 70px; height: 5px; border-radius: 3px; background: rgba(15,23,42,.08); overflow: hidden; position: relative; }
.su__bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: linear-gradient(90deg, #ff1e80, #6000ff); }
.su__state { opacity: 0; }
.gd__card--setup.is-focus .su__src--ads .su__chk { opacity: 1; transform: none; transition-delay: .4s; }
.gd__card--setup.is-focus .su__src--mc .su__chk { opacity: 1; transform: none; transition-delay: .7s; }
.gd__card--setup.is-focus .su__link circle { animation: gd-fade .3s 1s forwards; }
.gd__card--setup.is-focus .su__step--1 { animation: gd-on .4s .5s forwards; } .gd__card--setup.is-focus .su__step--1 .su__state { animation: gd-fade .3s .8s forwards; }
.gd__card--setup.is-focus .su__step--2 { animation: gd-on .4s 1.2s forwards; } .gd__card--setup.is-focus .su__step--2 .su__bar i { animation: su-fill 1.6s 1.3s cubic-bezier(.2,.7,.2,1) forwards; } .gd__card--setup.is-focus .su__step--2 .su__state { animation: gd-fade .3s 2.9s forwards; }
.gd__card--setup.is-focus .su__step--3 { animation: gd-on .4s 3.1s forwards; } .gd__card--setup.is-focus .su__step--3 .su__state { animation: gd-fade .3s 3.8s forwards; }
.gd__card--setup.is-focus .su__step--4 { animation: gd-on .4s 4.1s forwards; } .gd__card--setup.is-focus .su__step--4 .su__state { animation: gd-fade .3s 4.8s forwards; }
.gd__card--setup.is-focus .su__step .su__n { transition: background .3s, color .3s; }
@keyframes su-fill { to { width: 100%; } }

/* Pricing: profit per sale at each discount, down to the floor */
.pr__product { display: flex; align-items: center; gap: 12px; padding: 10px 12px 10px 10px; border-radius: 12px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); margin-bottom: 10px; }
.pr__chart { padding: 12px 14px 10px; border-radius: 14px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); }
.pr__axis { display: block; font-size: 11px; font-weight: 600; color: #64748b; margin-bottom: 8px; }
.pr__bars { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; align-items: end; height: 150px; }
.pr__bar { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.pr__bar i { display: block; width: 100%; max-width: 56px; height: calc(var(--h) * 1.08); min-height: 4px; border-radius: 8px 8px 4px 4px; background: linear-gradient(180deg, #10b981, #34d399); transform-origin: bottom; }
.pr__bar--warn i { background: linear-gradient(180deg, #f59e0b, #fbbf24); }
.pr__bar--zero i { background: #cbd5e1; height: 4px; }
.pr__val { font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; color: #047857; margin-bottom: 6px; }
.pr__bar--warn .pr__val { color: #b45309; } .pr__bar--zero .pr__val { color: #64748b; }
.pr__bar b { margin-top: 6px; font-size: 11.5px; font-weight: 600; color: #0f172a; }
.pr__bar em { position: absolute; bottom: -16px; font-style: normal; font-size: 9.5px; color: #64748b; white-space: nowrap; }
.pr__floor { display: block; margin-top: 22px; padding-top: 8px; border-top: 1px dashed rgba(15,23,42,.15); font-size: 11.5px; color: #475569; }
.pr__floor b { color: #0f172a; }
.gd__card--price.is-focus .pr__bar i { animation: gd-grow-y .8s cubic-bezier(.2,.7,.2,1) both; }
.gd__card--price.is-focus .pr__bar:nth-child(1) i { animation-delay: .1s; } .gd__card--price.is-focus .pr__bar:nth-child(2) i { animation-delay: .25s; } .gd__card--price.is-focus .pr__bar:nth-child(3) i { animation-delay: .4s; } .gd__card--price.is-focus .pr__bar:nth-child(4) i { animation-delay: .55s; } .gd__card--price.is-focus .pr__bar:nth-child(5) i { animation-delay: .7s; } .gd__card--price.is-focus .pr__bar:nth-child(6) i { animation-delay: .85s; }
.gd__card--price.is-focus .pr__val { opacity: 0; animation: gd-fade .4s forwards; }
.gd__card--price.is-focus .pr__bar:nth-child(1) .pr__val { animation-delay: .6s; } .gd__card--price.is-focus .pr__bar:nth-child(2) .pr__val { animation-delay: .75s; } .gd__card--price.is-focus .pr__bar:nth-child(3) .pr__val { animation-delay: .9s; } .gd__card--price.is-focus .pr__bar:nth-child(4) .pr__val { animation-delay: 1.05s; } .gd__card--price.is-focus .pr__bar:nth-child(5) .pr__val { animation-delay: 1.2s; } .gd__card--price.is-focus .pr__bar:nth-child(6) .pr__val { animation-delay: 1.35s; }
.gd__card--price.is-focus .pr__floor { opacity: 0; animation: gd-fade .5s 1.6s forwards; }
@keyframes gd-grow-y { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* Workspaces: stacked mini dashboards that switch */
.ws__deck { position: relative; height: 244px; margin-bottom: 8px; }
.ws__card { position: absolute; left: 50%; top: 0; width: 92%; border-radius: 14px; background: #fff; border: 1px solid rgba(15,23,42,.08); box-shadow: 0 18px 40px -22px rgba(15,23,42,.35); overflow: hidden; transform: translateX(-50%); transition: transform .8s cubic-bezier(.2,.7,.2,1), opacity .6s; transform-origin: 50% 0; }
.ws__card[data-pos="0"] { z-index: 3; transform: translateX(-50%) translateY(30px); opacity: 1; }
.ws__card[data-pos="1"] { z-index: 2; transform: translateX(-50%) translateY(15px) scale(.94); opacity: .8; }
.ws__card[data-pos="2"] { z-index: 1; transform: translateX(-50%) translateY(0) scale(.88); opacity: .55; }
.ws__bar { display: flex; align-items: center; gap: 8px; height: 32px; padding: 0 10px; border-bottom: 1px solid rgba(15,23,42,.06); background: #fff; }
.ws__logo { width: 18px; height: 18px; border-radius: 6px; background: linear-gradient(135deg, #ff1e80, #6000ff); color: #fff; font-size: 11px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.ws__pill { font-size: 11px; font-weight: 600; color: #0f172a; background: #f1f5f9; border-radius: 999px; padding: 3px 9px; }
.ws__spacer { flex: 1; }
.ws__dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; }
.ws__av { width: 20px; height: 20px; border-radius: 50%; background: #6d28d9; color: #fff; font-size: 10px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.ws__body { padding: 10px 12px 8px; background: linear-gradient(135deg, #fbf7fb, #f6f5fb); }
.ws__title b { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #0f172a; letter-spacing: -0.01em; }
.ws__title span { font-size: 11px; color: #64748b; }
.ws__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 8px 0 6px; }
.ws__kpis div { padding: 6px 8px; border-radius: 10px; background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.9); }
.ws__kpis span { display: block; font-size: 10px; color: #64748b; } .ws__kpis b { font-size: 14px; font-weight: 600; color: #0f172a; }
.ws__spark { width: 100%; height: 42px; display: block; }
.ws__trend { font-size: 10.5px; color: #64748b; } .ws__trend i { font-style: normal; font-weight: 600; color: #047857; }
.ws__switch { padding: 8px 10px; border-radius: 12px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); display: flex; align-items: center; gap: 10px; }
.ws__switch .gd__panel-t { margin: 0; white-space: nowrap; }
.ws__switch ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; flex-wrap: wrap; }
.ws__switch li { font-size: 11px; font-weight: 600; color: #475569; padding: 4px 9px; border-radius: 999px; cursor: default; transition: background .3s, color .3s; }
.ws__switch li.on { background: #0f172a; color: #fff; }

/* Notifications: in-app + a clearly Slack panel */
.nt__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8px; }
.nt__app { padding: 8px 10px; }
.nt__app-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.nt__app-top .gd__panel-t { margin: 0; }
.nt__bell { position: relative; width: 26px; height: 26px; border-radius: 8px; background: #fff; display: inline-flex; align-items: center; justify-content: center; color: #0f172a; }
.nt__bell svg { width: 14px; height: 14px; }
.nt__bell i { position: absolute; top: -5px; right: -5px; background: #f43f5e; color: #fff; font-style: normal; font-size: 9px; font-weight: 700; border-radius: 999px; padding: 1px 5px; }
.nt__app ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.nt__app li { padding: 7px 10px; border-radius: 10px; background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.9); position: relative; }
.nt__app li.unread { border-left: 3px solid #7c3aed; }
.nt__app li b { display: block; font-size: 11.5px; color: #0f172a; } .nt__app li span { font-size: 10.5px; color: #64748b; }
.nt__slack { border-radius: 12px; background: #fff; border: 1px solid rgba(15,23,42,.08); overflow: hidden; box-shadow: 0 10px 30px -20px rgba(15,23,42,.3); }
.nt__slack-top { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-bottom: 1px solid rgba(15,23,42,.06); }
.nt__slacklogo { width: 22px; height: 22px; flex-shrink: 0; }
.nt__slack-top b { display: block; font-size: 12px; color: #1d1c1d; } .nt__slack-top span { font-size: 10px; color: #616061; }
.nt__connected { margin-left: auto; font-size: 10px; font-weight: 600; color: #047857; background: #ecfdf5; padding: 2px 8px; border-radius: 999px; }
.nt__ch { padding: 6px 10px; font-size: 12px; font-weight: 700; color: #1d1c1d; border-bottom: 1px solid rgba(15,23,42,.06); background: #f8f8f8; }
.nt__msg { display: flex; gap: 8px; padding: 7px 10px 3px; font-size: 11px; color: #1d1c1d; line-height: 1.35; }
.nt__msg > div { min-width: 0; } .nt__msg small { color: #616061; font-size: 9.5px; margin-left: 4px; } .nt__msg p { margin: 1px 0 0; }
.nt__av { width: 24px; height: 24px; border-radius: 6px; background: linear-gradient(135deg, #ff1e80, #6000ff); color: #fff; font-weight: 800; font-size: 12px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nt__av--m { background: #e2e8f0; color: #334155; }
.gd__card--nt.is-focus .nt__app li, .gd__card--nt.is-focus .nt__msg { opacity: 0; animation: gd-in .5s cubic-bezier(.2,.7,.2,1) forwards; }
.gd__card--nt.is-focus .nt__app li:nth-child(1) { animation-delay: .2s; } .gd__card--nt.is-focus .nt__app li:nth-child(2) { animation-delay: .35s; } .gd__card--nt.is-focus .nt__app li:nth-child(3) { animation-delay: .5s; }
.gd__card--nt.is-focus .nt__msg:nth-of-type(1) { animation-delay: .7s; } .gd__card--nt.is-focus .nt__msg:nth-of-type(2) { animation-delay: 1.3s; } .gd__card--nt.is-focus .nt__msg:nth-of-type(3) { animation-delay: 1.9s; }

/* Collaboration: team, note, @mention */
.cl__top { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 12px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); margin-bottom: 8px; }
.cl__avs { display: inline-flex; } .cl__avs .gd__ico--av { width: 26px; height: 26px; font-size: 10px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; } .cl__avs .gd__ico--av:first-child { margin-left: 0; }
.cl__who { font-size: 11.5px; color: #475569; flex: 1; } .cl__who b { color: #0f172a; }
.cl__invite { font-size: 11px; font-weight: 600; color: #6d28d9; background: #f5f3ff; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.cl__note { background: #fff7c2; border: 1px solid #f0e39a; border-radius: 14px; padding: 12px 14px; box-shadow: 0 12px 28px -16px rgba(120,90,0,.4); font-size: 12px; color: #3f3a1e; transform: rotate(-.5deg); }
.cl__note-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; } .cl__note-top b { font-size: 14px; color: #1f1c0c; }
.cl__note p { margin: 0 0 8px; line-height: 1.5; }
.cl__note mark { background: rgba(124,58,237,.12); color: #5b21b6; border-radius: 4px; padding: 0 3px; font-weight: 600; } .cl__note mark.at { background: rgba(255,30,128,.12); color: #9d174d; }
.cl__meta { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: #6b6130; flex-wrap: wrap; } .cl__meta .gd__ico--av { width: 18px; height: 18px; font-size: 8px; border-radius: 6px; }
.cl__sent { margin-left: auto; color: #047857; font-weight: 600; }
.cl__reply { position: relative; display: flex; gap: 8px; align-items: flex-start; margin-top: 10px; }
.cl__reply > .gd__ico--av { width: 26px; height: 26px; font-size: 10px; border-radius: 8px; flex-shrink: 0; }
.cl__input { position: relative; flex: 1; padding: 9px 12px; border-radius: 12px; background: #fff; border: 1px solid rgba(15,23,42,.1); font-size: 12px; color: #0f172a; min-height: 38px; }
.cl__caret { background: rgba(255,30,128,.12); color: #9d174d; border-radius: 4px; padding: 0 3px; font-weight: 600; border-right: 2px solid #9d174d; }
.cl__pop { position: absolute; left: 12px; top: calc(100% + 6px); background: #fff; border-radius: 12px; border: 1px solid rgba(15,23,42,.08); box-shadow: 0 18px 40px -20px rgba(15,23,42,.35); padding: 4px; display: grid; gap: 2px; min-width: 190px; z-index: 2; }
.cl__pop span { display: flex; align-items: center; gap: 8px; padding: 5px 8px; border-radius: 8px; font-size: 11.5px; font-weight: 600; color: #0f172a; } .cl__pop span small { color: #64748b; font-weight: 400; margin-left: auto; }
.cl__pop span.on { background: rgba(124,58,237,.1); } .cl__pop .gd__ico--av { width: 20px; height: 20px; font-size: 8.5px; border-radius: 6px; }
.gd__card--notes.is-focus .cl__note { opacity: 0; animation: gd-note .6s cubic-bezier(.2,.7,.2,1) .1s forwards; }
.gd__card--notes.is-focus .cl__top { opacity: 0; animation: gd-in .5s .0s forwards; }
.gd__card--notes.is-focus .cl__reply { opacity: 0; animation: gd-in .5s .8s forwards; }
.gd__card--notes.is-focus .cl__pop { opacity: 0; animation: gd-in .4s 1.5s forwards; }
.gd__card--notes.is-focus .cl__sent { opacity: 0; animation: gd-fade .4s 2.1s forwards; }
@keyframes gd-note { from { opacity: 0; transform: rotate(-.5deg) translateY(8px); } to { opacity: 1; transform: rotate(-.5deg); } }
@media (max-width: 640px) {
    .su__flow { grid-template-columns: 1fr 24px auto 24px 1fr; } .su__link { width: 24px; } .su__src b { font-size: 10.5px; } .su__grow { padding: 6px 9px; font-size: 11px; }
    .pr__bars { height: 120px; gap: 6px; } .pr__bar em { display: none; }
    .nt__grid { grid-template-columns: 1fr; } .nt__app { display: none; }
    .ws__deck { height: 220px; } .ws__switch { flex-direction: column; align-items: flex-start; }
    .cl__who { display: none; }
}
/* phones: feature cards flow with their content instead of a fixed 412px box */
@media (max-width: 640px) {
    .slide--feat .mw__stage { height: auto; }
    .slide--feat .mw__stage .gd--solo { position: relative; inset: auto; padding: 16px 0; }
    .slide--feat .gd--solo .gd__card { position: relative; left: auto; top: auto; transform: none !important; margin: 0 auto; height: auto; width: 92%; }
    .su__flow { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
    .su__flow .su__src { flex: 1 1 40%; } .su__src b { white-space: normal; text-align: center; line-height: 1.2; }
    .su__link { display: none; } .su__grow { order: 3; }
    .su__step .gd__txt span { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .su__bar { vertical-align: middle; }
    .cl__pop { display: none; }
    .gd__pace-meta { flex-wrap: wrap; }
    .gd__pie svg { width: 72px; height: 72px; }
}
.su__steps { grid-template-columns: minmax(0, 1fr); }
.su__step { min-width: 0; }
.su__step .gd__txt { min-width: 0; }
/* Reports card v2 */
.gd__pie-wrap { position: relative; width: 84px; height: 84px; flex-shrink: 0; }
.gd__pie-wrap svg { width: 84px; height: 84px; display: block; }
.gd__pie-wrap > span { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; }
.gd__pie-wrap > span b { font-size: 15px; font-weight: 600; color: #0f172a; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.gd__pie-wrap > span i { font-style: normal; font-size: 9.5px; color: #64748b; margin-top: 2px; }
.gd__pie ul { gap: 7px; }
.gd__pie li i { width: 10px; height: 10px; border-radius: 3px; }
.gd__bars li i { height: 7px; background: linear-gradient(90deg, #ff1e80, #7c3aed); box-shadow: 0 2px 6px -2px rgba(124,58,237,.5); }
.gd__bars li { grid-template-columns: 76px 1fr 30px; }
.gd__pace-bar { height: 8px; background: rgba(15,23,42,.07); overflow: visible; }
.gd__pace-bar i { background: linear-gradient(90deg, #ff1e80, #7c3aed); border-radius: 4px; }
.gd__pace-bar u { position: absolute; top: 0; bottom: 0; left: var(--a); width: calc(var(--b) - var(--a)); background: repeating-linear-gradient(135deg, rgba(124,58,237,.35) 0 3px, rgba(124,58,237,.08) 3px 6px); border-radius: 0 4px 4px 0; text-decoration: none; }
.gd__pace-bar em { top: -4px; height: 16px; width: 2px; background: #0f172a; }
.gd__pace-bar em span { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); margin-top: 3px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: #64748b; white-space: nowrap; }
.gd__pace-meta { margin-top: 18px; }
.gd__trend { margin-top: 8px; padding-bottom: 8px; }
.gd__trend svg { width: 100%; height: 56px; display: block; margin-top: 2px; }
.gd__trend-delta { font-size: 11px; font-weight: 600; color: #047857; }
.gd__card--rep.is-focus .gd__pace-bar u { opacity: 0; animation: gd-fade .5s 1.4s forwards; }
.gd__card--rep.is-focus .gd__trend .gd__line { stroke-dasharray: 700; stroke-dashoffset: 700; animation: gd-draw 1.6s cubic-bezier(.2,.7,.2,1) 1s forwards; }
.gd__card--rep.is-focus .gd__trend .gd__area { opacity: 0; animation: gd-fade .8s 2.2s forwards; }
.gd__card--rep.is-focus .gd__pie-wrap > span { opacity: 0; animation: gd-fade .5s .9s forwards; }
.gd__card--rep { height: auto; min-height: 412px; }
.gd__card--rep .gd__pie-wrap, .gd__card--rep .gd__pie-wrap svg { width: 76px; height: 76px; }
.gd__card--rep .gd__pace-meta { margin-top: 14px; }
.gd__card--rep .gd__trend svg { height: 44px; }
.gd__card--rep .gd__trend { padding-bottom: 6px; }
.gd__card--rep .gd__foot { padding-top: 10px; }
.gd__card--rep .gd__panel { padding: 8px 10px; }
.gd__card--rep .gd__split { gap: 6px; }
.gd__card--rep .gd__bars { gap: 6px; }
.gd__card--rep .gd__pace { margin-top: 6px; } .gd__card--rep .gd__pace-meta { margin-top: 10px; }
.gd__card--rep .gd__trend { margin-top: 6px; padding-bottom: 4px; } .gd__card--rep .gd__trend svg { height: 36px; }
.gd__card--rep .gd__head { margin-bottom: 10px; } .gd__card--rep .gd__foot { padding-top: 8px; }
.gd__card--rep .gd__pie-wrap, .gd__card--rep .gd__pie-wrap svg { width: 70px; height: 70px; }
.gd__card--rep .gd__pie ul { gap: 5px; }

/* Pricing table */
.pt__wrap { border-radius: 12px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.8); overflow: hidden; }
.pt { width: 100%; border-collapse: collapse; font-size: 12.5px; color: #334155; }
.pt th { text-align: left; font-size: 10.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #64748b; padding: 9px 12px 7px; border-bottom: 1px solid rgba(15,23,42,.07); }
.pt td { padding: 8px 12px; border-top: 1px solid rgba(15,23,42,.05); font-variant-numeric: tabular-nums; }
.pt tbody tr:first-child td { border-top: 0; }
.pt__d { font-weight: 600; color: #0f172a; }
.pt__p { font-family: var(--font-mono); color: #0f172a; }
.pt__pf { font-family: var(--font-mono); font-weight: 600; }
.pt__pf--pos { color: #047857; } .pt__pf--warn { color: #b45309; } .pt__pf--zero { color: #64748b; }
.pt__m { color: #64748b; font-size: 11.5px; }
.pt tr.is-floor td { background: rgba(124,58,237,.06); }
.pt tr.is-floor .pt__d { color: #6d28d9; }
.pt tr.is-floor .pt__m { color: #6d28d9; font-weight: 600; }
.gd__card--price.is-focus .pt tbody tr { opacity: 0; animation: gd-in .45s cubic-bezier(.2,.7,.2,1) forwards; }
.gd__card--price.is-focus .pt tbody tr:nth-child(1) { animation-delay: .15s; } .gd__card--price.is-focus .pt tbody tr:nth-child(2) { animation-delay: .27s; } .gd__card--price.is-focus .pt tbody tr:nth-child(3) { animation-delay: .39s; } .gd__card--price.is-focus .pt tbody tr:nth-child(4) { animation-delay: .51s; } .gd__card--price.is-focus .pt tbody tr:nth-child(5) { animation-delay: .63s; } .gd__card--price.is-focus .pt tbody tr:nth-child(6) { animation-delay: .8s; }
@media (max-width: 640px) { .pt { font-size: 11.5px; } .pt td, .pt th { padding: 7px 8px; } .pt__m { display: none; } .pt th:last-child { display: none; } }

/* Workspaces v2 */
.ws__deck { height: 250px; margin-bottom: 6px; }
.ws__card { border-radius: 16px; box-shadow: 0 22px 44px -24px rgba(15,23,42,.4); }
.ws__card[data-pos="0"] { transform: translateX(-50%) translateY(26px); }
.ws__card[data-pos="1"] { transform: translateX(-50%) translateY(13px) scale(.95); opacity: .85; }
.ws__card[data-pos="2"] { transform: translateX(-50%) translateY(0) scale(.9); opacity: .6; }
.ws__bar { height: 34px; gap: 8px; padding: 0 10px; }
.ws__g { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, #ff1e80, #6000ff); color: #fff; font-size: 11px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.ws__crumb { font-size: 11px; font-weight: 600; color: #334155; background: #f1f5f9; border-radius: 999px; padding: 3px 9px; }
.ws__island { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 600; color: #6d28d9; border: 1px solid rgba(15,23,42,.08); border-radius: 999px; padding: 3px 9px; }
.ws__island i { width: 6px; height: 6px; border-radius: 50%; background: #7c3aed; }
.ws__body { padding: 10px 12px 6px; }
.ws__title { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.ws__live { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 600; color: #047857; background: #ecfdf5; border-radius: 999px; padding: 3px 8px; white-space: nowrap; }
.ws__live i { width: 6px; height: 6px; border-radius: 50%; background: #10b981; }
.ws__kpis { grid-template-columns: repeat(4, 1fr); margin: 8px 0 4px; }
.ws__kpis b.up { color: #047857; }
.ws__chart { width: 100%; height: 64px; display: block; }
.ws__switch { padding: 8px 10px; }
.gd__card--ws .gd__foot { padding-top: 8px; }
@media (max-width: 640px) { .ws__deck { height: 240px; } .ws__kpis { grid-template-columns: repeat(2, 1fr); } .ws__island { display: none; } }

/* Notifications v3: cycling toasts */
.nt__stage { position: relative; height: 292px; border-radius: 14px; overflow: hidden; background: linear-gradient(160deg, rgba(255,255,255,.55), rgba(255,255,255,.25)); border: 1px solid rgba(255,255,255,.8); }
.nt__chips { display: flex; gap: 6px; padding: 10px 12px 0; position: relative; z-index: 2; }
.nt__chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: #475569; background: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.9); border-radius: 999px; padding: 4px 10px; }
.nt__chip svg { width: 13px; height: 13px; }
.nt__chip--slack { color: #1d1c1d; }
.nt__stack { position: absolute; left: 12px; right: 12px; bottom: 12px; top: 46px; }
.nt__toast { position: absolute; left: 0; right: 0; display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-radius: 14px; background: #fff; border: 1px solid rgba(15,23,42,.06); box-shadow: 0 18px 40px -22px rgba(15,23,42,.35); opacity: 0; transform: translateX(40px); transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .5s, top .7s cubic-bezier(.2,.7,.2,1); }
.nt__toast[data-pos="0"] { opacity: 1; transform: none; top: 0; z-index: 4; }
.nt__toast[data-pos="1"] { opacity: 1; transform: none; top: 72px; z-index: 3; }
.nt__toast[data-pos="2"] { opacity: 1; transform: none; top: 144px; z-index: 2; }
.nt__toast[data-pos="3"] { opacity: .0; transform: translateY(10px); top: 216px; z-index: 1; }
.nt__src { width: 32px; height: 32px; border-radius: 9px; background: #fff; border: 1px solid rgba(15,23,42,.06); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nt__src svg { width: 18px; height: 18px; }
.nt__src--app { background: linear-gradient(135deg, #ff1e80, #6000ff); color: #fff; border: 0; }
.nt__src--app svg { width: 16px; height: 16px; }
.nt__tx { flex: 1; min-width: 0; } .nt__tx b { display: block; font-size: 11px; font-weight: 600; color: #64748b; margin-bottom: 2px; } .nt__tx span { display: block; font-size: 12px; line-height: 1.35; color: #334155; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .nt__tx strong { color: #0f172a; font-weight: 600; }
.nt__toast em { font-style: normal; font-family: var(--font-mono); font-size: 10px; color: #94a3b8; white-space: nowrap; }
.nt__toast--slack .nt__tx b { color: #1264a3; }
@media (max-width: 640px) { .nt__stage { height: 270px; } .nt__toast[data-pos="2"] { opacity: 0; } .nt__chips .nt__chip:last-child { display: none; } }
/* pricing table: fit 6 rows */
.pt td { padding: 6px 12px; } .pt th { padding: 8px 12px 6px; }
.gd__card--price .pr__product { padding: 8px 12px 8px 10px; margin-bottom: 8px; }

/* Collaboration v3: zoomed, animated note sequence */
.cn { border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.85); }
.cn__app { position: relative; height: 268px; background: #fff; overflow: hidden; }
.cn__bar { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 12px; border-bottom: 1px solid rgba(15,23,42,.07); background: #fff; position: relative; z-index: 3; }
.cn__g { width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, #ff1e80, #6000ff); color: #fff; font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.cn__crumb { font-size: 11.5px; font-weight: 600; color: #334155; background: #f1f5f9; border-radius: 999px; padding: 3px 10px; }
.cn__spacer { flex: 1; }
.cn__notes { position: relative; display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: #0f172a; background: #fff7c2; border: 1px solid #f0e39a; border-radius: 999px; padding: 4px 10px 4px 8px; transition: box-shadow .3s, transform .3s; }
.cn__notes i { display: inline-flex; } .cn__notes svg { width: 12px; height: 12px; }
.cn__notes b { font-size: 10px; background: #0f172a; color: #fff; border-radius: 999px; padding: 1px 5px; }
.cn__bell { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; color: #334155; } .cn__bell svg { width: 14px; height: 14px; }
.cn__av { width: 22px; height: 22px; border-radius: 50%; background: #6d28d9; color: #fff; font-size: 9.5px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.cn__page { padding: 14px 14px; transition: filter .5s, opacity .5s; }
.cn__ph { border-radius: 8px; background: rgba(15,23,42,.06); }
.cn__ph--t { width: 44%; height: 18px; margin-bottom: 8px; } .cn__ph--s { width: 62%; height: 10px; margin-bottom: 14px; background: rgba(15,23,42,.04); }
.cn__ph-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 8px; } .cn__ph--c { height: 62px; background: linear-gradient(135deg, #f8f5fc, #f3f2fa); border: 1px solid rgba(15,23,42,.05); }
.cn__ph--b { height: 70px; background: linear-gradient(135deg, #fbf7fb, #f6f5fb); border: 1px solid rgba(15,23,42,.05); }
.cn__panel { position: absolute; top: 46px; right: 10px; bottom: 10px; width: 66%; background: #fff7c2; border: 1px solid #f0e39a; border-radius: 14px; padding: 12px 14px; box-shadow: 0 24px 50px -24px rgba(120,90,0,.55); transform: translateX(110%) scale(.98); opacity: 0; z-index: 4; display: flex; flex-direction: column; gap: 8px; }
.cn__panel-top b { display: block; font-size: 13px; color: #1f1c0c; } .cn__panel-top span { font-size: 10.5px; color: #8a7f4a; }
.cn__field { background: rgba(255,255,255,.75); border: 1px solid rgba(120,90,0,.15); border-radius: 10px; padding: 8px 10px; font-size: 12px; color: #1f1c0c; min-height: 32px; position: relative; line-height: 1.45; }
.cn__field--subject { font-weight: 600; } .cn__field--body { flex: 1; }
.cn__type { display: inline-block; white-space: nowrap; overflow: hidden; vertical-align: bottom; width: 0; }
.cn__mention { position: relative; display: inline; }
.cn__resolved { display: none; background: rgba(255,30,128,.12); color: #9d174d; border-radius: 4px; padding: 0 4px; font-weight: 600; }
.cn__pop { position: absolute; left: 10px; top: calc(100% - 4px); background: #fff; border-radius: 12px; border: 1px solid rgba(15,23,42,.08); box-shadow: 0 18px 40px -18px rgba(15,23,42,.4); padding: 4px; display: grid; gap: 2px; min-width: 180px; opacity: 0; transform: translateY(4px); z-index: 5; }
.cn__pop span { display: flex; align-items: center; gap: 8px; padding: 5px 8px; border-radius: 8px; font-size: 11.5px; font-weight: 600; color: #0f172a; } .cn__pop span small { color: #64748b; font-weight: 400; margin-left: auto; }
.cn__pop span.on { background: rgba(124,58,237,.1); } .cn__pop .gd__ico--av { width: 20px; height: 20px; font-size: 8.5px; border-radius: 6px; }
.cn__actions { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cn__hint { font-size: 10px; color: #8a7f4a; } .cn__save { font-size: 11px; font-weight: 600; color: #fff; background: #0f172a; border-radius: 999px; padding: 6px 12px; }
.cn__toast { position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px 8px 8px; border-radius: 999px; background: #0f172a; color: #fff; font-size: 11.5px; box-shadow: 0 16px 34px -16px rgba(15,23,42,.6); opacity: 0; transform: translateY(10px); z-index: 6; }
.cn__toast .gd__ico--av { width: 22px; height: 22px; font-size: 9px; border-radius: 50%; } .cn__toast b { font-weight: 600; }
.cn__cursor { position: absolute; left: 30%; top: 62%; width: 18px; height: 18px; z-index: 7; opacity: 0; filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); }
.cn__cursor svg { width: 18px; height: 18px; }
/* sequence (plays once per focus) */
.gd__card--notes.is-focus .cn__cursor { animation: cn-cursor 2.2s cubic-bezier(.3,.7,.2,1) .3s forwards; }
.gd__card--notes.is-focus .cn__notes { animation: cn-click .5s 2.1s; }
.gd__card--notes.is-focus .cn__page { animation: cn-dim .5s 2.4s forwards; }
.gd__card--notes.is-focus .cn__panel { animation: cn-panel .6s cubic-bezier(.2,.7,.2,1) 2.5s forwards; }
.gd__card--notes.is-focus .cn__type--1 { animation: cn-type 1s steps(17) 3.2s forwards; --w: 17ch; }
.gd__card--notes.is-focus .cn__type--2 { animation: cn-type 2.1s steps(48) 4.3s forwards; --w: 48ch; }
.gd__card--notes.is-focus .cn__type--3 { animation: cn-type .4s steps(3) 6.5s forwards; --w: 3.2ch; }
.gd__card--notes.is-focus .cn__pop { animation: cn-pop 3s 6.9s forwards; }
.gd__card--notes.is-focus .cn__toast { animation: cn-toast .6s cubic-bezier(.2,.7,.2,1) 9s forwards; }
.gd__card--notes.is-focus .cn__save { animation: cn-click .5s 8.7s; }
@keyframes cn-cursor { 0% { opacity: 0; left: 30%; top: 62%; } 15% { opacity: 1; } 100% { opacity: 1; left: calc(100% - 96px); top: 12px; } }
@keyframes cn-click { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(124,58,237,.35); } 40% { transform: scale(.94); } 100% { transform: scale(1); box-shadow: 0 0 0 12px rgba(124,58,237,0); } }
@keyframes cn-dim { to { filter: blur(1.5px); opacity: .55; } }
@keyframes cn-panel { to { transform: none; opacity: 1; } }
@keyframes cn-type { from { width: 0; } to { width: var(--w, 100%); } }
@keyframes cn-pop { 0% { opacity: 0; transform: translateY(4px); } 12% { opacity: 1; transform: none; } 86% { opacity: 1; transform: none; } 100% { opacity: 0; transform: translateY(4px); } }
@keyframes cn-hide { to { display: none; width: 0; opacity: 0; } }
@keyframes cn-show { to { display: inline; } }
@keyframes cn-toast { to { opacity: 1; transform: none; } }
@media (max-width: 640px) { .cn__app { height: 280px; } .cn__panel { width: 88%; } .cn__crumb { display: none; } }
.gd__card--notes.is-resolved .cn__type--3 { display: none; }
.gd__card--notes.is-resolved .cn__resolved { display: inline; }
.cn__panel { padding: 10px 12px; gap: 6px; }
.cn__field { min-height: 30px; padding: 7px 10px; }
@media (max-width: 640px) { .cn__app { height: 260px; } }
.cn__toast { left: 12px; top: 52px; bottom: auto; max-width: calc(34% - 20px); border-radius: 12px; padding: 8px 10px; align-items: flex-start; white-space: normal; }
.cn__toast span { line-height: 1.3; font-size: 11px; } .cn__toast b { display: block; }

/* ── Getting started slide: centred title + lead, animated subscribe sequence + steps ── */
.slide--gs { display: grid; grid-template-columns: 1fr; grid-template-rows: auto 1fr; gap: clamp(24px, 3.2vw, 44px); align-items: start; }
.gs__head { text-align: center; max-width: 62ch; margin: 0 auto; }
.gs__head h2 { font-size: clamp(34px, 4.2vw, 64px); line-height: 1.02; margin-bottom: 14px; }
.gs__head .lead { max-width: 60ch; margin: 0 auto; font-size: clamp(16px, 1.2vw, 19px); font-weight: 300; line-height: 1.55; color: var(--ink-soft); }
.gs__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.gs__body { padding-top: 0; }
.gs { position: relative; width: 100%; border-radius: 24px; overflow: hidden; background: linear-gradient(135deg, #eef0f5 0%, #e6e9f0 55%, #e9e6f0 100%); box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 30px 80px -40px rgba(15,23,42,.35); aspect-ratio: 16 / 10.5; min-height: 300px; }
@media (max-width: 1000px) { .gs__grid { grid-template-columns: 1fr; } .slide--gs { gap: 18px; } }
@media (min-width: 1001px) and (max-height: 800px) { .gs__head h2 { font-size: clamp(32px, 3.2vw, 46px); margin-bottom: 8px; } .gs__head .lead { font-size: 16px; } .gs { min-height: 0; } }

/* ── Getting started sequence (js/gs-sequence.js) ───────────────────────── */
.gs { font-family: var(--font-sans); color: #0f172a; }
.gs-scale { position: absolute; left: 0; top: 0; width: 560px; height: 368px; transform-origin: 0 0; }
.gs-scene { position: absolute; inset: 0; opacity: 0; transform: scale(.985); transition: opacity .55s ease, transform .7s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.gs[data-scene="1"] .gs-scene--login, .gs[data-scene="2"] .gs-scene--home, .gs[data-scene="3"] .gs-scene--subs, .gs[data-scene="4"] .gs-scene--checkout, .gs[data-scene="5"] .gs-scene--done { opacity: 1; transform: none; }
.gs-g { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.04em; background: linear-gradient(to top right, #ff1e80 16%, #9c32b0 51%, #6000ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; line-height: 1; }
.gs-steps { display: none; }
.gs-steps span { font-size: 10px; font-weight: 600; color: rgba(15,23,42,.5); background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.8); border-radius: 999px; padding: 3px 8px; transition: background .3s, color .3s; white-space: nowrap; }
.gs-steps span.on { background: #0f172a; color: #fff; } .gs-steps span.done { color: #0f172a; background: rgba(255,255,255,.85); }
/* cursor */
.gs-cursor { position: absolute; left: 52%; top: 62%; width: 16px; height: 16px; z-index: 20; opacity: 0; filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); transition: left 1.1s cubic-bezier(.3,.7,.2,1), top 1.1s cubic-bezier(.3,.7,.2,1), opacity .3s; }
.gs-cursor svg { width: 16px; height: 16px; }
.gs.is-playing .gs-cursor { opacity: 1; }
/* generic mini-app pieces */
.gs-app { position: absolute; inset: 14px 14px 34px; background: #fff; border-radius: 14px; border: 1px solid rgba(15,23,42,.08); box-shadow: 0 24px 60px -30px rgba(15,23,42,.4); overflow: hidden; }
.gs-app--dim { filter: blur(2px); opacity: .55; }
.gs-skybar { display: flex; align-items: center; gap: 6px; height: 30px; padding: 0 10px; border-bottom: 1px solid rgba(15,23,42,.07); background: #fff; font-size: 10px; }
.gs-skylogo { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, #ff1e80, #6000ff); color: #fff; font-size: 10px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.gs-crumb { font-weight: 600; color: #334155; background: #f1f5f9; border-radius: 999px; padding: 2px 8px; } .gs-crumb--ghost { background: #fff; border: 1px solid rgba(15,23,42,.12); }
.gs-sep { color: #94a3b8; } .gs-spacer { flex: 1; }
.gs-av { width: 18px; height: 18px; border-radius: 50%; background: #6d28d9; color: #fff; font-size: 8.5px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.gs-appbody { padding: 12px 16px; text-align: center; }
.gs-appbody h3 { margin: 0; font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; } .gs-appbody > p { margin: 2px 0 10px; font-size: 9.5px; color: #64748b; }
.gs-ico { display: inline-block; width: 16px; height: 16px; border-radius: 5px; background: linear-gradient(135deg, #f5f3ff, #ede9fe); margin-right: 6px; vertical-align: -3px; border: 1px solid rgba(109,40,217,.15); }
.gs-ico--ag { background: linear-gradient(135deg, #eff6ff, #dbeafe); } .gs-ico--lg { background: linear-gradient(135deg, #ecfdf5, #d1fae5); } .gs-ico--fb { background: linear-gradient(135deg, #fdf2f8, #fce7f3); } .gs-ico--kt { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.gs-btn { display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: #fff; border-radius: 8px; height: 30px; padding: 0 12px; position: relative; transition: transform .2s; }
.gs-btn--grad { background: linear-gradient(120deg, #ff1e80 0%, #9c32b0 50%, #6000ff 100%); width: 100%; border-radius: 999px; }
.gs-btn--sub { background: linear-gradient(90deg, #a855f7, #ec4899); width: 100%; margin-top: 8px; }
.gs-btn--ghost { opacity: .45; }
.gs-click { animation: gs-click .5s; }
@keyframes gs-click { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(124,58,237,.4); } 40% { transform: scale(.96); } 100% { transform: scale(1); box-shadow: 0 0 0 12px rgba(124,58,237,0); } }
.gs-type { display: inline-block; white-space: nowrap; overflow: hidden; width: 0; vertical-align: bottom; }
/* 1 · login */
.gs-scene--login { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); }
.gs-scene--login > .gs-g { position: absolute; left: 14px; top: 12px; }
.gs-login { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 230px; background: #fff; border-radius: 12px; padding: 18px 18px 14px; box-shadow: 0 20px 50px -20px rgba(15,23,42,.35); overflow: hidden; }
.gs-topbar { position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, #ff1e80, #9c32b0, #6000ff); }
.gs-login h4 { margin: 2px 0 10px; text-align: center; font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.gs-gbtn { display: flex; align-items: center; justify-content: center; gap: 6px; height: 26px; border: 1.5px solid #dadce0; border-radius: 6px; font-size: 9.5px; font-weight: 500; color: #3c4043; }
.gs-gbtn i { width: 10px; height: 10px; border-radius: 50%; background: conic-gradient(#ea4335 0 25%, #fbbc05 0 50%, #34a853 0 75%, #4285f4 0); }
.gs-or { display: flex; align-items: center; gap: 8px; margin: 8px 0; font-size: 8px; color: #94a3b8; } .gs-or::before, .gs-or::after { content: ""; flex: 1; height: 1px; background: #e5e7eb; }
.gs-login label { display: flex; justify-content: space-between; font-size: 8.5px; font-weight: 600; color: #374151; margin: 6px 0 3px; } .gs-login label em { font-style: normal; font-weight: 400; color: #635bff; }
.gs-input { height: 24px; border: 1px solid #d1d5db; border-radius: 6px; padding: 0 8px; font-size: 9.5px; display: flex; align-items: center; color: #111827; }
.gs-caret { width: 1px; height: 12px; background: #635bff; margin-left: 1px; animation: gs-blink 1s steps(1) infinite; }
@keyframes gs-blink { 50% { opacity: 0; } }
.gs-check { display: flex; align-items: center; gap: 6px; font-size: 8.5px; color: #374151; margin: 7px 0; } .gs-check i { width: 10px; height: 10px; border: 1px solid #9ca3af; border-radius: 2px; background: #fff; position: relative; }
.gs-check.is-on i { background: #6d28d9; border-color: #6d28d9; } .gs-check.is-on i::after { content: ""; position: absolute; left: 3px; top: 1px; width: 3px; height: 6px; border: solid #fff; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.gs-login .gs-btn--grad { height: 28px; font-size: 11px; }
.gs-outline { margin-top: 6px; height: 24px; border: 1px solid #d1d5db; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 600; color: #374151; }
@keyframes gs-type { from { width: 0; } to { width: var(--w, 100%); } }
/* 2 · home */
.gs-scene--home { background: #eef1f5; }
.gs-home { position: absolute; inset: 14px 14px 34px; background: #fff; border-radius: 14px; display: grid; grid-template-columns: 38% 62%; overflow: hidden; border: 1px solid rgba(15,23,42,.06); box-shadow: 0 24px 60px -30px rgba(15,23,42,.35); }
.gs-home::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, #ff1e80, #9c32b0, #6000ff); }
.gs-home__seam { position: absolute; left: 38%; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, #ff1e80, #6000ff); opacity: .35; }
.gs-home__left { padding: 18px 16px; } .gs-home__left h3 { margin: 12px 0 6px; font-family: var(--font-display); font-size: 15px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; } .gs-home__left p { margin: 0 0 8px; font-size: 8.5px; color: #64748b; line-height: 1.4; }
.gs-home__left ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; } .gs-home__left li { font-size: 8px; color: #334155; padding-left: 12px; position: relative; } .gs-home__left li::before { content: "✓"; position: absolute; left: 0; color: #9c32b0; font-weight: 700; }
.gs-home__right { padding: 14px 16px; overflow: hidden; } .gs-home__right h5 { margin: 0 0 6px; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: -0.01em; }
.gs-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.gs-tile { border: 1px solid rgba(15,23,42,.08); border-radius: 8px; padding: 8px 9px; background: linear-gradient(135deg, #fdfbff, #f7f6fc); } .gs-tile b { display: block; font-size: 10px; font-weight: 600; } .gs-tile span { display: block; font-size: 8px; color: #64748b; margin: 2px 0 5px; } .gs-tile em { font-style: normal; font-size: 8px; font-weight: 600; color: #334155; border: 1px solid rgba(15,23,42,.1); border-radius: 999px; padding: 2px 6px; }
.gs-sys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.gs-sys__t { border: 1px solid rgba(15,23,42,.08); border-radius: 8px; padding: 7px 8px; background: #fff; transition: box-shadow .3s, transform .3s, border-color .3s; } .gs-sys__t b { display: block; font-size: 9.5px; font-weight: 600; } .gs-sys__t span { display: block; font-size: 7.5px; color: #64748b; margin-top: 2px; line-height: 1.3; }
@keyframes gs-hot { to { border-color: #7c3aed; box-shadow: 0 0 0 3px rgba(124,58,237,.15); transform: translateY(-1px); } }
/* 3 · subscriptions */
.gs-scene--subs { background: #eef1f5; }
.gs-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; text-align: left; }
.gs-plan { position: relative; border: 1px solid rgba(15,23,42,.08); border-radius: 10px; padding: 12px 10px 10px; background: #fff; box-shadow: 0 6px 16px -10px rgba(15,23,42,.2); }
.gs-plan--hot { box-shadow: 0 12px 26px -12px rgba(124,58,237,.35); border-color: rgba(124,58,237,.25); }
.gs-badge { position: absolute; top: -7px; left: 50%; transform: translateX(-50%); font-size: 7px; font-weight: 800; letter-spacing: .06em; color: #fff; background: linear-gradient(90deg, #a855f7, #ec4899); border-radius: 999px; padding: 2px 7px; }
.gs-plan > b { display: block; font-family: var(--font-display); font-size: 12px; font-weight: 700; margin-bottom: 4px; } .gs-plan__d { display: block; font-size: 7.5px; color: #64748b; line-height: 1.35; min-height: 30px; }
.gs-price { margin: 6px 0 2px; display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; } .gs-price b { font-family: var(--font-display); font-size: 16px; font-weight: 800; } .gs-price span { font-size: 8px; color: #64748b; } .gs-price s { font-size: 8px; color: #94a3b8; } .gs-price em { font-style: normal; font-size: 7px; font-weight: 800; color: #fff; background: linear-gradient(90deg, #a855f7, #ec4899); border-radius: 999px; padding: 1px 5px; }
.gs-usage { font-size: 7.5px; color: #475569; }
/* 4 · checkout overlay */
.gs-scene--checkout { background: #eef1f5; }
.gs-overlay { position: absolute; left: 22px; right: 22px; top: 22px; bottom: 40px; background: #fff; border-radius: 12px; box-shadow: 0 30px 70px -30px rgba(15,23,42,.5); overflow: hidden; display: flex; flex-direction: column; }
.gs-scene--checkout::before { content: ""; position: absolute; inset: 14px 14px 34px; background: rgba(15,23,42,.35); border-radius: 14px; }
.gs-overlay__bar { display: flex; align-items: center; gap: 8px; height: 26px; padding: 0 10px; background: #f8fafc; border-bottom: 1px solid rgba(15,23,42,.07); } .gs-overlay__bar .gs-g { font-size: 12px; } .gs-overlay__bar i { width: 1px; height: 12px; background: #cbd5e1; } .gs-overlay__bar b { font-size: 10px; } .gs-overlay__bar span { margin-left: auto; color: #94a3b8; font-size: 12px; }
.gs-overlay__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 10px; padding: 10px 12px; flex: 1; }
.gs-co-left h3 { margin: 0; font-family: var(--font-display); font-size: 14px; font-weight: 700; } .gs-plan-tag { margin: 0 0 6px; font-size: 8.5px; color: #7c3aed; font-weight: 600; }
.gs-tabs { display: flex; gap: 8px; font-size: 8px; color: #64748b; border-bottom: 1px solid rgba(15,23,42,.08); margin-bottom: 8px; } .gs-tabs span { padding: 0 0 4px; } .gs-tabs span.on { color: #0f172a; font-weight: 600; border-bottom: 2px solid #7c3aed; }
.gs-pay h6 { margin: 0 0 5px; font-size: 9.5px; font-weight: 700; }
.gs-cardfield { display: flex; align-items: center; gap: 6px; height: 26px; border: 1px solid #d1d5db; border-radius: 6px; padding: 0 8px; font-size: 9.5px; font-family: var(--font-mono); color: #111827; } .gs-cardfield em { margin-left: auto; font-style: normal; color: #9ca3af; font-size: 8px; }
.gs-cc { width: 16px; height: 11px; border-radius: 2px; background: linear-gradient(135deg, #1a1f71, #2563eb); }
.gs-check--agree { margin: 7px 0 8px; font-size: 8px; }
.gs-btn--complete { height: 30px; border-radius: 8px; font-size: 10.5px; } .gs-btn__b { display: none; }
.gs-summary { border: 1px solid rgba(15,23,42,.08); border-radius: 10px; overflow: hidden; margin-bottom: 8px; } .gs-summary h6 { margin: 0; background: #f8fafc; padding: 5px 10px; font-size: 9px; font-weight: 700; border-bottom: 1px solid rgba(15,23,42,.07); }
.gs-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; padding: 5px 10px; font-size: 8.5px; color: #334155; } .gs-row b { color: #0f172a; font-weight: 600; } .gs-row small { font-weight: 400; color: #64748b; } .gs-row s { color: #94a3b8; font-weight: 400; margin-left: 3px; }
.gs-row--due { border-top: 1px solid rgba(15,23,42,.08); font-size: 10px; } .gs-row--due b { font-size: 12px; font-weight: 700; }
.gs-chip { font-style: normal; font-size: 7px; font-weight: 700; color: #1d4ed8; background: #dbeafe; border-radius: 999px; padding: 1px 5px; margin-left: 3px; }
.gs-note { padding: 0 10px 4px; font-size: 7.5px; color: #64748b; } .gs-note b { color: #1d4ed8; }
.gs-off { font-style: normal; font-size: 7px; font-weight: 800; color: #fff; background: linear-gradient(90deg, #a855f7, #ec4899); border-radius: 999px; padding: 1px 5px; } .gs-free { color: #047857 !important; }
@keyframes gs-tick { to { color: #0f172a; } }
@keyframes gs-tickbox { to { background: #6d28d9; border-color: #6d28d9; } }
@keyframes gs-hide { to { display: none; opacity: 0; } } @keyframes gs-show { to { display: inline; } }
/* 5 · success */
.gs-scene--done { background: #eef1f5; }
.gs-success { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 250px; background: #fff; border-radius: 16px; padding: 22px 20px 18px; text-align: center; box-shadow: 0 30px 70px -30px rgba(15,23,42,.5); }
.gs-tick { width: 44px; height: 44px; border-radius: 50%; background: #dcfce7; color: #16a34a; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 10px; } .gs-tick svg { width: 22px; height: 22px; }
.gs-success h3 { margin: 0 0 4px; font-family: var(--font-display); font-size: 14px; font-weight: 700; } .gs-success p { margin: 0 0 10px; font-size: 9px; color: #64748b; }
.gs-spin { display: inline-block; width: 18px; height: 18px; border-radius: 50%; border: 2px solid #ede9fe; border-top-color: #7c3aed; animation: gs-rot .9s linear infinite; }
@keyframes gs-rot { to { transform: rotate(360deg); } }
@keyframes gs-pop { from { transform: scale(.6); opacity: 0; } to { transform: none; opacity: 1; } }
@media (max-width: 640px) { .gs-steps { gap: 4px; } .gs-steps span { font-size: 9px; padding: 2px 6px; } }
@media (max-width: 640px) { .gs { min-height: 0; aspect-ratio: auto; } }
.gs { max-width: 640px; margin: 0 auto; }
.gs__body .steps--compact { margin-top: 0; }
@media (min-width: 1001px) and (max-height: 880px) {
    .slide--gs { padding-top: 10px; padding-bottom: 6px; gap: 12px; }
    .gs__head h2 { font-size: clamp(28px, 2.8vw, 40px); margin-bottom: 6px; }
    .gs__head .lead { font-size: 15px; }
    .gs { max-width: 500px; }
    .gs__grid { gap: 22px; }
    .gs__body p { margin-bottom: 8px; font-size: 15px; }
    .gs__body .steps--compact li { padding: 4px 0; } .gs__body .steps--compact li span { font-size: 14px; }
    .gs__body .steps-outro, .gs__body .steps-help { font-size: 14px; margin-top: 8px !important; }
}
@media (min-width: 1001px) and (min-height: 881px) and (max-height: 940px) { .gs { max-width: 560px; } .gs__head h2 { font-size: clamp(30px, 3vw, 48px); } }
@media (min-width: 1001px) and (min-height: 881px) and (max-height: 940px) { .gs { max-width: 540px; } .slide--gs { gap: 14px; } }

/* getting-started sequence v2: JS-driven cursor/typing/captions */
.gs-cursor { transition: left 1s cubic-bezier(.3,.7,.2,1), top 1s cubic-bezier(.3,.7,.2,1), opacity .3s, transform .15s; }
.gs-cursor.is-click { animation: gs-cursor-click .35s; }
@keyframes gs-cursor-click { 40% { transform: scale(.82); } }
.gs-type.is-typed { animation: gs-type 1.3s steps(20) forwards; --w: 20ch; }
.gs-type[data-gs-type="email"].is-typed { --w: 17ch; animation-duration: 1.3s; }
.gs-type[data-gs-type="pw"].is-typed { --w: 10ch; animation-duration: .7s; }
.gs-type[data-gs-type="card"].is-typed { --w: 19ch; animation-duration: 1.6s; }
.gs.is-processing .gs-btn__a { display: none; } .gs.is-processing .gs-btn__b { display: inline; }
.gs-gmark { width: 11px; height: 11px; }
.gs-caption { position: absolute; left: 12px; bottom: 12px; z-index: 30; display: flex; align-items: center; gap: 10px; max-width: 62%; padding: 8px 12px 8px 8px; border-radius: 14px; background: rgba(255,255,255,.62); -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); border: 1px solid rgba(255,255,255,.85); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 14px 34px -18px rgba(15,23,42,.35); }
.gs-caption__n { flex-shrink: 0; width: 30px; height: 30px; border-radius: 10px; background: #0f172a; color: #fff; font-family: var(--font-mono); font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; gap: 1px; } .gs-caption__n small { font-size: 8px; opacity: .6; }
.gs-caption__t { font-size: 12.5px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.gs-success h3 { font-size: 15px; } .gs-success p { font-size: 9.5px; }
.gs[data-scene="5"] .gs-success { animation: gs-pop .5s cubic-bezier(.2,.7,.2,1); }
@media (max-width: 640px) { .gs-caption { left: 8px; bottom: 8px; max-width: calc(100% - 16px); padding: 6px 10px 6px 6px; } .gs-caption__t { font-size: 11px; } .gs-caption__n { width: 24px; height: 24px; font-size: 10px; } }
/* getting-started: clickable step pills under the frame + compact caption + smaller chrome */
.gs-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.gs-pills button { font: inherit; font-size: 12px; font-weight: 600; color: var(--ink-soft); background: rgba(17,17,16,.05); border: 0; border-radius: 999px; padding: 6px 12px; cursor: pointer; transition: background .25s, color .25s; }
.gs-pills button:hover { color: var(--ink); background: rgba(17,17,16,.09); }
.gs-pills button.on { background: var(--ink); color: #fff; } .gs-pills button.done { color: var(--ink); }
.gs-caption { max-width: 70%; padding: 6px 10px 6px 6px; border-radius: 12px; gap: 8px; }
.gs-caption__n { width: 24px; height: 24px; border-radius: 8px; font-size: 10.5px; } .gs-caption__t { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gs-app, .gs-home, .gs-scene--checkout::before { bottom: 46px; }
.gs-overlay { bottom: 52px; }
.gs-skybar { height: 26px; font-size: 8.5px; gap: 5px; } .gs-skylogo { width: 14px; height: 14px; font-size: 9px; } .gs-crumb { padding: 2px 7px; } .gs-av { width: 16px; height: 16px; font-size: 8px; }
.gs-row b s { font-size: 7.5px; }
.gs-appbody h3 { font-size: 16px; } .gs-appbody > p { margin-bottom: 8px; }
@media (max-width: 640px) { .gs-pills button { font-size: 11px; padding: 5px 9px; } }
.gs__wrap { min-width: 0; max-width: 760px; margin: 0 auto; width: 100%; }
.gs__wrap .gs { max-width: none; }
@media (min-width: 1001px) and (max-height: 880px) { .gs-pills { margin-top: 8px; } .gs-pills button { font-size: 11px; padding: 5px 10px; } }

.gs[data-scene="5"] .gs-cursor, .gs[data-scene="0"] .gs-cursor { opacity: 0; }

/* getting-started v3: centred caption, welcome overlay scene, stable success pop */
.gs-caption { left: 50%; right: auto; transform: translateX(-50%); bottom: 10px; max-width: 80%; padding: 6px 12px 6px 6px; gap: 9px; }
.gs-caption__n { width: 26px; height: 26px; border-radius: 50%; font-family: var(--font-sans); font-size: 12px; font-weight: 700; background: linear-gradient(135deg, #ff1e80, #6000ff); } .gs-caption__n small { display: none; }
.gs-caption__t { font-size: 11.5px; font-weight: 500; color: #0f172a; }
@keyframes gs-pop { from { transform: translate(-50%, -50%) scale(.7); opacity: 0; } to { transform: translate(-50%, -50%); opacity: 1; } }
.gs[data-scene="5"] .gs-success, .gs[data-scene="6"] .gs-welcome { animation: gs-pop .5s cubic-bezier(.2,.7,.2,1); }
.gs[data-scene="6"] .gs-scene--welcome { opacity: 1; transform: none; }
.gs[data-scene="6"] .gs-cursor { opacity: 0; }
.gs-scene--welcome { background: #eef1f5; }
.gs-welcome { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 78%; max-height: 84%; background: #fff; border-radius: 14px; box-shadow: 0 30px 70px -30px rgba(15,23,42,.5); overflow: hidden; }
.gs-welcome__x { position: absolute; right: 10px; top: 8px; color: #94a3b8; font-size: 12px; }
.gs-welcome__head { padding: 12px 16px 4px; } .gs-welcome__eyebrow { display: block; font-size: 7.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: linear-gradient(to right, #ff1e80, #9c32b0, #6000ff); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; margin-bottom: 2px; }
.gs-welcome__head h3 { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; color: #0f172a; }
.gs-welcome__tabs { display: flex; gap: 3px; padding: 6px 16px 0; border-bottom: 1px solid #e5e7eb; } .gs-welcome__tabs span { font-size: 8.5px; font-weight: 600; color: #64748b; padding: 5px 9px; border-radius: 6px 6px 0 0; } .gs-welcome__tabs span.on { background: #f8fafc; color: #0f172a; border: 1px solid #e5e7eb; border-bottom-color: #f8fafc; margin-bottom: -1px; }
.gs-welcome__body { background: #f8fafc; padding: 10px 16px 12px; font-size: 8.5px; color: #475569; line-height: 1.5; }
.gs-welcome__body > p { margin: 0 0 8px; } .gs-welcome__body h4 { margin: 0 0 6px; font-size: 9.5px; font-weight: 600; color: #0f172a; }
.gs-welcome__body ol { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 5px; } .gs-welcome__body li { position: relative; padding-left: 20px; font-size: 8px; } .gs-welcome__body li i { position: absolute; left: 0; top: 0; width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, rgba(255,30,128,.12), rgba(96,0,255,.12)); color: #6000ff; font-style: normal; font-size: 8px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; } .gs-welcome__body li b { color: #0f172a; }
.gs-welcome__callout { background: linear-gradient(135deg, rgba(255,30,128,.05), rgba(156,50,176,.05), rgba(96,0,255,.05)); border: 1px solid rgba(156,50,176,.15); border-radius: 8px; padding: 8px 10px; } .gs-welcome__callout b { display: block; font-size: 8.5px; color: #6000ff; margin-bottom: 3px; } .gs-welcome__callout p { margin: 0 0 5px; font-size: 8px; } .gs-welcome__callout .gs-check { margin: 0; font-size: 8px; }
.gs-welcome__cont { margin: 8px 0 0 !important; font-size: 8px; } .gs-welcome__cont em { font-style: normal; color: #7c3aed; font-weight: 600; }
.gs-welcome { top: 46%; max-height: 78%; }
.gs-overlay__bar { justify-content: flex-start; text-align: left; } .gs-overlay__bar .gs-g { margin: 0; } .gs-overlay__bar b { margin: 0; }

/* ── trust row (Brands · How we help) ───────────────────────────────────── */
.trust { list-style: none; margin: clamp(22px, 3vw, 36px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; max-width: 34ch; }
.trust__item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 14px; background: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.85); box-shadow: 0 1px 2px rgba(17,17,16,.03), 0 10px 24px -18px rgba(17,17,16,.25); min-width: 0; }
.trust__item i { width: 30px; height: 30px; border-radius: 9px; background: rgba(17,17,16,.05); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust__item i svg { width: 16px; height: 16px; }
.trust__item img { width: 34px; height: 34px; border-radius: 9px; background: #fff; object-fit: cover; flex-shrink: 0; }
.trust__item span { display: flex; flex-direction: column; min-width: 0; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.15; letter-spacing: -0.005em; }
.trust__item small { font-size: 11px; font-weight: 400; color: var(--ink-mute); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 1000px) { .trust { max-width: none; } }
@media (max-width: 420px) { .trust { grid-template-columns: 1fr; } }
@media (min-width: 1001px) and (max-height: 820px) { .trust { margin-top: 16px; gap: 6px; } .trust__item { padding: 7px 10px; } }
.trust { max-width: 540px; gap: 10px; }
.trust__item span { white-space: nowrap; font-size: 13.5px; }
.trust__item small { font-size: 11.5px; }
.trust__item img { width: 36px; height: 36px; }
@media (min-width: 1001px) and (max-width: 1200px) { .trust { grid-template-columns: 1fr; max-width: 300px; } }
/* trust row: one quiet row, no boxes */
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; max-width: none; margin-top: clamp(20px, 2.6vw, 32px); }
.trust__item { padding: 0; background: transparent; border: 0; box-shadow: none; border-radius: 0; gap: 9px; }
.trust__item i { width: 26px; height: 26px; border-radius: 8px; background: rgba(17,17,16,.06); }
.trust__item i svg { width: 14px; height: 14px; }
.trust__item img { width: 28px; height: 28px; border-radius: 7px; }
.trust__item span { font-size: 12.5px; }
.trust__item small { font-size: 10.5px; }
@media (min-width: 1001px) and (max-width: 1200px) { .trust { grid-template-columns: none; max-width: none; } }
@media (max-width: 420px) { .trust { gap: 10px 16px; } }
/* trust row: single line */
.trust { flex-wrap: nowrap; gap: 16px; }
.trust__item { gap: 8px; }
.trust__item i { width: 24px; height: 24px; border-radius: 7px; } .trust__item i svg { width: 13px; height: 13px; }
.trust__item img { width: 26px; height: 26px; }
.trust__item span { font-size: 12px; } .trust__item small { font-size: 10px; }
@media (max-width: 1000px) { .trust { flex-wrap: wrap; } }
/* trust row: icon above, text beneath */
.trust { gap: 26px; align-items: flex-start; }
.trust__item { flex-direction: column; align-items: center; text-align: center; gap: 7px; }
.trust__item span { align-items: center; font-size: 12px; line-height: 1.2; }
.trust__item small { font-size: 10px; }
.trust__item i { width: 30px; height: 30px; border-radius: 9px; } .trust__item i svg { width: 15px; height: 15px; }
.trust__item img { width: 32px; height: 32px; border-radius: 8px; }
@media (max-width: 1000px) { .trust { flex-wrap: wrap; gap: 18px 22px; } }
/* trust row anchored to the slide baseline (scales with viewport) */
.slide--trust { align-self: stretch; }
.slide--trust > div:first-child { display: flex; flex-direction: column; min-height: 100%; }
.slide--trust .trust { margin-top: auto; padding-top: clamp(20px, 3vw, 40px); }
@media (max-width: 1000px) { .slide--trust { align-self: auto; } .slide--trust > div:first-child { min-height: 0; } .slide--trust .trust { margin-top: 22px; padding-top: 0; } }
/* trust row: badges pinned to the slide baseline, content stays centred */
.slide--trust { align-self: stretch; align-items: center; position: relative; padding-bottom: 96px; }
.slide--trust > div:first-child { display: block; min-height: 0; }
.slide--trust .trust { position: absolute; left: clamp(0px, 3vw, 56px); bottom: clamp(8px, 1.5vw, 20px); margin: 0; padding: 0; }
@media (max-width: 1000px) { .slide--trust { align-self: auto; padding-bottom: 0; } .slide--trust .trust { position: static; margin-top: 22px; } }
/* /l/google-shopping/ landing: hero above the scorecard */
.fg--gsm { padding-top: clamp(24px, 5vh, 64px); padding-bottom: 8px; }
.fg--gsm .fg__sub { max-width: 52ch; }
.fg--gsm .meth__cta-btns { justify-content: center; margin-bottom: 22px; }
.gsm__ticks { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; max-width: 900px; margin: 0 auto; }
.gsm__ticks li { font-size: 15px; } .gsm__ticks li sup { font-size: .55em; vertical-align: top; position: relative; top: .2em; }
.gsm__scroll { margin: 26px 0 0; font-size: 13px; color: var(--ink-mute); }
.fg--gsm + .sc .fg { padding-top: 10px; }
.fg--gsm + .sc .fg h1 { font-size: clamp(30px, 3.4vw, 52px); }
/* scenes carry the same tinted stage as our feature cards (opaque, so the crossfade stays clean) */
.gs-scene--login, .gs-scene--home, .gs-scene--subs, .gs-scene--checkout, .gs-scene--done, .gs-scene--welcome {
    background:
        radial-gradient(420px 420px at 8% -6%, rgba(251,227,239,.85), rgba(251,227,239,0) 70%),
        radial-gradient(480px 480px at 96% 104%, rgba(224,220,249,.85), rgba(224,220,249,0) 70%),
        linear-gradient(135deg, #eef0f5 0%, #e6e9f0 55%, #e9e6f0 100%);
}

/* shared: "offer applied" panel used on the getting-started sections */
/* redeem: applying-discount panel */
.gsm-start__stepsh { font-size: 15px; font-weight: 600; color: var(--ink); margin: 0 0 6px; }
.apl { display: none; align-items: center; gap: 14px; padding: 16px 18px; margin-bottom: 20px; border-radius: 18px; background: #fff; border: 1px solid rgba(17,17,16,.06); box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 14px 40px -24px rgba(17,17,16,.3); }
.apl.is-open { display: flex; animation: gd-in .45s cubic-bezier(.2,.7,.2,1) both; }
.apl__ico { position: relative; width: 34px; height: 34px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(17,17,16,.05); color: #047857; }
.apl__spin { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(17,17,16,.12); border-top-color: #6000ff; animation: gs-rot .8s linear infinite; }
.apl__tick { width: 18px; height: 18px; display: none; }
.apl.is-done .apl__ico { background: #dcfce7; } .apl.is-done .apl__spin { display: none; } .apl.is-done .apl__tick { display: block; }
.apl__tx { flex: 1; min-width: 0; display: grid; gap: 2px; }
.apl__tx b { font-size: 14.5px; font-weight: 600; color: var(--ink); } .apl__done { display: none; }
.apl.is-done .apl__working { display: none; } .apl.is-done .apl__done { display: block; }
.apl__sub { font-size: 12.5px; color: var(--ink-mute); }
.apl__btn { height: 44px; padding: 0 18px; font-size: 14.5px; opacity: 0; pointer-events: none; transition: opacity .3s; white-space: nowrap; }
.apl.is-done .apl__btn { opacity: 1; pointer-events: auto; }
@media (max-width: 640px) { .apl { flex-wrap: wrap; } .apl__btn { width: 100%; justify-content: center; } }
.gs__body .apl { margin-bottom: 18px; }
@media (min-width: 1001px) and (max-height: 880px) { .gs__body .apl { padding: 12px 14px; margin-bottom: 12px; } .gs__body .apl__tx b { font-size: 14px; } .gs__body .apl__btn { height: 40px; font-size: 13.5px; } }
/* deck getting-started: keep the slide inside the viewport with the offer panel present */
@media (min-width: 1001px) {
    .gs__body .apl { padding: 12px 14px; margin-bottom: 14px; gap: 12px; }
    .gs__body .apl__tx b { font-size: 14.5px; } .gs__body .apl__sub { font-size: 12px; }
    .gs__body .apl__btn { height: 42px; padding: 0 16px; font-size: 14px; }
    .gs__body .apl__ico { width: 30px; height: 30px; }
}
.lbar__right { justify-self: end; display: inline-flex; align-items: center; gap: 8px; }
.lbar__right .lbar__apply, .lbar__right .lbar__launch { justify-self: auto; }
@media (max-width: 700px) { .lbar__right .lbar__launch { display: none; } }
/* deck getting-started: reclaim height so the slide still fits with the offer panel */
@media (min-width: 1001px) and (max-height: 960px) {
    .gs__body .apl { padding: 10px 12px; margin-bottom: 10px; }
    .gs__body .apl__sub { display: none; }
    .gs__body .apl__tx b { font-size: 14px; }
    .gs__body .apl__btn { height: 38px; font-size: 13.5px; }
    .slide--gs .gs__body p { margin-bottom: 10px; }
    .slide--gs .steps--compact li { padding: 3px 0; }
    .slide--gs .steps-outro, .slide--gs .steps-help { margin-top: 8px !important; }
}
/* deck getting-started at 1280×720 / 1440×900: trim a little more */
@media (min-width: 1001px) and (max-height: 920px) {
    .gs__head h2 { font-size: clamp(34px, 4.2vw, 60px); margin-bottom: 10px; }
    .gs__head .lead { font-size: 16px; }
    .slide--gs { gap: 10px; padding-top: 8px; padding-bottom: 4px; }
    .slide--gs .gs__body p, .slide--gs .steps-outro, .slide--gs .steps-help { font-size: 13.5px; }
    .slide--gs .steps--compact li span { font-size: 13.5px; }
}
@media (min-width: 1001px) and (min-height: 961px) and (max-height: 1060px) { .gs__body .apl { padding: 12px 14px; margin-bottom: 12px; } .gs__body .apl__sub { display: none; } .slide--gs { gap: 14px; } }

/* welcome scene v2 — simple card: eyebrow, title, one line, one CTA */
.gs-welcome { width: 62%; max-width: 330px; padding: 22px 24px 24px; text-align: center; border-radius: 16px; max-height: none; }
.gs-welcome__x { top: 10px; right: 12px; }
.gs-welcome .gs-welcome__eyebrow { display: block; margin-bottom: 6px; }
.gs-welcome h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: -0.015em; color: #0f172a; }
.gs-welcome__lead { margin: 0 0 16px; font-size: 10.5px; line-height: 1.5; color: #64748b; }
.gs-welcome__go { display: inline-flex; height: 30px; padding: 0 16px; font-size: 11.5px; border-radius: 999px; }
@media (min-width: 1001px) and (max-height: 880px) { .slide .slide__standfirst { margin: -8px 0 12px; } }
.slide .lead b { font-weight: 600; color: var(--ink); }

/* getting-started: keep the right column compact on tall screens so the slide fits */
@media (min-width: 1001px) and (min-height: 1000px) {
    .slide--gs .gs__body .steps--compact li { padding: 5px 0; }
    .slide--gs .gs__body p { margin-bottom: 12px; }
    .slide--gs .steps-outro, .slide--gs .steps-help { margin-top: 10px !important; }
}
@media (min-width: 1001px) and (max-height: 740px) { .gs__head h2 { font-size: clamp(30px, 3vw, 44px); margin-bottom: 6px; } .gs__head .lead { font-size: 15px; } .slide--gs { gap: 12px; } .slide--gs .steps-help { display: none; } }
/* two-column tick list (What you get) */
.ticks--two { display: block; columns: 2; column-gap: clamp(24px, 3vw, 48px); }
.ticks--two li { break-inside: avoid; margin-bottom: 10px; }
.ticks--two li { font-size: clamp(15px, 1.05vw, 17px); }
.slide__body .seg { margin-bottom: 18px; }
@media (max-width: 900px) { .ticks--two { columns: 1; } }
@media (min-width: 1001px) and (max-height: 880px) { .ticks--two li { font-size: 15px; } .slide__body .seg { margin-bottom: 14px; } }
.seg__foot { margin: 18px 0 0; font-size: clamp(15px, 1.05vw, 17px); font-weight: 300; line-height: 1.55; color: var(--ink-soft); max-width: 52ch; }
@media (min-width: 1001px) and (max-height: 880px) { .seg__foot { margin-top: 14px; font-size: 15px; } }

/* =============================================================================
   Methodology — long-form document layout
   Centred headings, single reading measure, full-width figures.
   Namespace: .mdoc (page shell) · .fig (figures) · chart components below.
   ============================================================================= */
.mdoc { max-width: 1180px; width: 100%; margin: 0 auto; padding: clamp(28px, 5vh, 72px) 0 40px; }
.mdoc__sec { padding: clamp(56px, 8vw, 120px) 0; border-top: 1px solid rgba(17,17,16,.08); scroll-margin-top: 32px; }
.mdoc__sec:first-of-type { border-top: 0; }
.mdoc__sec--tight { padding-top: clamp(36px, 5vw, 64px); }
.mdoc__sec--plain { border-top: 0; }

/* centred section heading */
.mdoc__head { text-align: center; max-width: 760px; margin: 0 auto clamp(34px, 4.5vw, 60px); }
.mdoc__eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); margin: 0 0 18px; }
.mdoc__head h2 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(36px, 4.2vw, 66px); line-height: 1.03; letter-spacing: -0.028em; margin: 0; color: var(--ink); }
.mdoc__head h2 sup { font-size: .32em; vertical-align: top; position: relative; top: .5em; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0; }
.mdoc__stand { font-size: clamp(18px, 1.35vw, 22px); font-weight: 300; line-height: 1.5; color: var(--ink-soft); margin: 18px auto 0; max-width: 56ch; letter-spacing: -0.01em; }

/* reading measure */
.mdoc__prose { max-width: 720px; margin: 0 auto; }
.mdoc__prose p { font-size: clamp(17px, 1.2vw, 19.5px); font-weight: 300; line-height: 1.75; color: var(--ink-soft); margin: 0 0 1.35em; }
.mdoc__prose p:last-child { margin-bottom: 0; }
.mdoc__prose p b, .mdoc__prose li b { font-weight: 600; color: var(--ink); }
.mdoc__prose p sup { font-size: .55em; vertical-align: top; position: relative; top: .25em; }
.mdoc__prose a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(17,17,16,.3); text-underline-offset: 4px; }
.mdoc__prose h3 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(25px, 2.2vw, 34px); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin: clamp(38px, 4.5vw, 62px) 0 16px; }
.mdoc__prose .ticks { margin: 0 0 1.35em; }
.mdoc__prose .steps { margin: 0 0 1.35em; }
.mdoc__lead { font-size: clamp(19px, 1.45vw, 23px) !important; line-height: 1.6 !important; color: var(--ink) !important; font-weight: 300 !important; }

/* pull quote */
.mdoc__quote { margin: clamp(34px, 4vw, 54px) auto; max-width: 640px; padding: 0 0 0 22px; border-left: 2px solid var(--ink); }
.mdoc__quote p { margin: 0; font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(21px, 1.7vw, 28px); line-height: 1.35; letter-spacing: -0.015em; color: var(--ink); }
.mdoc__quote cite { display: block; margin-top: 12px; font-family: var(--font-mono); font-size: 11.5px; font-style: normal; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); }

/* figures */
.fig { margin: clamp(38px, 5vw, 68px) auto; max-width: 960px; }
.fig--wide { max-width: 1120px; }
.fig--narrow { max-width: 760px; }
.fig__frame { background: #fff; border-radius: 24px; padding: clamp(24px, 3vw, 40px); box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 18px 50px -28px rgba(17,17,16,.32); }
.fig__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); margin: 0 0 6px; }
.fig__title { font-size: clamp(17px, 1.3vw, 20px); font-weight: 600; letter-spacing: -0.015em; color: var(--ink); margin: 0 0 22px; line-height: 1.35; }
.fig figcaption { margin: 16px auto 0; max-width: 74ch; font-size: 14.5px; font-weight: 300; line-height: 1.6; color: var(--ink-mute); }
.fig figcaption b { font-weight: 600; color: var(--ink-soft); }

/* ── chart: margin distribution histogram ─────────────────────────────── */
.hist { position: relative; }
.hist__plot { display: grid; grid-template-columns: repeat(8, 1fr); gap: clamp(6px, .9vw, 14px); align-items: end; height: clamp(180px, 22vw, 250px); padding-bottom: 0; }
.hist__bar { position: relative; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.hist__bar i { display: block; width: 100%; height: var(--h); border-radius: 6px 6px 0 0; background: rgba(17,17,16,.13); transition: height .8s cubic-bezier(.2,.7,.2,1); }
.hist__bar--hit i { background: linear-gradient(180deg, #9c32b0, #6000ff); }
.hist__bar b { display: block; text-align: center; font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; color: var(--ink-soft); margin-bottom: 7px; font-variant-numeric: tabular-nums; }
.hist__bar--hit b { color: var(--ink); }
.hist__axis { display: grid; grid-template-columns: repeat(8, 1fr); gap: clamp(6px, .9vw, 14px); margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(17,17,16,.12); }
.hist__axis span { text-align: center; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .02em; color: var(--ink-mute); }
.hist__axis-title { margin: 12px 0 0; text-align: center; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-mute); }
.hist__key { display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: center; margin: 18px 0 0; padding-top: 18px; border-top: 1px solid rgba(17,17,16,.07); }
.hist__key span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 300; color: var(--ink-soft); }
.hist__key i { width: 11px; height: 11px; border-radius: 3px; background: rgba(17,17,16,.13); }
.hist__key span:first-child i { background: linear-gradient(180deg, #9c32b0, #6000ff); }

/* ── chart: SVG plots (break-even curve) ──────────────────────────────── */
.plot { width: 100%; height: auto; display: block; overflow: visible; }
.plot .ax { stroke: rgba(17,17,16,.16); stroke-width: 1; }
.plot .grid { stroke: rgba(17,17,16,.07); stroke-width: 1; }
.plot .curve { fill: none; stroke: var(--ink); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.plot .target { stroke: #6000ff; stroke-width: 1.8; stroke-dasharray: 6 5; }
.plot .zone-over { fill: #be123c; opacity: .07; }
.plot .zone-under { fill: #0f766e; opacity: .07; }
.plot .tick { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; fill: #8a8a86; }
.plot .axlab { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px; letter-spacing: .09em; fill: #8a8a86; text-transform: uppercase; }
.plot .zlab { font-family: 'Inter', system-ui, sans-serif; font-size: 12.5px; font-weight: 600; }
.plot .zlab--over { fill: #be123c; }
.plot .zlab--under { fill: #0f766e; }
.plot .note { font-family: 'Inter', system-ui, sans-serif; font-size: 12px; font-weight: 400; fill: #474744; }
.plot .dot-bad { fill: #be123c; stroke: #fff; stroke-width: 2.5; }
.plot .dot-good { fill: #0f766e; stroke: #fff; stroke-width: 2.5; }
.plot .dot-curve { fill: #141413; stroke: #fff; stroke-width: 2.5; }
.plot .lead-line { stroke: rgba(17,17,16,.35); stroke-width: 1; stroke-dasharray: 3 3; }

/* ── chart: horizontal money bars (worked example) ────────────────────── */
.mbar { display: grid; gap: clamp(22px, 2.8vw, 34px); }
.mbar__row { display: grid; gap: 10px; }
.mbar__top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px; }
.mbar__name { font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.mbar__name em { font-style: normal; font-weight: 400; color: var(--ink-mute); }
.mbar__bid { font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.mbar__track { position: relative; display: flex; height: 46px; margin-top: 24px; border-radius: 10px; overflow: visible; }
.mbar__seg { position: relative; display: flex; align-items: center; justify-content: center; height: 100%; font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: #fff; white-space: nowrap; overflow: hidden; }
.mbar__seg:first-child { border-radius: 10px 0 0 10px; }
.mbar__seg:last-child { border-radius: 0 10px 10px 0; }
.mbar__seg--cost { background: #57575a; }
.mbar__seg--ad { background: linear-gradient(135deg, #9c32b0, #6000ff); }
.mbar__seg--profit { background: #0f766e; }
.mbar__seg--loss { background: #be123c; }
.mbar__mark { position: absolute; top: -12px; bottom: -12px; width: 0; border-left: 1.5px dashed rgba(17,17,16,.45); }
.mbar__mark span { position: absolute; top: -21px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; color: var(--ink-mute); white-space: nowrap; }
.mbar__out { font-family: var(--font-mono); font-size: 13.5px; font-weight: 600; font-variant-numeric: tabular-nums; margin: 2px 0 0; }
.mbar__out--bad { color: #be123c; }
.mbar__out--good { color: #0f766e; }
.mbar__key { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 6px 0 0; padding-top: 20px; border-top: 1px solid rgba(17,17,16,.07); }
.mbar__key span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 300; color: var(--ink-soft); }
.mbar__key i { width: 11px; height: 11px; border-radius: 3px; }

/* ── data table ───────────────────────────────────────────────────────── */
.dtable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dtable { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.dtable th, .dtable td { text-align: right; padding: 12px 10px; border-bottom: 1px solid rgba(17,17,16,.07); white-space: nowrap; }
.dtable th:first-child, .dtable td:first-child { text-align: left; padding-left: 0; }
.dtable td:last-child, .dtable th:last-child { padding-right: 0; }
.dtable thead th { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; border-bottom-color: rgba(17,17,16,.16); padding-bottom: 10px; }
.dtable tbody td { font-family: var(--font-mono); font-size: 13.5px; font-weight: 400; color: var(--ink-soft); }
.dtable tbody td:first-child { font-family: var(--font-sans); font-size: 14.5px; font-weight: 500; color: var(--ink); }
.dtable tbody td.hi { color: var(--ink); font-weight: 600; }
.dtable tbody td.bad { color: #be123c; font-weight: 600; }
.dtable tbody tr:last-child td { border-bottom: 0; }
.dtable tbody tr.is-out td { background: rgba(190,18,60,.045); }
.dtable__formula { display: block; margin: 0 0 22px; font-family: var(--font-mono); font-size: 13.5px; color: var(--ink); background: rgba(17,17,16,.045); border-radius: 10px; padding: 12px 16px; }

/* ── flow: before / after campaign structure ──────────────────────────── */
.sflow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 32px); align-items: start; }
.sflow__col { display: grid; gap: 12px; }
.sflow__cap { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); margin: 0; }
.sflow__grp { border: 1px solid rgba(17,17,16,.14); border-radius: 14px; padding: 14px 16px; }
.sflow__grp b { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.sflow__grp span { display: block; margin-top: 3px; font-size: 12.5px; font-weight: 300; color: var(--ink-mute); }
.sflow__grp--one { background: rgba(17,17,16,.035); }
.sflow__t { display: inline-block; margin-top: 9px; font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--ink); background: rgba(17,17,16,.07); border-radius: 6px; padding: 3px 9px; }
.sflow__chips { display: flex; flex-wrap: wrap; gap: 5px; }
.sflow__chip { font-family: var(--font-mono); font-size: 10.5px; line-height: 1; padding: 6px 7px; border-radius: 6px; background: rgba(17,17,16,.07); color: var(--ink-mute); }
.sflow__chip--own { background: rgba(96,0,255,.09); color: #5b21b6; }
.sflow__note { margin: 10px 0 0; font-size: 13px; font-weight: 300; line-height: 1.5; color: var(--ink-mute); }
.sflow__note b { font-weight: 600; color: var(--ink-soft); }

/* ── flow: horizontal implementation sequence ─────────────────────────── */
.pflow { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; }
.pflow li { position: relative; }
.pflow li i { display: block; font-style: normal; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); margin-bottom: 10px; }
.pflow li b { display: block; font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 5px; }
.pflow li span { display: block; font-size: 13.5px; font-weight: 300; line-height: 1.5; color: var(--ink-soft); }
.pflow li:not(:last-child)::after { content: ""; position: absolute; right: -17px; top: 4px; width: 8px; height: 8px; border-top: 1.6px solid rgba(17,17,16,.28); border-right: 1.6px solid rgba(17,17,16,.28); transform: rotate(45deg); }
.pflow li::before { content: ""; display: block; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #ff1e80, #9c32b0, #6000ff); margin-bottom: 16px; opacity: .85; }

/* ── the correction cycle ─────────────────────────────────────────────── */
.cyc { margin: 0; }
.cyc__steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.cyc__steps li { position: relative; border: 1px solid rgba(17,17,16,.12); border-radius: 16px; padding: 18px 18px 16px; }
.cyc__steps li i { display: block; font-style: normal; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-mute); margin-bottom: 11px; }
.cyc__steps li b { display: block; font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 6px; }
.cyc__steps li span { display: block; font-size: 13.5px; font-weight: 300; line-height: 1.5; color: var(--ink-soft); }
.cyc__steps li:not(:last-child)::after { content: ""; position: absolute; right: -19px; top: 50%; width: 9px; height: 9px; border-top: 1.6px solid rgba(17,17,16,.28); border-right: 1.6px solid rgba(17,17,16,.28); transform: translateY(-50%) rotate(45deg); }
.cyc__return { position: relative; height: 30px; margin: 0 22px; border: 1px dashed rgba(17,17,16,.25); border-top: 0; border-radius: 0 0 18px 18px; }
.cyc__return::before { content: ""; position: absolute; left: -5px; top: -1px; width: 9px; height: 9px; border-left: 1.6px solid rgba(17,17,16,.38); border-top: 1.6px solid rgba(17,17,16,.38); transform: rotate(45deg); }
.cyc__return span { position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%); background: #fff; padding: 0 12px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); white-space: nowrap; }

/* ── principle opener ─────────────────────────────────────────────────── */
.pr__open { text-align: center; max-width: 780px; margin: 0 auto clamp(34px, 4.5vw, 58px); }
.pr__num { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(17,17,16,.18); font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 22px; }
.pr__open h2 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(38px, 4.4vw, 70px); line-height: 1.02; letter-spacing: -0.028em; margin: 0 0 14px; color: var(--ink); }
.pr__tag { font-size: clamp(16px, 1.2vw, 20px); font-weight: 400; color: var(--ink-mute); margin: 0; letter-spacing: -0.01em; }
.pr__tag sup { font-size: .5em; vertical-align: top; position: relative; top: .2em; font-weight: 500; }

/* outcome band */
.pr__outcome { max-width: 720px; margin: clamp(34px, 4vw, 54px) auto 0; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: baseline; background: var(--ink); color: #fff; border-radius: 18px; padding: 22px 26px; }
.pr__outcome span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .01em; text-transform: none; color: rgba(255,255,255,.55); }
.pr__outcome p { margin: 0; font-size: clamp(16.5px, 1.2vw, 19px); font-weight: 300; line-height: 1.55; color: #fff; }

/* divider heading for the three principles */
.mdoc__divider { text-align: center; padding: clamp(56px, 8vw, 110px) 0 clamp(20px, 3vw, 40px); border-top: 1px solid rgba(17,17,16,.08); }
.mdoc__divider h2 { font-family: var(--font-serif); font-weight: 400; font-variation-settings: 'SOFT' 50; font-size: clamp(42px, 5.4vw, 86px); line-height: 1; letter-spacing: -0.03em; margin: 0 0 20px; color: var(--ink); }
.mdoc__divider p { font-size: clamp(17px, 1.3vw, 21px); font-weight: 300; line-height: 1.55; color: var(--ink-soft); margin: 0 auto; max-width: 54ch; }
.mdoc__divider ol { list-style: none; margin: clamp(30px, 4vw, 48px) auto 0; padding: 0; max-width: 900px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; text-align: left; }
.mdoc__divider ol li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: baseline; border-top: 1px solid rgba(17,17,16,.14); padding-top: 14px; }
.mdoc__divider ol i { font-style: normal; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-mute); }
.mdoc__divider ol b { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.mdoc__divider ol span { display: block; margin-top: 4px; font-size: 14px; font-weight: 300; line-height: 1.5; color: var(--ink-soft); }

@media (max-width: 900px) {
    .mdoc__sec { padding: clamp(44px, 11vw, 72px) 0; }
    .hist__plot { height: 170px; }
    .hist__bar b { font-size: 10px; }
    .hist__axis span { font-size: 9px; }
    .sflow { grid-template-columns: 1fr; }
    .pflow { grid-template-columns: 1fr; gap: 20px; }
    .pflow li:not(:last-child)::after { display: none; }
    .cyc__steps { grid-template-columns: 1fr; gap: 10px; }
    .cyc__steps li:not(:last-child)::after { display: none; }
    .cyc__return { height: auto; margin: 16px 0 0; border: 0; }
    .cyc__return::before { display: none; }
    .cyc__return span { position: static; transform: none; display: block; text-align: center; background: none; padding: 0; }
    .mdoc__divider ol { grid-template-columns: 1fr; }
    .pr__outcome { grid-template-columns: 1fr; gap: 8px; }
}
/* methodology — component glue */
.mbar__seg.is-end { border-radius: 0 10px 10px 0; }
.mbar__over { position: absolute; top: 0; bottom: 0; border-radius: 0 10px 10px 0; background: repeating-linear-gradient(45deg, #be123c 0 5px, #9f0f2f 5px 10px); }
.mbar__mark { font-style: normal; }
.mdoc__sec .meth__pair { margin-bottom: 0; }
.mdoc__prose .facts { margin: clamp(30px, 4vw, 44px) 0 0; }
.fact--sm b { font-size: clamp(24px, 2vw, 32px); }
.mdoc > .meth__cta { border-top: 1px solid rgba(17,17,16,.08); padding-top: clamp(56px, 8vw, 110px); }
