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

.learn { min-height: 100vh; display: grid; 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; 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: .08em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 18px; }
.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 {
    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__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: .06em; text-transform: uppercase; 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: .08em; text-transform: uppercase; 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: .08em; text-transform: uppercase; 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: .08em; text-transform: uppercase; 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: .06em; text-transform: uppercase; 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: .08em; text-transform: uppercase; 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); aspect-ratio: 3 / 3.3;
    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; } }
.fg__avatar {
    position: relative; width: 38%; aspect-ratio: 1; 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);
    display: flex; align-items: center; justify-content: center; color: #5b21b6; margin-bottom: 8%;
}
.fg__avatar > svg { width: 44%; height: 44%; }
.fg__badge { position: absolute; right: -6%; bottom: -2%; width: 34%; aspect-ratio: 1; border-radius: 50%; background: linear-gradient(135deg, #ff1e80 0%, #9c32b0 50%, #6000ff 100%); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 3px #fff, 0 8px 18px -8px rgba(96,0,255,.5); }
.fg__badge svg { 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: .1em; text-transform: uppercase; color: var(--ink-mute); }
@media (max-width: 640px) { .fg__fan { height: 300px; } .fg__card { width: 200px; } }
@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: .08em; text-transform: uppercase; 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: .08em; text-transform: uppercase; 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; } }
