/* =========================================================================
   GigRadar CRM Landing v5. Styles.
   Editorial newspaper system. Mobile first. Light theme, one dark band.
   Built on tokens.css. No italic anywhere. No app chrome.
   ========================================================================= */

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }

/* ---------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--max-narrow); }
.section { padding-block: var(--pad-y); position: relative; }
.section--tight { padding-block: var(--pad-y-tight); }
.section--paper { background: var(--paper); }
.section--tint { background: var(--tint); }
.section--rule { border-top: 1px solid var(--line); }
.section--rule-cool { border-top: 1px solid var(--line-cool); }

/* ---------------------------------------------------------------- type */
h1, h2, h3 { color: var(--ink); font-weight: 600; letter-spacing: -0.018em; }
.display { font-size: var(--fs-display); line-height: var(--lh-display); font-weight: 600; letter-spacing: -0.028em; color: var(--ink); }
.h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); }
.h3 { font-size: var(--fs-h3); line-height: var(--lh-h3); }
.lead { font-size: var(--fs-lead); color: var(--body); line-height: 1.5; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1, "zero" 1; letter-spacing: var(--tracking-tabular); }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--muted);
}
.eyebrow__idx { color: var(--blue); }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--line-strong); }
.eyebrow--plain::before { display: none; }

.marker {
  background: linear-gradient(180deg, transparent 56%, var(--yellow) 56%, var(--yellow) 92%, transparent 92%);
  padding: 0 .04em; box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.gradient-text {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.sec-head { max-width: 720px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .h2 { margin-top: .85rem; }
.sec-head .lead { margin-top: 1rem; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: 15px; line-height: 1; padding: .92rem 1.5rem;
  border-radius: var(--r-pill); transition: transform var(--dur-fast) var(--ease),
    box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary { color: #fff; background: var(--grad-btn); box-shadow: var(--shadow-blue); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-pop); }
.btn--ghost { color: var(--ink); background: var(--card); border: 1px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink-2); transform: translateY(-1px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 16px; }
.btn--block { width: 100%; }
.btn--on-band { color: var(--ink); background: #fff; box-shadow: none; }
.btn--on-band:hover { transform: translateY(-1px); }
.btn__arrow { display: inline-flex; align-items: center; transition: transform var(--dur) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ============================================================= NAV */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-cool);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 1rem; }
.nav__brand { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.nav__brand img { height: 26px; width: auto; }
.nav__mark { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; }
.nav__word { font-weight: 600; font-size: 17px; color: var(--ink); letter-spacing: -0.012em; }
.footer__lock { display: flex; align-items: center; gap: .6rem; font-family: var(--font-sans); font-weight: 600; font-size: 20px; color: var(--on-band); }
.footer__mark { width: 34px; height: 34px; border-radius: 9px; }
.nav__tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft); padding: 3px 7px; border-radius: var(--r-sm);
}
.nav__links { display: none; align-items: center; gap: 1.6rem; }
.nav__links a { font-size: 14.5px; color: var(--ink-2); font-weight: 500; transition: color var(--dur); }
.nav__links a:hover { color: var(--blue); }
.nav__right { display: flex; align-items: center; gap: .6rem; }
.nav__cta { display: none; }
.nav__toggle { display: inline-flex; flex-direction: column; gap: 4px; padding: 8px; }
.nav__toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--dur); }
.nav__menu {
  display: none; position: absolute; left: 0; right: 0; top: 64px;
  background: #fff; border-bottom: 1px solid var(--line-cool); padding: 1rem var(--gutter) 1.4rem;
  box-shadow: var(--shadow-2);
}
.nav__menu[data-open="true"] { display: block; }
.nav__menu a { display: block; padding: .8rem 0; font-size: 16px; font-weight: 500; color: var(--ink-2); border-bottom: 1px solid var(--line-cool); }
.nav__menu .btn { margin-top: 1rem; }

/* ============================================================= HERO */
.hero { padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: var(--pad-y); background:
  radial-gradient(900px 420px at 88% -8%, var(--blue-soft), transparent 62%); overflow: hidden; }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero__col { min-width: 0; }
.mock { min-width: 0; max-width: 100%; }
/* prevent intrinsic-width children from blowing out the viewport on mobile */
.module, .calc__panel, .calc__out, .demo__stage, .price-card, .trust__cell, .funnel__half, .band__nums > div { min-width: 0; }
.hero__sub { margin-top: 1.4rem; font-size: var(--fs-lead); color: var(--body); line-height: 1.5; max-width: 36ch; }
.hero h1 { margin-top: 1.2rem; }
.hero__supp { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .5rem; }
.hero__supp-line { display: flex; align-items: flex-start; gap: .55rem; font-size: 13.5px; color: var(--muted); }
.hero__supp-line svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.hero__ctas { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .8rem; }

/* hero inbox mockup */
.mock {
  background: #fff; border: 1px solid var(--line-cool); border-radius: var(--r-xl);
  box-shadow: var(--shadow-3); overflow: hidden; position: relative;
}
.mock__bar { display: flex; align-items: center; gap: .5rem; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line-cool); }
.mock__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.mock__bar-title { margin-left: .4rem; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.mock__health { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--good); display: inline-flex; align-items: center; gap: 5px; }
.mock__health::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--good); }
.mock__accounts { display: flex; gap: .4rem; padding: .8rem 1.1rem; border-bottom: 1px solid var(--line-cool); overflow: hidden; }
.mock__account { font-family: var(--font-mono); font-size: 11px; padding: 5px 10px; border-radius: var(--r-pill); background: var(--paper); color: var(--ink-2); border: 1px solid var(--line); white-space: nowrap; }
.mock__account.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
.mock__rows { padding: .4rem 0; }
.mock__row { display: flex; gap: .7rem; padding: .7rem 1.1rem; align-items: flex-start; border-left: 2px solid transparent; }
.mock__row.is-sel { background: var(--blue-soft); border-left-color: var(--blue); }
.mock__av { width: 34px; height: 34px; border-radius: 50%; background: var(--tint-deep); color: var(--blue-deep); display: grid; place-items: center; font-weight: 600; font-size: 13px; flex-shrink: 0; }
.mock__line1 { display: flex; align-items: center; gap: .5rem; }
.mock__name { font-weight: 600; color: var(--ink); font-size: 14px; }
.mock__stage { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .04em; text-transform: uppercase; padding: 2px 7px; border-radius: var(--r-pill); }
.stage--booked { background: var(--good-soft); color: var(--good); }
.stage--new { background: var(--tint-deep); color: var(--blue-deep); }
.stage--qual { background: var(--yellow-soft); color: var(--yellow-deep); }
.mock__prev { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.mock__time { margin-left: auto; font-family: var(--font-mono); font-size: 10.5px; color: var(--faint); flex-shrink: 0; }
.ai-badge {
  display: inline-flex; align-items: center; gap: 6px; margin: .2rem 1.1rem .9rem;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .03em; text-transform: uppercase;
  color: #fff; background: var(--grad-btn); padding: 5px 11px; border-radius: var(--r-pill);
}
.ai-badge svg { width: 12px; height: 12px; }
.mock__deals { display: flex; gap: .35rem; padding: .65rem 1.1rem 1rem; border-top: 1px solid var(--line-cool); overflow: hidden; }
.mock__deal { flex: 1; min-width: 0; height: 30px; border-radius: var(--r-xs); background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: .02em; }
.mock__deal.is-on { background: var(--tint); border-color: var(--line-blue); color: var(--blue-deep); }
.hero__art { position: relative; }
.hero__float {
  position: absolute; right: -16px; bottom: 28px; z-index: 3; background: #fff; border: 1px solid var(--line-cool);
  border-radius: var(--r-md); box-shadow: var(--shadow-3); padding: .7rem .9rem; display: none;
}
.hero__float .mono { font-size: 20px; color: var(--ink); font-weight: 600; }
.hero__float small { display: block; font-size: 11px; color: var(--muted); }

/* ============================================================= TRUST */
.trust { padding-block: var(--pad-y-tight); }
.trust__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.trust__cell { background: var(--bg); padding: 1.25rem 1rem; text-align: center; }
.trust__num { font-family: var(--font-mono); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; color: var(--ink); letter-spacing: var(--tracking-tabular); }
.trust__lab { margin-top: .3rem; font-size: 12px; color: var(--muted); line-height: 1.35; }

.marquee-head { text-align: center; margin-top: 2.4rem; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.marquee { margin-top: 1rem; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 2.6rem; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track, .marquee.is-off .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; white-space: nowrap; }
.marquee__item img { height: 27px; width: auto; max-width: 142px; object-fit: contain; filter: brightness(0); opacity: .38; transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease); }
.marquee__item:hover img { opacity: .72; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ============================================================= COST BARS */
.cost__grid { display: grid; gap: 2rem; margin-top: 2.4rem; }
.cost__bars { display: flex; flex-direction: column; gap: 1.05rem; }
.costbar { display: grid; grid-template-columns: 1fr; gap: .35rem; }
.costbar__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.costbar__lab { font-size: 14px; color: var(--ink-2); font-weight: 500; }
.costbar__amt { font-family: var(--font-mono); font-weight: 600; font-size: 16px; color: var(--ink); }
.costbar__track { height: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.costbar__fill { height: 100%; background: linear-gradient(90deg, var(--blue-mid), var(--blue)); border-radius: 0; width: 0; transition: width 900ms var(--ease); }
.costbar.is-avg .costbar__fill { background: repeating-linear-gradient(45deg, var(--blue-deep), var(--blue-deep) 7px, #1d49bd 7px, #1d49bd 14px); }
.costbar.is-avg .costbar__lab { color: var(--blue-deep); font-weight: 600; }
.cost__caption { margin-top: 1.3rem; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.cost__note { margin-top: 1.6rem; font-size: var(--fs-lead); color: var(--ink-2); }

/* ============================================================= CALCULATOR */
.calc__grid { display: grid; gap: 1.6rem; margin-top: 2.2rem; }
.calc__panel { background: var(--card); border: 1px solid var(--line-cool); border-radius: var(--r-xl); padding: clamp(1.4rem, 3vw, 2.1rem); box-shadow: var(--shadow-2); }
.calc__controls { display: flex; flex-direction: column; gap: 1.6rem; }
.calc__row label { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--ink-2); font-weight: 500; margin-bottom: .7rem; }
.calc__val { font-family: var(--font-mono); font-size: 17px; font-weight: 600; color: var(--blue-deep); }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--blue) var(--pct, 30%), var(--tint-deep) var(--pct, 30%)); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2px solid var(--blue); box-shadow: var(--shadow-2); cursor: pointer; transition: transform var(--dur-fast); }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2px solid var(--blue); cursor: pointer; }
.calc__out { background: var(--band); color: var(--on-band); border-radius: var(--r-xl); padding: clamp(1.4rem, 3vw, 2.1rem); display: flex; flex-direction: column; justify-content: center; }
.calc__out-row + .calc__out-row { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--band-line); }
.calc__out-lab { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--on-band-muted); }
.calc__out-num { font-family: var(--font-mono); font-size: clamp(2.2rem, 6vw, 3.2rem); font-weight: 600; line-height: 1; margin-top: .4rem; letter-spacing: -0.02em; }
.calc__out-num.is-rev { color: #ffd76a; }
.calc__math { margin-top: 1.6rem; font-family: var(--font-mono); font-size: 12px; color: var(--muted); line-height: 1.7; }
.calc__cta { margin-top: 1.5rem; }

/* ============================================================= PAIN */
.pain__cols { display: grid; gap: 1.2rem; margin-top: 2.4rem; }
.pain__col { background: var(--card); border: 1px solid var(--line-cool); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem); }
.pain__tag { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--bad); }
.pain__tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--bad); }
.pain__col h3 { margin-top: .9rem; font-size: 1.2rem; }
.pain__col p { margin-top: .7rem; color: var(--body); }
.pain__quote { margin-top: 2.4rem; border-left: 3px solid var(--blue); padding: .3rem 0 .3rem 1.3rem; max-width: 760px; }
.pain__quote p { font-size: var(--fs-lead); color: var(--ink); }
.pain__quote cite { display: block; margin-top: .7rem; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

/* ============================================================= FUNNEL */
.funnel__bar { margin-top: 2.4rem; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.funnel__half { background: var(--bg); padding: clamp(1.3rem, 3vw, 1.9rem); }
.funnel__half--left { background: var(--paper-deep); }
.funnel__half--right { background: var(--tint); }
.funnel__who { display: flex; align-items: center; gap: .6rem; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); }
.funnel__who b { color: var(--blue-deep); }
.funnel__steps { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.funnel__chip { font-size: 12.5px; padding: 6px 11px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); color: var(--ink-2); }
.funnel__half--right .funnel__chip { border-color: var(--line-blue); }
.funnel__seam { text-align: center; padding: .8rem; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); background: var(--bg); }
.funnel__seam b { color: var(--blue); }

/* ============================================================= MODULES */
.modules { display: flex; flex-direction: column; gap: clamp(2.4rem, 5vw, 4rem); margin-top: 2.8rem; }
.module { display: grid; gap: 1.4rem; align-items: center; }
.module__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); }
.module__body h3 { margin-top: .7rem; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.module__body p { margin-top: .8rem; color: var(--body); max-width: 46ch; }
.module__outcome { margin-top: 1rem; display: inline-flex; align-items: baseline; gap: .55rem; font-size: 14px; color: var(--ink-2); font-weight: 500; background: var(--blue-soft); border: 1px solid var(--line-blue); padding: .5rem .85rem; border-radius: var(--r-sm); }
.module__outcome b { color: var(--blue-deep); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.module__art { border-radius: var(--r-lg); border: 1px solid var(--line-cool); box-shadow: var(--shadow-2); overflow: hidden; background: var(--paper); }
.module__art img { width: 100%; height: auto; display: block; }
.module__art--lottie { padding: clamp(.6rem, 1.2vw, 1.1rem); background: #fff; }
/* Layered module animations. Each stage stacks the gigmotion layer images
   inside the 612x532 comp box; entrance is a staggered fade + 40px rise on
   transform/opacity only, so it runs on the compositor at a locked 60fps.
   Base state (no JS, reduced motion) is the finished frame. */
/* The gigmotion exports shipped a different accent wash per module (orange,
   green, blue). Those layers are dropped; every stage gets the same white
   base with one soft GigRadar blue wash (design kit --blue-tint/--blue-surface). */
.anim-stage { position: relative; width: 100%; aspect-ratio: 612 / 532; overflow: hidden; background: #fff radial-gradient(80% 80% at 50% 42%, #ECF5FF 0%, #F4F8FF 46%, rgba(255,255,255,0) 74%); }
.anim-stage .anim-layer { position: absolute; pointer-events: none; }
.anim-stage.is-armed .anim-layer--in { opacity: 0; transform: translate(var(--dx, 0px), var(--dy, 0px)); }
.anim-stage.is-playing .anim-layer--in { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.22, 1, .36, 1) var(--d, 0ms), transform .7s cubic-bezier(.22, 1, .36, 1) var(--d, 0ms); }
.safety__solo-art { margin-bottom: 1.1rem; border-radius: var(--r-md); overflow: hidden; background: #fff; border: 1px solid var(--line-cool); }

/* ============================================================= SAFETY */
.safety__grid { display: grid; gap: 1.6rem; margin-top: 2.4rem; }
.safety__main h3 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); }
.safety__main p { margin-top: 1rem; color: var(--body); }
.safety__list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .7rem; }
.safety__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.safety__list svg { flex-shrink: 0; margin-top: 3px; color: var(--good); }
.safety__solo { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem); }
.safety__solo .eyebrow { color: var(--blue); }
.safety__solo h3 { margin-top: .8rem; font-size: 1.2rem; }
.safety__solo p { margin-top: .7rem; color: var(--body); }

/* ============================================================= REACTIVATE */
.react { display: grid; gap: 1.8rem; align-items: center; margin-top: 2rem; }
.react__nums { display: flex; gap: 1rem; }
.react__card { flex: 1; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem 1.2rem; text-align: center; }
.react__card.is-hot { background: var(--tint); border-color: var(--line-blue); }
.react__num { font-family: var(--font-mono); font-size: var(--fs-mega); font-weight: 600; line-height: .95; color: var(--ink); letter-spacing: -0.03em; }
.react__card.is-hot .react__num { color: var(--blue); }
.react__num-lab { margin-top: .5rem; font-size: 13px; color: var(--muted); }

/* ============================================================= DARK BAND */
.band { background: var(--band); color: var(--on-band); position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; background: var(--grad-band); pointer-events: none; }
.band .wrap { position: relative; z-index: 1; }
.band .eyebrow { color: var(--on-band-muted); }
.band .eyebrow::before { background: var(--band-line); }
.band__title { color: var(--on-band); font-size: var(--fs-h2); line-height: var(--lh-h2); margin-top: .8rem; max-width: 22ch; }
.band__nums { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; margin-top: 2.6rem; }
.band__num { font-family: var(--font-mono); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; color: var(--on-band); letter-spacing: -0.02em; line-height: 1; }
.band__num-lab { margin-top: .55rem; font-size: 12.5px; color: var(--on-band-muted); line-height: 1.4; }
.band__method { margin-top: 2.4rem; font-family: var(--font-mono); font-size: 11.5px; color: var(--on-band-faint); letter-spacing: .02em; }

/* ============================================================= WALL OF LOVE */
.wall__grid { display: grid; gap: 1.1rem; margin-top: 2.6rem; }
.review-card { background: #fff; border: 1px solid var(--line-cool); border-radius: var(--r-lg); padding: 1.3rem; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur); break-inside: avoid; }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-blue); }
.review-card__head { display: flex; align-items: center; gap: .7rem; }
.review-card__av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--tint-deep); }
.review-card__id { min-width: 0; }
.review-card__name { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.review-card__role { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.review-card__badge { margin-left: auto; font-family: var(--font-mono); font-size: 10px; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--r-pill); flex-shrink: 0; }
.badge--li { background: #E8F0FE; color: #1852D3; }
.badge--tp { background: var(--good-soft); color: #0b7a4f; }
.review-card__q { margin-top: .9rem; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.loom-thumb { margin-top: 1rem; position: relative; display: block; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--tint-deep), var(--blue-soft)); border: 1px solid var(--line-blue); }
.loom-thumb img { width: 100%; height: 100%; object-fit: cover; }
.loom-thumb__play { position: absolute; inset: 0; display: grid; place-items: center; }
.loom-thumb__play span { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.94); box-shadow: var(--shadow-2); display: grid; place-items: center; }
.loom-thumb__play svg { color: var(--blue-deep); margin-left: 2px; }
.loom-thumb__tag { position: absolute; left: 9px; bottom: 9px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: rgba(16,20,27,.72); padding: 3px 8px; border-radius: var(--r-pill); backdrop-filter: blur(3px); }

.founder { display: grid; gap: 1.2rem; align-items: center; margin-top: 2.8rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.5rem, 3.5vw, 2.4rem); }
.founder__av { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.founder__q { font-size: var(--fs-lead); color: var(--ink); }
.founder__by { margin-top: .9rem; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.reassure { margin-top: 2rem; max-width: 720px; display: flex; gap: .7rem; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); background: var(--tint); border: 1px solid var(--line-blue); border-radius: var(--r-md); padding: 1rem 1.2rem; }
.reassure svg { flex-shrink: 0; color: var(--blue); margin-top: 2px; }

/* ============================================================= ONBOARDING STEPPER */
.onboard__bar { margin-top: 2.4rem; position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0; }
.onboard__bar::before { content: ""; position: absolute; top: 19px; left: 7%; right: 7%; height: 2px; background: var(--line-strong); z-index: 0; }
.onboard__step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center; cursor: pointer; }
.onboard__dot { width: 40px; height: 40px; border-radius: 50%; background: var(--bg); border: 2px solid var(--line-strong); display: grid; place-items: center; font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--muted); transition: var(--dur); }
.onboard__step.is-active .onboard__dot, .onboard__step.is-done .onboard__dot { background: var(--blue); border-color: var(--blue); color: #fff; }
.onboard__step-lab { font-size: 11.5px; color: var(--muted); max-width: 11ch; line-height: 1.3; }
.onboard__step.is-active .onboard__step-lab { color: var(--ink); font-weight: 600; }
.onboard__detail { margin-top: 1.8rem; background: var(--card); border: 1px solid var(--line-cool); border-radius: var(--r-lg); padding: clamp(1.3rem, 3vw, 1.8rem); box-shadow: var(--shadow-1); }
.onboard__detail h3 { font-size: 1.2rem; }
.onboard__detail p { margin-top: .6rem; color: var(--body); }
.onboard__detail .mono { display: block; margin-top: 1rem; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }

/* ============================================================= ON-RAILS DEMO */
.demo__shell { display: grid; gap: 1.6rem; margin-top: 2.4rem; }
.demo__rail { display: flex; flex-direction: column; gap: .5rem; }
.demo__pstep { display: flex; align-items: center; gap: .8rem; padding: .8rem 1rem; border: 1px solid var(--line-cool); border-radius: var(--r-md); background: var(--card); text-align: left; transition: var(--dur); cursor: pointer; width: 100%; }
.demo__pstep.is-active { border-color: var(--blue); background: var(--blue-soft); }
.demo__pstep.is-done { opacity: .72; }
.demo__pnum { width: 27px; height: 27px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; color: var(--muted); flex-shrink: 0; transition: var(--dur); }
.demo__pstep.is-active .demo__pnum, .demo__pstep.is-done .demo__pnum { background: var(--blue); border-color: var(--blue); color: #fff; }
.demo__plab { font-size: 14px; font-weight: 500; color: var(--ink-2); }
.demo__pstep.is-active .demo__plab { color: var(--ink); }

.demo__stage { background: #fff; border: 1px solid var(--line-cool); border-radius: var(--r-xl); box-shadow: var(--shadow-3); overflow: hidden; min-height: 360px; display: flex; flex-direction: column; }
.demo__stage-head { display: flex; align-items: center; gap: .5rem; padding: .8rem 1.1rem; border-bottom: 1px solid var(--line-cool); }
.demo__stage-head .mono { margin-left: auto; font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.demo__panel { padding: 1.3rem; display: none; flex-direction: column; gap: .9rem; flex: 1; }
.demo__panel.is-active { display: flex; animation: fade-up var(--dur-slow) var(--ease); }
.bubble { max-width: 84%; padding: .8rem 1rem; border-radius: var(--r-md); font-size: 14px; line-height: 1.5; }
.bubble--client { align-self: flex-start; background: var(--paper); border: 1px solid var(--line); color: var(--ink-2); border-bottom-left-radius: 4px; }
.bubble--ai { align-self: flex-end; background: var(--blue-soft); border: 1px solid var(--line-blue); color: var(--ink); border-bottom-right-radius: 4px; }
.bubble--sent { align-self: flex-end; background: var(--grad-btn); color: #fff; border-bottom-right-radius: 4px; }
.bubble__who { font-family: var(--font-mono); font-size: 10px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem; display: flex; align-items: center; gap: 5px; }
.bubble--ai .bubble__who { color: var(--blue-deep); }
.demo__draft-tag { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--grad-btn); padding: 3px 8px; border-radius: var(--r-pill); }
.demo__actions { margin-top: auto; display: flex; gap: .6rem; padding-top: .6rem; }
.demo__booked { align-self: stretch; text-align: center; background: var(--good-soft); border: 1px solid #b7e6d0; border-radius: var(--r-md); padding: 1.2rem; }
.demo__booked .mono { display: block; font-size: 13px; color: #0b7a4f; margin-top: .3rem; }
.demo__time { display: inline-flex; gap: .5rem; flex-wrap: wrap; }
.demo__time button { font-size: 12.5px; padding: 7px 12px; border: 1px solid var(--line-blue); border-radius: var(--r-pill); background: #fff; color: var(--blue-deep); transition: var(--dur); }
.demo__time button:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
@keyframes fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .demo__panel.is-active { animation: none; } }

/* ============================================================= PRICING */
.price__grid { display: grid; gap: 1.1rem; margin-top: 2.6rem; }
.price-card { background: var(--card); border: 1px solid var(--line-cool); border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2rem); display: flex; flex-direction: column; }
.price-card.is-feat { border-color: var(--blue); box-shadow: var(--shadow-blue); position: relative; }
.price-card__flag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--blue); padding: 4px 11px; border-radius: var(--r-pill); }
.price-card__name { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.price-card__amt { margin-top: .7rem; font-family: var(--font-mono); font-weight: 600; color: var(--ink); display: flex; align-items: baseline; gap: .25rem; }
.price-card__amt b { font-size: clamp(2.1rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.price-card__amt span { font-size: 14px; color: var(--muted); }
.price-card__sub { margin-top: .5rem; font-size: 13px; color: var(--blue-deep); }
.price-card__feats { margin-top: 1.3rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.price-card__feats li { display: flex; gap: .55rem; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.price-card__feats svg { flex-shrink: 0; margin-top: 3px; color: var(--blue); }
.price-card__feats li.is-off { color: var(--faint); }
.price-card__feats li.is-off svg { color: var(--line-strong); }
.price-card .btn { margin-top: 1.5rem; }
.price__note { margin-top: 1.6rem; text-align: center; font-size: 14px; color: var(--muted); }
.price__note b { color: var(--ink-2); }

/* ============================================================= FAQ */
.faq__list { margin-top: 2.2rem; border-top: 1px solid var(--line); max-width: var(--max-narrow); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 1rem; width: 100%; padding: 1.25rem 0; text-align: left; font-size: clamp(1rem, 1.6vw, 1.12rem); font-weight: 600; color: var(--ink); }
.faq__icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform var(--dur); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; }
.faq__icon::before { top: 10px; left: 3px; right: 3px; height: 2px; }
.faq__icon::after { left: 10px; top: 3px; bottom: 3px; width: 2px; transition: transform var(--dur); }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__a { padding: 0 0 1.3rem; color: var(--body); max-width: 68ch; }
.faq__q::-webkit-details-marker { display: none; }
summary.faq__q { cursor: pointer; list-style: none; }
summary.faq__q::marker { content: ""; }

/* ============================================================= FINAL CTA */
.final-cta { background: var(--band); color: var(--on-band); position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: var(--grad-band); pointer-events: none; }
.final-cta .wrap { position: relative; z-index: 1; text-align: center; }
.final-cta h2 { color: var(--on-band); font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
.final-cta .lead { color: var(--on-band-muted); margin-top: 1.1rem; margin-inline: auto; max-width: 52ch; }
.final__steps { margin-top: 2rem; display: grid; gap: 1rem; max-width: 760px; margin-inline: auto; text-align: left; }
.final__step { display: flex; gap: .8rem; align-items: flex-start; color: var(--on-band-muted); font-size: 14.5px; }
.final__step b { font-family: var(--font-mono); color: var(--blue-light); flex-shrink: 0; }
.final__ctas { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.final__fine { margin-top: 1.5rem; font-family: var(--font-mono); font-size: 11.5px; color: var(--on-band-faint); }

/* ============================================================= FOOTER */
.footer { background: var(--band-2); color: var(--on-band-muted); padding-block: clamp(2.6rem, 5vw, 4rem); border-top: 1px solid var(--band-line); }
.footer__top { display: grid; gap: 2rem; }
.footer__brand img { height: 26px; }
.footer__brand p { margin-top: 1rem; font-size: 13.5px; color: var(--on-band-muted); max-width: 30ch; }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.footer__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--on-band-faint); margin-bottom: .9rem; }
.footer__col a { display: block; padding: .35rem 0; font-size: 14px; color: var(--on-band-muted); transition: color var(--dur); }
.footer__col a:hover { color: var(--on-band); }
.footer__legal { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--band-line); display: flex; flex-direction: column; gap: .6rem; font-size: 12.5px; color: var(--on-band-faint); }
.footer__legal .mono { letter-spacing: .02em; }

/* ============================================================= REVEAL */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================= RESPONSIVE */
@media (min-width: 600px) {
  .trust__row { grid-template-columns: repeat(3, 1fr); }
  .react__nums { gap: 1.4rem; }
  .band__nums { grid-template-columns: repeat(4, 1fr); }
  .wall__grid { grid-template-columns: repeat(2, 1fr); }
  .price__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 760px) {
  .pain__cols { grid-template-columns: 1fr 1fr; }
  .funnel__bar { grid-template-columns: 1fr auto 1fr; align-items: stretch; }
  .funnel__seam { display: grid; place-items: center; writing-mode: vertical-rl; transform: rotate(180deg); }
  .calc__grid { grid-template-columns: 1.05fr .95fr; align-items: stretch; }
  .react { grid-template-columns: 1fr 1fr; }
  .safety__grid { grid-template-columns: 1.3fr 1fr; }
  .demo__shell { grid-template-columns: .8fr 1.2fr; align-items: start; }
  .onboard__detail { display: grid; grid-template-columns: 1fr; }
}

@media (min-width: 1000px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .hero__grid { grid-template-columns: 1.02fr .98fr; }
  .hero__sub { font-size: var(--fs-lead); }
  .hero__float { display: block; }
  .trust__row { grid-template-columns: repeat(5, 1fr); }
  .cost__grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .module { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
  .module.is-flip .module__art { order: -1; }
  .trust__num { font-size: 2rem; }
  .wall__grid { grid-template-columns: repeat(3, 1fr); }
  .founder { grid-template-columns: auto 1fr; gap: 1.8rem; }
  .founder__av { width: 76px; height: 76px; }
}

@media (min-width: 1240px) {
  .module__body { padding-inline: 1rem; }
}

/* ============================================================= VIDEO (founder tour) */
.vid__wrap { margin-top: 1.9rem; max-width: 920px; margin-inline: auto; }
.vid__frame { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-3); border: 1px solid var(--line-cool); background: var(--band); }
.vid__frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.vid__cap { margin-top: .9rem; text-align: center; font-size: 13px; color: var(--muted); }
/* On desktop the section is a tall track and its content sticks while the
   visitor scrolls past, so the page rests on the video for a beat (about
   40vh of travel). Input is never blocked; mobile flows normally. The
   content sits above center and a "more below" cue floats under the
   caption so the pin never reads as the end of the page. */
.vid__more { display: none; }
@media (min-width: 1000px) {
  .vid-pin { min-height: 140vh; }
  .vid-pin__inner { position: sticky; top: max(12px, calc(50vh - 440px)); }
  .vid__more { display: flex; align-items: center; justify-content: center; gap: .45rem; margin-top: 1.5rem; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
  .vid__more svg { animation: vid-more-float 1.6s ease-in-out infinite; }
}
@keyframes vid-more-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (prefers-reduced-motion: reduce) { .vid__more svg { animation: none; } }

/* ============================================================= STUDY TEASER (§08 chart) */
.study { margin-top: 2.4rem; border-radius: var(--r-xl); padding: clamp(1.4rem, 3.2vw, 2.1rem);
  background: radial-gradient(130% 150% at 86% -20%, #234C9E 0%, #15316E 44%, #0B1730 100%);
  color: #EAF1FF; border: 1px solid rgba(255,255,255,.10); box-shadow: var(--shadow-3); }
.study__eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: #8FA8D9; }
.study__eyebrow::before { content: ""; width: 18px; height: 1px; background: rgba(255,255,255,.3); }
.study__h { font-size: clamp(1.2rem, 2.2vw, 1.55rem); color: #fff; margin-top: .7rem; letter-spacing: -0.01em; }
.study__p { color: #A9BCE0; font-size: 14.5px; line-height: 1.55; margin-top: .6rem; max-width: 58ch; }
.study__chart { margin-top: 1.5rem; }
.study__chart svg { display: block; width: 100%; height: auto; }
.study .s-name { font-weight: 600; font-size: 13px; }
.study .s-note { font-weight: 600; font-size: 11px; }
.study .s-val { font-variant-numeric: tabular-nums; font-weight: 600; }
.study .s-tick { font-size: 10.5px; font-variant-numeric: tabular-nums; }
.study__foot { margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.study__legend { font-family: var(--font-mono); font-size: 11px; color: #7F92BC; max-width: 44ch; line-height: 1.5; }
.study__link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: 14.5px; white-space: nowrap;
  color: var(--ink); background: #fff; padding: .8rem 1.3rem; border-radius: var(--r-pill); transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur); }
.study__link:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -10px rgba(0,0,0,.5); }
.study__link svg { transition: transform var(--dur) var(--ease); }
.study__link:hover svg { transform: translateX(3px); }
@media (prefers-reduced-motion: no-preference) {
  .study .anim-stem { transform: scaleX(0); transform-origin: left; transform-box: fill-box; transition: transform .8s var(--ease); }
  .study.is-in .anim-stem { transform: scaleX(1); }
  .study .anim-dot, .study .anim-fade { opacity: 0; transition: opacity .6s ease .25s; }
  .study.is-in .anim-dot, .study.is-in .anim-fade { opacity: 1; }
}

/* ============================================================= PRICING SUMMARY (range + included) */
.price-sum { margin-top: 2.4rem; max-width: 840px; margin-inline: auto; text-align: center;
  background: var(--card); border: 1px solid var(--line-cool); border-radius: var(--r-xl);
  padding: clamp(1.7rem, 4vw, 2.6rem); box-shadow: var(--shadow-2); }
.price-sum__range { font-family: var(--font-sans); font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 600; color: var(--ink); letter-spacing: -0.025em; }
.price-sum__range span { color: var(--muted); font-size: .42em; font-weight: 500; letter-spacing: 0; }
.price-sum__sub { color: var(--body); margin-top: .7rem; max-width: 52ch; margin-inline: auto; }
.price-sum__chips { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin: 1.5rem auto; max-width: 660px; }
.price-sum__chip { display: inline-flex; align-items: center; gap: .45rem; font-size: 13.5px; color: var(--ink-2);
  background: var(--tint); border: 1px solid var(--line-blue); border-radius: var(--r-pill); padding: .5rem .9rem; }
.price-sum__chip svg { color: var(--blue); flex-shrink: 0; }
.price-sum__note { margin-top: 1.1rem; font-size: 13px; color: var(--muted); }

/* ============================================================= PREMIUM PASS (light only, no dark theme)
   From high-end-visual-design (Soft Structuralism) + design-taste-frontend, applied to the existing
   light system: diffused blue-tinted depth, machined inset highlights, button press physics,
   blur-in reveals, and a faint film-grain for tactile surface. */

/* softer, more diffused, blue-tinted ambient depth + a hairline top highlight on floating white cards */
.calc__panel, .review-card, .module__art, .price-sum, .demo__stage, .onboard__detail, .safety__solo, .pain__col, .vid__frame, .mock {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 1px 2px rgba(28,62,140,.05),
    0 18px 40px -22px rgba(28,62,140,.22);
}
.mock, .demo__stage { box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 2px 6px rgba(28,62,140,.06),
    0 36px 80px -40px rgba(28,62,140,.34); }
/* dark cards get a top inner highlight (edge refraction), not a heavier black shadow */
.calc__out, .study {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 30px 70px -34px rgba(11,23,48,.6);
}
.review-card:hover { box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 2px 6px rgba(28,62,140,.06),
    0 26px 52px -26px rgba(28,62,140,.30); }

/* button press physics (tactile push) */
.btn:active { transform: scale(.985) translateY(0); }
.btn--primary:active { box-shadow: var(--shadow-blue); }
.study__link:active { transform: scale(.985); }

/* reveal entry refinement: a gentle blur lifts off as it settles */
@media (prefers-reduced-motion: no-preference) {
  .reveal { filter: blur(7px); transition: opacity .6s var(--ease), transform .6s var(--ease), filter .6s var(--ease); }
  .reveal.is-in { filter: blur(0); }
}

/* faint film-grain: a fixed, non-interactive surface texture that breaks digital flatness.
   Stays light, sits over the page at very low opacity. */
/* film grain removed: the fixed full-screen SVG-noise layer is a Safari GPU hog
   and at .028 opacity bought nothing the lag was worth. */
@media (prefers-reduced-motion: reduce) { .reveal { filter: none; } }

/* ============================================================= SITE CHROME (gigradar.io nav + footer, self-contained)
   Verbatim styling from gigradar.io. Scoped under .gr-* so it never touches the page body.
   Inter is applied ONLY to the chrome; the page stays Geist. No Tailwind, no Alpine. */
.gr-nav, .gr-footer, .gr-modal { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; }
@keyframes grSlideTop { from { opacity: 0; transform: translateY(-.75rem); } to { opacity: 1; transform: none; } }

/* --- nav --- */
.gr-nav { position: sticky; top: 16px; z-index: 999; margin: 0 auto; max-width: 77.5rem; width: calc(100% - 2.75rem); }
.gr-nav__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.5rem; border-radius: 1rem; border: 1px solid #D6DFE7; background: rgba(255,255,255,.6); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); animation: grSlideTop 500ms ease both; }
.gr-nav__logo { display: flex; align-items: center; gap: .375rem; flex-shrink: 0; }
.gr-nav__mark { position: relative; width: 2rem; height: 2rem; flex-shrink: 0; }
.gr-nav__mark img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.gr-nav__mark .gr-nav__icon { inset: auto; top: .3125rem; left: .375rem; width: 1.3125rem; height: 1.3125rem; }
.gr-nav__typo { width: 6.625rem; height: 1.375rem; object-fit: contain; }
.gr-nav__links { display: none; align-items: center; gap: .625rem; }
.gr-nav__sep { color: #6C82A4; font-size: .875rem; user-select: none; letter-spacing: -.01875rem; }
.gr-nav__sol { position: relative; }
/* invisible bridge across the gap so hover survives moving from the button into the dropdown (no click needed to keep it open) */
.gr-nav__dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 14px; }
.nav-link.gr-nav__sol-btn { display: inline-flex; align-items: center; gap: 4px; background: none; cursor: pointer; vertical-align: middle; }
.gr-nav__sol-btn svg { transition: transform 200ms; }
.gr-nav__dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px); margin-top: 8px; display: flex; flex-direction: column; gap: 2px; padding: 8px; border-radius: 1rem; border: 1px solid #D6DFE7; background: rgba(255,255,255,.9); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); width: max-content; opacity: 0; visibility: hidden; transition: opacity 150ms, transform 150ms; }
.gr-nav__sol:hover .gr-nav__dropdown, .gr-nav__sol:focus-within .gr-nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.gr-nav__sol:hover .gr-nav__sol-btn svg { transform: rotate(180deg); }
.gr-nav__dropdown .nav-link { display: block; text-align: center; }
.gr-nav__cta { display: none; border: 0; cursor: pointer; }
.gr-nav__burger { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: #DCE8FF; border: 0; cursor: pointer; flex-shrink: 0; }
.gr-nav__mobile { display: none; position: absolute; left: 0; right: 0; margin-top: 8px; padding: 16px; border-radius: 1rem; border: 1px solid #D6DFE7; background: rgba(255,255,255,.95); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); flex-direction: column; align-items: center; gap: 12px; box-shadow: 0 18px 40px -22px rgba(28,62,140,.3); }
.gr-nav__mobile.is-open { display: flex; }
.gr-nav__mobile .nav-link, .gr-nav__mobile .nav-cta { display: block; width: 100%; text-align: center; }

.nav-link { display: inline-block; padding: .375rem .625rem; border-radius: .25rem; font-size: .875rem; font-weight: 500; color: #6C82A4; letter-spacing: -.01875rem; line-height: 1; transition: background-color 150ms, color 150ms; white-space: nowrap; text-decoration: none; }
.nav-link:hover { background-color: #E4EAF5; }
.nav-link.active { background-color: #E4EAF5; }
.nav-link.disabled { color: #b9c9d7; cursor: not-allowed; pointer-events: none; }
.nav-cta { display: inline-block; background-color: #DCE8FF; color: #2D323E; font-size: .875rem; font-weight: 500; letter-spacing: -.01875rem; line-height: 1; padding: 1rem 2rem; border-radius: .5rem; transition: background-color 150ms, color 150ms; white-space: nowrap; text-decoration: none; }
.nav-cta:hover { background-color: #BEDEFF; }
.nav-cta:active { background-color: #378AFA; color: #fff; }

/* --- footer --- */
.gr-footer { background-color: #202430; }
.gr-footer__wrap { max-width: 70rem; margin: 0 auto; padding: 2.875rem var(--gutter); display: flex; flex-direction: column; gap: 2rem; }
.gr-footer__top { display: flex; flex-direction: column; gap: 2.25rem; }
.gr-footer__logo img { height: 2.1875rem; width: auto; object-fit: contain; }
.gr-footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.gr-footer__col { display: flex; flex-direction: column; gap: .75rem; }
.gr-footer__col-links { display: flex; flex-direction: column; gap: .625rem; align-items: flex-start; }
.footer-col-heading { font-size: 1.125rem; line-height: 1.2; font-weight: 700; letter-spacing: -.04375rem; color: #EFF7FF; }
.footer-link { position: relative; display: inline-block; text-decoration: none; width: fit-content; }
.footer-link::after { content: ''; display: block; height: 1px; background: #fff; width: 0; transition: width .3s ease-out; margin-top: 1px; }
.footer-link:hover::after { width: 100%; }
.footer-col-link { font-size: .875rem; font-weight: 400; letter-spacing: -.01875rem; color: #EFF7FF; }
.footer-bottom-link { font-size: .75rem; font-weight: 400; letter-spacing: -.0125rem; color: #B9C9D7; }
.footer-muted { font-size: .75rem; font-weight: 400; letter-spacing: -.0125rem; color: #B9C9D7; line-height: 1.45; }
.gr-tp { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; text-decoration: none; }
.gr-tp p { margin: 0; }
.gr-tp__lead { color: #EFF7FF; font-size: .875rem; font-weight: 700; letter-spacing: -.01875rem; }
.gr-tp__sub { color: #EFF7FF; font-size: .75rem; font-weight: 500; }
.gr-tp__stars { display: flex; align-items: center; gap: .3125rem; }
.gr-tp__star { width: 1.585rem; height: 1.585rem; background: #219653; padding: .12rem; display: flex; align-items: center; justify-content: center; }
.gr-tp__star img, .gr-tp__half-star img { width: 1.11rem; height: 1.11rem; object-fit: contain; }
.gr-tp__half { position: relative; width: 1.585rem; height: 1.585rem; background: #D9D9D9; }
.gr-tp__half-fill { position: absolute; inset: 0; background: #219653; clip-path: inset(0 50% 0 0); }
.gr-tp__half-star { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: .12rem; }
.gr-footer__divider { height: 1px; background: rgba(255,255,255,.3); }
.gr-footer__bottom { display: flex; flex-direction: column; gap: 1rem; }
.gr-footer__legal { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

@media (min-width: 1024px) {
  .gr-nav__links { display: flex; }
  .gr-nav__cta { display: inline-block; }
  .gr-nav__burger { display: none; }
  .gr-footer__top { flex-direction: row; align-items: flex-start; gap: 5.25rem; }
  .gr-footer__logo { width: 14.5rem; flex-shrink: 0; }
  .gr-footer__cols { flex: 1; grid-template-columns: repeat(3, auto) auto; gap: 3rem; align-items: start; justify-content: space-between; }
  .gr-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* --- meeting modal (gigradar openMeeting pattern, vanilla) --- */
.gr-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 1rem; }
.gr-modal.is-open { display: flex; }
.gr-modal__backdrop { position: absolute; inset: 0; background: rgba(16,20,27,.62); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.gr-modal__panel { position: relative; z-index: 1; width: 100%; max-width: 720px; background: #fff; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-3); animation: fade-up var(--dur-slow) var(--ease); }
.gr-modal__close { position: absolute; top: 10px; right: 12px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; border: 0; background: #EEF2F7; color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; }
.gr-modal__close:hover { background: #E0E6EE; }
#meeting-embed { min-height: 640px; }
#meeting-embed iframe { display: block; }

/* ============================================================= LAZIZA HERO ANIMATION
   Real CRM behaviour: client goes quiet, the user picks a follow-up shortcut from the
   @ library, Laziza follows up automatically at a wake-up time, the client replies,
   Laziza analyses in a private team note, offers a meeting on Upwork, the client books.
   Tokens lifted verbatim from the unpacked GigRadar CRM Figma design system.
   Animation rule: only opacity + transform animate. No box-shadow, no filter, no width.
   Reduced motion + no-JS path: every .laz__dyn is visible and the meeting is booked. */
.laz {
  --laz-paper: #FFFFFF;
  --laz-line: #E4EAF5;
  --laz-line-deep: #D6DFE7;
  --laz-chat: #EFF7FF;
  --laz-ink: #2D323E;
  --laz-ink-soft: rgba(0,0,0,.88);
  --laz-body: #525F7B;
  --laz-muted: #6C82A4;
  --laz-faint: #A5A6A8;
  --laz-time: #C4C4C4;
  --laz-blue: #216BEF;
  --laz-blue-mid: #378AFA;
  --laz-blue-soft: #DAECFF;
  --laz-blue-pale: #F5F8FF;
  --laz-prop: #E8F1FF;
  --laz-book-pending: #3A7AFE;
  --laz-laz: #FA8C16;
  --laz-laz-chip: #FFF3D2;
  --laz-laz-bub: #FFFBE6;
  --laz-laz-bub-border: #F7B716;
  --laz-laz-wash: #FFF6DB;
  --laz-purple: #9B51E0;
  --laz-purple-soft: #F5EEFC;
  --laz-cancel: #F28B82;
  position: relative; width: 100%; min-width: 0;
  background: var(--laz-paper);
  border: 1px solid var(--laz-line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  font-family: var(--font-ui, 'Inter', system-ui, -apple-system, 'SF Pro Display', sans-serif);
  color: var(--laz-ink-soft);
  contain: layout paint;
}
/* head */
.laz__head { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--laz-line); background: var(--laz-paper); }
.laz__av { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-weight: 600; font-size: 12.5px; flex-shrink: 0; line-height: 1; }
.laz__av--sm { width: 28px; height: 28px; font-size: 10.5px; }
.laz__av--fm { background: #EEEDFE; color: #534AB7; }
.laz__av--jc { background: #DAECFF; color: #0C447C; }
.laz__av--lz {
  background: var(--laz-laz-chip); color: var(--laz-laz);
  background-image: radial-gradient(circle at center, var(--laz-laz) 0 32%, var(--laz-laz-chip) 33% 100%);
}
.laz__head-id { min-width: 0; }
.laz__head-title { font-size: 13.5px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--laz-ink); }
.laz__head-sub { font-size: 11px; color: var(--laz-muted); margin-top: 1px; }
.laz__stage { margin-left: auto; font-size: 11.5px; font-weight: 500; padding: 4px 11px; border-radius: 999px; background: var(--laz-blue-soft); color: #0C447C; flex-shrink: 0; transition: background .45s var(--ease), color .45s var(--ease); }
.laz__stage.is-booked { background: #D5EFE2; color: #085041; }
/* body — masked viewport */
.laz__body { height: 410px; background: var(--laz-chat); overflow: hidden; position: relative; }
@media (min-width: 980px) { .laz__body { height: 440px; } }
.laz__feed { position: absolute; left: 0; right: 0; top: 0; padding: 12px 14px 12px; display: flex; flex-direction: column; gap: 10px; transition: transform .8s cubic-bezier(.22, 1, .36, 1); will-change: transform; }
.laz__feed-spacer { display: block; height: 6px; }
/* dyn entries: hidden when armed, faded back at end of loop */
.laz.is-armed .laz__dyn { opacity: 0; transform: translateY(20px); transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1); }
.laz.is-armed .laz__dyn.is-show { opacity: 1; transform: none; }
.laz.is-armed .laz__step { opacity: 0; transform: translateY(10px); transition: opacity .5s cubic-bezier(.22, 1, .36, 1), transform .5s cubic-bezier(.22, 1, .36, 1); }
.laz.is-armed .laz__step.is-show { opacity: 1; transform: none; }
.laz.is-fading .laz__dyn.is-show, .laz.is-fading .laz__step.is-show { opacity: 0; transition: opacity .4s var(--ease); }
/* date + system + sched */
.laz__date { align-self: center; font-size: 11px; font-weight: 500; color: var(--laz-blue-mid); background: var(--laz-paper); border-radius: 999px; padding: 3px 12px; }
.laz__sys { align-self: center; font-size: 11.5px; color: var(--laz-body); margin: 0; }
.laz__sched { align-self: center; display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 500; color: var(--laz-purple); margin: 0; }
.laz__sched-sq { width: 14px; height: 14px; border-radius: 3px; background: var(--laz-purple); position: relative; }
.laz__sched-sq::before { content: ""; position: absolute; left: 6px; top: 3px; width: 1.5px; height: 4px; background: #fff; }
.laz__sched-sq::after { content: ""; position: absolute; left: 6px; top: 6px; width: 4px; height: 1.5px; background: #fff; }
/* message bubble */
.laz__msg { display: flex; gap: 8px; max-width: 88%; align-items: flex-start; }
.laz__msg--me { align-self: flex-end; flex-direction: row-reverse; }
.laz__msg-body { min-width: 0; flex: 1; }
.laz__msg--me .laz__msg-body { display: flex; flex-direction: column; align-items: flex-end; }
.laz__nm { font-size: 12px; font-weight: 500; color: var(--laz-ink-soft); margin-bottom: 4px; display: inline-flex; align-items: center; gap: 5px; }
.laz__nm--lz { color: var(--laz-laz); }
.laz__nm--right { align-self: flex-end; }
.laz__msg--me .laz__nm { text-align: right; }
.laz__bub { background: var(--laz-paper); border-radius: 12px; padding: 10px 12px; font-size: 12.5px; line-height: 1.5; color: var(--laz-body); max-width: 100%; }
.laz__tm { display: flex; justify-content: flex-end; align-items: center; gap: 3px; font-size: 10px; color: var(--laz-time); margin-top: 4px; }
.laz__rcpt { display: inline-block; width: 14px; height: 9px; position: relative; }
.laz__rcpt::before, .laz__rcpt::after { content: ""; position: absolute; width: 7px; height: 4px; border-left: 1.4px solid var(--laz-time); border-bottom: 1.4px solid var(--laz-time); transform: rotate(-45deg); top: 1px; }
.laz__rcpt::before { left: 0; }
.laz__rcpt::after { left: 4px; }
.laz__spark { display: inline-block; width: 10px; height: 10px; position: relative; }
.laz__spark::before, .laz__spark::after { content: ""; position: absolute; background: var(--laz-laz); }
.laz__spark::before { left: 4px; top: 0; width: 2px; height: 10px; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.laz__spark::after { left: 0; top: 4px; width: 10px; height: 2px; clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%); }
/* Laziza cream bubble */
.laz__lz { max-width: 88%; align-self: flex-start; }
.laz__lzbub { background: var(--laz-laz-bub); border-radius: 12px; padding: 10px 12px; font-size: 12px; line-height: 1.45; color: var(--laz-laz); }
/* private note */
.laz__note { max-width: 92%; }
.laz__note-head { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; }
.laz__chip { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 500; color: var(--laz-laz); background: var(--laz-laz-chip); border-radius: 4px; padding: 2px 7px; }
.laz__chip--lz { font-weight: 600; }
.laz__note-card { background: var(--laz-laz-wash); border-radius: 12px; padding: 8px 12px; }
.laz__step { padding: 7px 0; border-top: 1px solid #F0DFAA; }
.laz__step:first-child { border-top: 0; }
.laz__rt { font-size: 12px; font-weight: 500; color: var(--laz-ink); }
.laz__rp { font-size: 11.5px; color: var(--laz-body); line-height: 1.45; margin-top: 2px; }
.laz__code { display: inline-block; margin-top: 5px; background: var(--laz-blue-pale); border-radius: 4px; padding: 2px 7px; font-family: var(--font-mono, Menlo, monospace); font-size: 10px; color: var(--laz-body); }
/* propose card */
.laz__prop { align-self: flex-end; max-width: 92%; display: flex; flex-direction: column; align-items: flex-end; }
.laz__propcard { display: flex; align-items: center; gap: 10px; background: var(--laz-prop); border-radius: 12px; padding: 10px 11px; min-width: 280px; }
.laz__ptile { width: 38px; height: 38px; border-radius: 8px; background: var(--laz-blue); position: relative; flex-shrink: 0; }
.laz__ptile::before { content: ""; position: absolute; left: 10px; top: 13px; width: 12px; height: 11px; border-radius: 2px; border: 1.8px solid #fff; }
.laz__ptile::after { content: ""; position: absolute; left: 23px; top: 13px; width: 0; height: 0; border-top: 5.5px solid transparent; border-bottom: 5.5px solid transparent; border-left: 6.5px solid #fff; }
.laz__prop-body { flex: 1; min-width: 0; }
.laz__prop-title { font-size: 12.5px; font-weight: 500; color: var(--laz-ink); }
.laz__prop-sub { font-size: 11px; color: var(--laz-body); margin-top: 2px; }
.laz__chev { width: 8px; height: 8px; border-right: 1.6px solid #B9C9D7; border-bottom: 1.6px solid #B9C9D7; transform: rotate(-45deg); flex-shrink: 0; }
/* new meetings divider */
.laz__divider { align-self: stretch; display: flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 600; color: #27AE60; letter-spacing: .02em; margin: 4px 0 -2px; text-transform: uppercase; }
.laz__divider::before, .laz__divider::after { content: ""; flex: 1; height: 1px; background: rgba(39,174,96,.45); }
/* booked card */
.laz__book { background: var(--laz-paper); border: 1.5px solid var(--laz-book-pending); border-radius: 12px; padding: 11px 12px; max-width: 320px; margin-top: 4px; }
.laz__book-title { font-size: 12.5px; font-weight: 500; color: var(--laz-ink); margin-bottom: 6px; }
.laz__brow { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--laz-body); padding: 2px 0; }
.laz__brow b { font-weight: 400; color: var(--laz-ink); }
.laz__bi { width: 14px; height: 14px; flex-shrink: 0; position: relative; display: inline-block; }
.laz__bi--cal { border: 1.4px solid var(--laz-body); border-radius: 2px; }
.laz__bi--cal::before { content: ""; position: absolute; top: -2px; left: 2px; width: 1.4px; height: 4px; background: var(--laz-body); }
.laz__bi--cal::after { content: ""; position: absolute; top: -2px; right: 2px; width: 1.4px; height: 4px; background: var(--laz-body); }
.laz__bi--clk { border: 1.4px solid var(--laz-body); border-radius: 50%; }
.laz__bi--clk::before { content: ""; position: absolute; left: 5px; top: 3px; width: 1.4px; height: 4px; background: var(--laz-body); transform-origin: top center; }
.laz__bi--clk::after { content: ""; position: absolute; left: 5px; top: 6px; width: 4px; height: 1.4px; background: var(--laz-body); }
.laz__bi--vid { width: 14px; height: 9px; border-radius: 2px; background: var(--laz-body); margin-top: 2px; }
.laz__bi--vid::after { content: ""; position: absolute; right: -3px; top: 1px; width: 0; height: 0; border-top: 3px solid transparent; border-bottom: 3px solid transparent; border-left: 4px solid var(--laz-body); }
.laz__book-row { display: flex; gap: 7px; margin-top: 8px; }
.laz__bbtn { font-size: 11px; font-weight: 500; border-radius: 6px; padding: 4px 12px; border: 1px solid var(--laz-line-deep); color: var(--laz-muted); background: var(--laz-paper); }
.laz__bbtn--cancel { border-color: var(--laz-cancel); color: var(--laz-cancel); }
/* composer */
.laz__comp { border-top: 1px solid var(--laz-line); background: var(--laz-paper); padding: 9px 14px 11px; position: relative; }
.laz__comp-tabs { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; }
.laz__tab { font-size: 11.5px; font-weight: 500; border-radius: 6px; padding: 4px 11px; color: var(--laz-muted); }
.laz__tab--on { background: var(--laz-blue); color: #fff; }
.laz__pill { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 500; border-radius: 6px; padding: 4px 10px; }
.laz__pill--blue { color: var(--laz-blue-mid); background: var(--laz-blue-soft); }
.laz__fld { background: var(--laz-blue-pale); border-radius: 12px; padding: 9px 11px; border: 1px solid transparent; transition: border-color .3s var(--ease); }
.laz__fld.is-focus { border-color: var(--laz-blue-mid); }
.laz__fld-line { font-size: 12.5px; min-height: 20px; color: var(--laz-ink); }
.laz__ph { color: var(--laz-faint); }
.laz__typed { color: var(--laz-ink); }
.laz__typed .laz__chip--lz { display: inline-block; padding: 0 5px; margin-right: 1px; }
.laz__caret { display: inline-block; width: 1.5px; height: 13px; background: var(--laz-blue); vertical-align: -2px; opacity: 0; margin-left: 1px; }
.laz__caret.is-on { animation: lazBlink .9s steps(1) infinite; }
@keyframes lazBlink { 50% { opacity: 1; } }
.laz__fld-bar { display: flex; align-items: center; gap: 9px; margin-top: 7px; color: var(--laz-muted); font-size: 11.5px; }
.laz__bm { display: inline-flex; align-items: center; gap: 3px; background: var(--laz-blue-pale); border-radius: 999px; padding: 2px 6px 2px 2px; }
.laz__bm-av { width: 22px; height: 22px; border-radius: 50%; background: var(--laz-blue-soft); color: #0C447C; font-size: 9.5px; font-weight: 600; display: grid; place-items: center; }
.laz__bm-chv { width: 6px; height: 6px; border-right: 1.4px solid var(--laz-muted); border-bottom: 1.4px solid var(--laz-muted); transform: rotate(45deg); margin-left: 3px; }
.laz__icn { color: var(--laz-faint); font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; line-height: 1; }
.laz__icn i { font-style: italic; }
.laz__icn s { text-decoration: line-through; }
.laz__icn--clip { color: var(--laz-muted); display: inline-flex; align-items: center; justify-content: center; }
.laz__icn--clip svg { display: block; }
.laz__cnt { font-size: 10px; background: rgba(165,166,168,.12); border-radius: 999px; padding: 2px 8px; }
.laz__fld-right { margin-left: auto; display: inline-flex; gap: 7px; align-items: center; }
.laz__clk { width: 26px; height: 26px; border-radius: 50%; background: var(--laz-purple); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.laz__send { width: 26px; height: 26px; border-radius: 50%; background: var(--laz-blue); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .14s var(--ease); }
.laz__send svg { transform: translate(-0.5px, 0.5px); }
.laz__send.is-pressed { transform: scale(.88); }
/* shortcuts dropdown */
.laz__drop {
  position: absolute; left: 12px; right: 12px; bottom: calc(100% - 8px);
  background: var(--laz-paper); border: 1px solid var(--laz-line); border-radius: 12px;
  padding: 5px; box-shadow: 0 12px 32px rgba(28, 62, 140, .14);
  opacity: 0; transform: translateY(12px) scale(.97); transform-origin: bottom left;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none; z-index: 4;
}
.laz__drop.is-show { opacity: 1; transform: none; }
.laz__drow { border-radius: 8px; padding: 7px 10px; transition: background .25s var(--ease); }
.laz__drow.is-hl { background: var(--laz-line); }
.laz__drow.is-pressed { background: #C7D6EE; }
.laz__dt { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--laz-ink); }
.laz__dp { font-size: 11px; color: var(--laz-faint); margin-top: 2px; padding-left: 50px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* fallback path: no JS / reduced motion → show end state */
.laz:not(.is-armed) .laz__stage { background: #D5EFE2; color: #085041; }
@media (prefers-reduced-motion: reduce) {
  .laz, .laz.is-armed { /* nothing animates, but everything is visible from start */ }
  .laz.is-armed .laz__dyn, .laz.is-armed .laz__step { opacity: 1; transform: none; transition: none; }
  .laz.is-armed .laz__stage { background: #D5EFE2; color: #085041; }
  .laz__feed { transition: none; }
}

/* hero column reset: float chip lives outside chat so it does not visually overlap */
.hero__art .laz + .hero__float { right: -10px; bottom: -14px; }
@media (max-width: 980px) {
  .laz__body { height: 380px; }
  .laz__head-title { font-size: 12.5px; }
  .laz__head-sub { font-size: 10.5px; }
  .hero__art .laz + .hero__float { display: none; }
}
@media (max-width: 720px) {
  .laz__body { height: 360px; }
  .laz__propcard { min-width: 0; }
}
