/* ============================================================
   SCOUT — Light, Figma-calm landing
   Warm paper canvas · white cards · soft shadows · deep green accent
   Technical credibility kept as ACCENTS (dark terminal, mono labels)
   Type: Hanken Grotesk (human) + IBM Plex Mono (machine)
   ============================================================ */
:root {
  /* warm paper light theme */
  --bg:          #FBFAF6;
  --surface:     #FFFFFF;
  --surface-2:   #F4F2EB;   /* alt section band */
  --surface-3:   #ECE9E0;
  --border:      rgba(24,22,16,0.10);
  --border-str:  rgba(24,22,16,0.16);

  --text:        #1B1A16;   /* warm near-black */
  --text-muted:  #6C685E;
  --text-faint:  #9A9488;

  /* accent — overridable live via Tweaks (default: trustworthy indigo) */
  --accent:      #4F5BE0;
  --accent-2:    #3B45C4;
  --accent-soft: #ECEDFB;
  --accent-line: rgba(79,91,224,0.26);
  --gold:        #E0A43A;
  --blob-a:      rgba(79,91,224,0.20);
  --blob-b:      rgba(79,91,224,0.13);

  /* terminal object — deep ink-slate (not black), cool soft-blue accents */
  --term-bg-1:   #242A38;
  --term-bg-2:   #1A1F2B;
  --term-text:   #E7EAF2;
  --term-muted:  #8B93A6;
  --term-green:  #84B6FF;

  --sans: 'Hanken Grotesk', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --maxw: 1180px;

  --shadow-sm: 0 1px 3px rgba(24,22,16,0.05), 0 1px 2px rgba(24,22,16,0.04);
  --shadow-md: 0 14px 36px -18px rgba(24,22,16,0.16);
  --shadow-lg: 0 36px 70px -34px rgba(24,22,16,0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
::selection { background: var(--accent-soft); color: var(--accent-2); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* soft drifting gradient blobs — airy, never overwhelming */
.bg-fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-fx .blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.bg-fx .b1 { width: 620px; height: 620px; top: -180px; left: -120px; background: radial-gradient(circle, var(--blob-a), transparent 68%); animation: drift1 26s ease-in-out infinite; }
.bg-fx .b2 { width: 540px; height: 540px; top: 8%; right: -160px; background: radial-gradient(circle, rgba(201,154,62,0.15), transparent 68%); animation: drift2 32s ease-in-out infinite; }
.bg-fx .b3 { width: 700px; height: 700px; bottom: -240px; left: 30%; background: radial-gradient(circle, var(--blob-b), transparent 70%); animation: drift3 38s ease-in-out infinite; }
@keyframes drift1 { 50% { transform: translate(80px, 60px) scale(1.1); } }
@keyframes drift2 { 50% { transform: translate(-70px, 50px) scale(1.08); } }
@keyframes drift3 { 50% { transform: translate(60px, -50px) scale(1.12); } }

.page { position: relative; z-index: 1; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.mono { font-family: var(--mono); }
.accent { color: var(--accent); }
.muted { color: var(--text-muted); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 11px; cursor: pointer;
  border: 1px solid transparent; transition: all .2s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px -8px rgba(79,91,224,0.6); }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(79,91,224,0.55); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border-str); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--text-faint); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 12px; }

.eyebrow {
  font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 17px; height: 17px; flex: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E0A43A' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='3.6' fill='%23E0A43A'/%3E%3Cpath d='M12 3v2M12 19v2M3 12h2M19 12h2M5.6 5.6l1.4 1.4M17 17l1.4 1.4M18.4 5.6L17 7M7 17l-1.4 1.4'/%3E%3C/svg%3E") center/contain no-repeat; }
.eyebrow.center { justify-content: center; }

/* reveal primitives */
[data-reveal] { opacity: 0; transform: translateY(20px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }

/* ============================================================ NAV */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -.01em; }
.logo .mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--accent);
  display: grid; place-items: center; color: #fff;
}
.logo .mark svg { width: 19px; height: 19px; }
.logo .by { color: var(--text-faint); font-weight: 500; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 15px; color: var(--text-muted); transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-signin { font-size: 15px; color: var(--text-muted); }
.nav-signin:hover { color: var(--text); }

/* ============================================================ HERO */
.hero { min-height: auto; display: flex; align-items: center; padding: 112px 0 56px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; width: 100%; position: relative; z-index: 1; }
h1.hero-title {
  font-size: clamp(44px, 6vw, 76px); line-height: 1.0; font-weight: 800;
  letter-spacing: -.035em; text-wrap: balance; margin: 22px 0 0; color: var(--text);
}
h1.hero-title .land { color: var(--accent); white-space: nowrap; }
.hero-sub { font-size: clamp(17px, 1.4vw, 20px); color: var(--text-muted); margin-top: 22px; max-width: 31em; text-wrap: pretty; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 11px; margin-top: 26px; font-size: 14px; color: var(--text-muted); }
.hero-trust b { color: var(--text); font-weight: 700; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }
.scroll-cue .line { width: 1px; height: 32px; background: linear-gradient(var(--accent), transparent); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------------- terminal (kept dark) ---------------- */
.term {
  background: linear-gradient(180deg, var(--term-bg-1), var(--term-bg-2));
  border: 1px solid rgba(0,0,0,0.4); border-radius: 15px; overflow: hidden;
  box-shadow: var(--shadow-lg); font-family: var(--mono);
}
.term-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,.22); }
.term-bar .tdot { width: 11px; height: 11px; border-radius: 50%; }
.td1 { background: #5a5750; } .td2 { background: #45433d; } .td3 { background: #35332e; }
.term-title { margin-left: 10px; font-size: 12.5px; color: var(--term-muted); }
.term-body { padding: 20px 20px 24px; font-size: 14px; line-height: 1.9; min-height: 322px; }
.ln { white-space: pre-wrap; opacity: 0; transform: translateY(4px); }
.ln.show { opacity: 1; transform: none; transition: all .3s ease; }
.prompt { color: var(--term-green); }
.cmd { color: var(--term-text); }
.out { color: var(--term-muted); }
.ok { color: var(--term-green); }
.num { color: #E8C57A; }
.cursor { display: inline-block; width: 9px; height: 17px; background: var(--term-green); vertical-align: -3px; margin-left: 2px; animation: blink 1.05s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================ BOARDS marquee */
.boards { padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.boards-label { text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 24px; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 48px; padding-right: 48px; animation: scroll 34s linear infinite; flex-shrink: 0; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-100%); } }
.board { font-weight: 700; font-size: 19px; color: var(--text-faint); white-space: nowrap; letter-spacing: -.01em; transition: color .2s; }
.board:hover { color: var(--text-muted); }
.board .ind { font-size: 10px; color: var(--accent); vertical-align: super; font-family: var(--mono); margin-left: 3px; }

/* ============================================================ SECTION shells */
section.block { padding: 80px 0; position: relative; }
.band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sec-head { max-width: 680px; margin-bottom: 40px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.sec-title { font-size: clamp(32px, 4vw, 48px); line-height: 1.07; font-weight: 800; letter-spacing: -.028em; margin-top: 16px; text-wrap: balance; color: var(--text); }
.sec-sub { font-size: clamp(17px, 1.3vw, 19px); color: var(--text-muted); margin-top: 16px; text-wrap: pretty; }

/* ---------------- the night (problem) ---------------- */
.night { text-align: center; padding: 86px 0; }
.night .big {
  font-size: clamp(28px, 4.2vw, 52px); font-weight: 800; line-height: 1.14;
  letter-spacing: -.025em; max-width: 17ch; margin: 24px auto 0; text-wrap: balance; color: var(--text);
}
.night .big .fade { color: var(--text-faint); }
.night-stats { display: flex; justify-content: center; gap: clamp(28px, 6vw, 78px); margin-top: 60px; flex-wrap: wrap; }
.nstat { text-align: center; }
.nstat .v { font-size: clamp(34px, 4.2vw, 52px); font-weight: 800; letter-spacing: -.03em; font-family: var(--mono); color: var(--text); }
.nstat .l { font-size: 14px; color: var(--text-muted); margin-top: 6px; max-width: 16ch; }

/* ---------------- how (steps) ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 30px; transition: border-color .25s, transform .25s, box-shadow .25s; box-shadow: var(--shadow-sm); }
.step:hover { border-color: var(--accent-line); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-n { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.step h3 { font-size: 22px; font-weight: 700; margin: 16px 0 10px; letter-spacing: -.01em; }
.step p { font-size: 15.5px; color: var(--text-muted); }
.step .chip { display: inline-block; margin-top: 20px; font-family: var(--mono); font-size: 13px; padding: 8px 13px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-2); }
.step .chip b { color: var(--accent-2); font-weight: 600; }

/* ---------------- dawn / digest (WHITE morning card) ---------------- */
.dawn { padding: 86px 0; position: relative; }
.dawn-grid { display: grid; grid-template-columns: 1fr 1.18fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

/* literal morning sunlight — hope where you "wake up to progress" */
.dawn-sun { position: absolute; top: -36px; right: -22px; width: 330px; height: 330px; z-index: 0; pointer-events: none; }
.dawn-sun .glow { position: absolute; inset: -60px; background: radial-gradient(circle, rgba(246,183,62,0.30), rgba(246,183,62,0) 64%); }
.dawn-sun .core { position: absolute; top: 50%; left: 50%; width: 94px; height: 94px; margin: -47px 0 0 -47px; border-radius: 50%; background: radial-gradient(circle at 38% 34%, #FFEDB0, #F6B73E 80%); box-shadow: 0 0 48px rgba(246,183,62,0.55); }
.dawn-sun .rays { position: absolute; top: 50%; left: 50%; width: 232px; height: 232px; margin: -116px 0 0 -116px; animation: sunspin 90s linear infinite; }
.dawn-sun .rays line { stroke: #F6B73E; stroke-width: 2.4; stroke-linecap: round; }
@keyframes sunspin { to { transform: rotate(360deg); } }
@media (max-width: 920px) { .dawn-sun { top: -70px; right: -50px; width: 250px; height: 250px; opacity: .72; } }
.digest-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.digest-top { padding: 22px 26px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: linear-gradient(180deg, var(--accent-soft), transparent); }
.digest-top .dt-title { font-weight: 700; font-size: 17px; }
.digest-top .dt-sub { font-family: var(--mono); font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.digest-top .dt-time { font-family: var(--mono); font-size: 12.5px; color: var(--accent-2); }
.drow { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 17px 26px; border-bottom: 1px solid var(--border); opacity: 0; transform: translateX(-14px); }
.drow.is-in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.drow:last-child { border-bottom: 0; }
.drow .role { font-weight: 600; font-size: 15.5px; }
.drow .co { font-family: var(--mono); font-size: 12.5px; color: var(--text-faint); margin-top: 3px; }
.drow .right { display: flex; align-items: center; gap: 12px; }
.score { font-family: var(--mono); font-size: 12.5px; font-weight: 600; padding: 6px 10px; border-radius: 7px; background: var(--accent-soft); color: var(--accent-2); white-space: nowrap; }
.status { font-family: var(--mono); font-size: 12px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; min-width: 86px; }
.status .tick { color: var(--accent); }
.status.skip { color: var(--text-faint); }

.feat-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.feat { display: flex; gap: 16px; }
.feat .fi { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 11px; background: var(--accent-soft); display: grid; place-items: center; }
.feat .fi svg { width: 20px; height: 20px; stroke: var(--accent-2); fill: none; stroke-width: 1.9; }
.feat h4 { font-size: 17.5px; font-weight: 700; }
.feat p { font-size: 15px; color: var(--text-muted); margin-top: 4px; }

/* ---------------- why grid ---------------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; transition: border-color .25s, transform .25s, box-shadow .25s; box-shadow: var(--shadow-sm); }
.why:hover { border-color: var(--accent-line); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.why .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 20px; }
.why .ic svg { width: 22px; height: 22px; stroke: var(--accent-2); fill: none; stroke-width: 1.8; }
.why h3 { font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.why p { font-size: 15.5px; color: var(--text-muted); margin-top: 11px; }
.why .meta { font-family: var(--mono); font-size: 12.5px; color: var(--accent-2); margin-top: 18px; }

/* ---------------- layoff (warm card) ---------------- */
.layoff { background: linear-gradient(135deg, var(--accent-soft), var(--surface) 60%); border: 1px solid var(--accent-line); border-radius: 22px; padding: clamp(32px, 5vw, 58px); position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.layoff-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; position: relative; }
.layoff h2 { font-size: clamp(28px, 3.6vw, 38px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; text-wrap: balance; }
.layoff p { font-size: 17px; color: var(--text-muted); margin-top: 16px; text-wrap: pretty; }
.layoff .pill { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 13px; color: var(--accent-2); background: var(--surface); border: 1px solid var(--accent-line); padding: 8px 14px; border-radius: 999px; margin-bottom: 22px; }
.price-tag { background: var(--surface); border: 1px solid var(--border); border-radius: 17px; padding: 30px; text-align: center; box-shadow: var(--shadow-md); }
.price-tag .off { font-family: var(--mono); font-size: 13px; color: var(--accent-2); }
.price-tag .amt { font-size: 48px; font-weight: 800; letter-spacing: -.03em; margin: 8px 0 2px; }
.price-tag .amt s { color: var(--text-faint); font-weight: 500; font-size: 25px; margin-right: 10px; }
.price-tag .per { font-size: 14px; color: var(--text-muted); }

/* ---------------- pricing ---------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 34px; display: flex; flex-direction: column; transition: border-color .25s, transform .25s, box-shadow .25s; box-shadow: var(--shadow-sm); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.feature { border-color: var(--accent-line); box-shadow: 0 30px 60px -30px rgba(79,91,224,0.35); position: relative; }
.plan.feature::before { content: ""; position: absolute; inset: 0; border-radius: 18px; background: linear-gradient(180deg, var(--accent-soft), transparent 36%); pointer-events: none; }
.plan > * { position: relative; }
.plan .pname { font-family: var(--mono); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); }
.plan.feature .pname { color: var(--accent-2); }
.plan .pprice { font-size: 42px; font-weight: 800; letter-spacing: -.03em; margin: 14px 0 2px; }
.plan .pprice span { font-size: 16px; font-weight: 500; color: var(--text-faint); }
.plan .pdesc { font-size: 14.5px; color: var(--text-muted); min-height: 44px; }
.plan ul { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 13px; }
.plan li { display: flex; gap: 11px; font-size: 14.5px; color: var(--text-muted); }
.plan li svg { flex: 0 0 17px; width: 17px; height: 17px; stroke: var(--accent); fill: none; stroke-width: 2.4; margin-top: 3px; }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }
.ptag { display: inline-block; font-family: var(--mono); font-size: 11px; padding: 4px 9px; border-radius: 6px; background: var(--accent); color: #fff; font-weight: 600; margin-left: 9px; vertical-align: 3px; }

/* ---------------- final CTA ---------------- */
.final { text-align: center; padding: 92px 0; position: relative; }
.final h2 { font-size: clamp(38px, 5.2vw, 64px); font-weight: 800; letter-spacing: -.035em; line-height: 1.04; text-wrap: balance; color: var(--text); }
.final p { font-size: clamp(17px, 1.4vw, 20px); color: var(--text-muted); margin: 20px auto 0; max-width: 32em; }
.final .cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.install-line { display: inline-flex; align-items: center; gap: 14px; margin-top: 30px; font-family: var(--mono); font-size: 14.5px; background: var(--surface); color: var(--text); border: 1px solid var(--border-str); border-radius: 11px; padding: 13px 17px; box-shadow: var(--shadow-sm); }
.install-line .prompt { color: var(--accent); }
.install-line .cp { color: var(--text-faint); cursor: pointer; transition: color .15s; }
.install-line .cp:hover { color: var(--accent); }

/* ---------------- footer ---------------- */
footer { border-top: 1px solid var(--border); padding: 56px 0 60px; background: var(--surface); }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.foot-col h5 { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 15px; }
.foot-col a { display: block; font-size: 14.5px; color: var(--text-muted); margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--text-faint); flex-wrap: wrap; gap: 12px; }

/* ============================================================ RESPONSIVE */
@media (max-width: 920px) {
  .hero-grid, .dawn-grid, .layoff-grid { grid-template-columns: 1fr; gap: 44px; }
  .steps, .why-grid, .plans { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  section.block { padding: 60px 0; }
  .hero { padding: 116px 0 80px; min-height: 0; }
  .term-body { min-height: 280px; }
  .night { padding: 64px 0; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav-cta .nav-signin { display: none; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .scroll-cue { display: none; }
  .install-line { flex-wrap: wrap; font-size: 13px; }
  .bg-fx .blob { filter: blur(50px); }
  .hero .eyebrow { font-size: 10.5px; letter-spacing: .05em; }
}

/* ===== sunshine hints — the hope thread across the page ===== */
.sun-hint { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(246,183,62,0.20), rgba(246,183,62,0) 68%); }
.hero-sun-hint { top: -30px; right: 4%; width: 320px; height: 320px; }
.layoff .sun-hint { top: -30px; right: -20px; width: 250px; height: 250px; }

.final .wrap { position: relative; z-index: 1; }
.final-sun { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 980px; height: 760px; max-width: 132vw; z-index: 0; pointer-events: none; }
.final-sun .glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 44%, rgba(246,183,62,0.24), rgba(246,183,62,0) 60%); }
.final-sun .rays, .final-sun .core { display: none; }
@media (max-width: 920px) { .hero-sun-hint { width: 220px; height: 220px; right: -20px; } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  [data-reveal], .drow, .ln { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .bg-fx .blob { animation: none !important; }
}
