/* ============================================================
   SPARKSHIP — colorful hand-crafted redesign
   Spark mark is the only shape language. Flat: no gradients,
   glows, or shadows. Secondary colors live only on cards +
   decorative spark shapes.
   ============================================================ */

:root {
  --ink: #191613;
  --cream: #FAF5EA;
  --cream-2: #F1E9D6;          /* nested light surface */
  --line: #E4DAC4;             /* hairline on cream */
  --line-dark: #34302A;        /* hairline on ink */

  --spark: #FFD43B;            /* yellow — CTAs, logo spark, underlines */
  --spark-dark: #6B4E00;       /* deep amber: text on yellow */

  --coral: #F05A3C;   --coral-dark: #7A2A18;
  --peri:  #8B7BF7;   --peri-dark:  #2E2470;
  --lime:  #B5D44A;   --lime-dark:  #3F4A18;

  --ink-soft: #5A5347;         /* secondary text on cream */
  --cream-soft: #B7AE9C;       /* secondary text on ink */

  --font-display: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-hand: "Caveat", cursive;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* grain — hand-made paper feel (texture, not a shadow) */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Type ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.serif { font-family: var(--font-display); font-style: italic; font-weight: 600; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.eyebrow .spark { width: 13px; height: 13px; }
.section--dark .eyebrow { color: var(--cream-soft); }
.mono { font-family: var(--font-mono); letter-spacing: 0.06em; }

/* ---- Spark marks (the only shape language) ---- */
.spark { display: inline-block; line-height: 0; flex-shrink: 0; }
.spark svg { display: block; width: 100%; height: 100%; }
.spark svg * { fill: currentColor; }
.c-coral { color: var(--coral); }
.c-peri  { color: var(--peri); }
.c-lime  { color: var(--lime); }
.c-spark { color: var(--spark); }
.c-cream { color: var(--cream); }
.c-ink   { color: var(--ink); }

/* ---- Buttons (yellow is the only CTA color) ---- */
.btn {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px;
  border: 2px solid transparent; border-radius: 999px;
  cursor: pointer; text-decoration: none;
  transition: transform 0.18s var(--ease), background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn-ember { background: var(--spark); color: var(--ink); }
.btn-ember:hover { transform: translateY(-2px) rotate(-1deg); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.section--dark .btn-ghost { color: var(--cream); border-color: var(--cream); }
.section--dark .btn-ghost:hover { background: var(--cream); color: var(--ink); }
.btn .arrow { transition: transform 0.18s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--ink);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.scrolled {
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.wordmark {
  font-family: var(--font-display); font-weight: 700; font-size: 23px;
  letter-spacing: -0.03em; color: var(--cream); text-decoration: none;
  display: inline-flex; align-items: center;
}
.wordmark .logo-img { height: 82px; width: auto; display: block; }
.footer-mark .logo-img { height: 44px; }
.wm-star { width: 0.6em; height: 0.6em; fill: var(--spark); margin-left: 1px; margin-top: -0.14em;
  transform-origin: center; animation: starPulse 2.6s ease-in-out infinite; }
@keyframes starPulse { 0%,100% { transform: scale(0.9) rotate(0deg); } 50% { transform: scale(1.12) rotate(20deg); } }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream-soft); text-decoration: none;
  position: relative; white-space: nowrap; transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--spark); transition: width 0.25s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ============================================================
   SECTION SHELLS + bg rhythm
   ============================================================ */
.section { position: relative; padding: 128px 0; }
.section--dark { background: var(--ink); color: var(--cream); }
.section--dark .section-head p, .section--dark .step p { color: var(--cream-soft); }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; }

.section-head { margin-bottom: clamp(40px, 6vw, 70px); }
.section-head h2 { font-size: clamp(34px, 6vw, 64px); margin-top: 16px; }
.section-head p { max-width: 46ch; margin-top: 20px; color: var(--ink-soft); font-size: 18px; }

/* ============================================================
   HERO (ink)
   ============================================================ */
.hero { position: relative; background: var(--ink); color: var(--cream); overflow: hidden;
  min-height: 100vh; margin-top: -96px; display: flex; align-items: center; justify-content: center; }
.hero-inner { width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(128px, 17vh, 176px) var(--gutter) clamp(40px, 6vh, 72px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.hero-left { position: relative; z-index: 2; width: 100%; max-width: 1180px; }
.hero h1 { font-size: clamp(60px, 11vw, 184px); line-height: 0.98; letter-spacing: -0.04em; color: var(--cream); }
.spark-serif { font-family: var(--font-hand); font-style: normal; font-weight: 700; color: var(--spark); letter-spacing: 0; font-size: 1.12em; line-height: 0.9; }
.hero-sub { margin: 30px auto 0; font-size: clamp(17px, 1.5vw, 20px); max-width: 42ch; color: var(--cream-soft); line-height: 1.55; }
.hero-sub .serif { color: var(--cream); }
.hero-cta { margin-top: 26px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero-cta .btn-ember { font-size: 12px; padding: 12px 20px; gap: 8px; }

/* hero: idea -> shipped transformation */
.hero-flow { position: relative; z-index: 1; pointer-events: none;
  display: flex; align-items: center; justify-content: flex-end; }
.hf-note-wrap { position: relative; flex: 0 0 auto; width: clamp(150px, 13vw, 186px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hf-ui-wrap { position: relative; width: 100%;
  display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.hf-conn { position: relative; flex: 0 0 auto; width: clamp(50px, 5vw, 84px); height: 24px; align-self: center; }
.hf-tag { font-family: var(--font-mono); font-weight: 600; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; border: 1.5px solid; }
.hf-tag-spark { background: var(--coral); color: var(--cream); border-color: var(--coral-dark); }
.hf-tag-ship { background: var(--lime); color: var(--lime-dark); border-color: var(--lime-dark); }
.hf-note { background: var(--cream); color: var(--ink); font-family: var(--font-hand); font-weight: 700;
  font-size: clamp(18px, 1.7vw, 24px); line-height: 1.16; padding: 18px 20px; border-radius: 3px;
  box-shadow: 6px 6px 0 var(--ink); transform: rotate(-4deg); }
.hf-ui { width: 100%; background: var(--cream); color: var(--ink); border: 2px solid var(--ink); border-radius: 12px;
  box-shadow: 8px 8px 0 var(--ink); overflow: hidden; }
.hf-ui-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 15px 19px; border-bottom: 2px solid var(--ink); }
.hf-ui-name { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.hf-pub { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
  background: var(--lime); color: var(--lime-dark); border: 1.5px solid var(--lime-dark); padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.hf-ui-rows { padding: 4px 19px 8px; }
.hf-ui-row { display: flex; align-items: center; gap: 13px; padding: 14px 0; border-top: 1.5px solid var(--line); font-size: 15px; }
.hf-ui-row:first-child { border-top: none; }
.hf-day { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); width: 38px; flex-shrink: 0; }
.hf-crew { flex: 1; font-weight: 500; }
.hf-chip { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.hf-chip.ok { color: var(--lime-dark); font-weight: 600; }
.hf-ui-cta { margin: 8px 19px 18px; background: var(--ink); color: var(--cream); text-align: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 13px; border-radius: 999px; }
.hf-line { position: absolute; left: 2px; right: 2px; top: 50%; transform: translateY(-50%); height: 0; border-top: 1.5px dashed rgba(250,245,234,0.45); }
.hf-spark { position: absolute; top: 50%; left: 0; width: 22px; height: 22px; transform: translate(-50%, -50%); opacity: 0; }
/* load order: note pops -> spark travels -> ui builds -> published pops */
.hf-note-wrap { opacity: 0; transform: translateY(14px) scale(0.95); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.hero.loaded .hf-note-wrap { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.15s; }
.hero.loaded .hf-spark { opacity: 1; left: 100%; transition: left 0.6s ease 0.7s, opacity 0.2s ease 0.7s; }
.hf-ui-wrap { opacity: 0; transform: translateY(26px); transition: opacity 0.5s var(--ease), transform 0.55s var(--ease); }
.hero.loaded .hf-ui-wrap { opacity: 1; transform: translateY(0); transition-delay: 1.3s; }
.hf-pub { opacity: 0; transform: scale(0.4); transition: opacity 0.3s var(--ease), transform 0.35s var(--ease); }
.hero.loaded .hf-pub { opacity: 1; transform: scale(1); transition-delay: 1.85s; }

.ptile { border-radius: 16px; padding: 14px; overflow: hidden; background: var(--tc); color: var(--td); }
.p-coral { --tc: var(--coral); --td: var(--coral-dark); }
.p-peri  { --tc: var(--peri);  --td: var(--peri-dark); }
.p-lime  { --tc: var(--lime);  --td: var(--lime-dark); }
.p-spark { --tc: var(--spark); --td: var(--spark-dark); }
.p-cream { --tc: var(--cream); --td: var(--ink); }
.pt-name { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--td); }
.pt-screen { margin-top: 10px; background: color-mix(in srgb, #fff 58%, var(--tc)); border-radius: 10px; padding: 11px 12px; display: flex; flex-direction: column; gap: 8px; }
.pt-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12px; font-weight: 500; color: var(--td);
  padding-bottom: 7px; border-bottom: 1.5px solid color-mix(in srgb, var(--td) 20%, transparent); }
.pt-row:last-child { border-bottom: none; padding-bottom: 0; }
.pt-num { font-family: var(--font-mono); font-size: 11px; color: var(--td); }
.pt-pill { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; background: var(--td); color: var(--tc); }
.pt-btn { background: var(--td); color: var(--tc); border-radius: 999px; padding: 7px 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; text-align: center; }
.pt-chart { display: flex; align-items: flex-end; gap: 6px; height: 54px; padding: 2px 2px 0; }
.pt-chart span { flex: 1; background: var(--td); border-radius: 3px 3px 0 0; }

/* hand-drawn "takes 30 sec" note by the CTA */
.cta-note { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.cta-note .hand { font-family: var(--font-hand); font-weight: 700; font-size: 23px; color: var(--spark); transform: rotate(-6deg); white-space: nowrap; }
.cta-note .hand-arrow { width: 46px; height: 30px; }
.cta-note .hand-arrow path { fill: none; stroke: var(--spark); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* staged hero reveal */
.reveal-stage { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.hero.loaded .reveal-stage { opacity: 1; transform: none; }
.hero.loaded .s1 { transition-delay: 0.05s; }
.hero.loaded .s2 { transition-delay: 0.16s; }
.hero.loaded .s3 { transition-delay: 0.28s; }
.hero.loaded .s4 { transition-delay: 0.40s; }

/* one-time choreographed hero entrance: idea fades up -> sparks handwrites -> we ship it lands -> sub/cta */
.hl-idea, .hl-ship { display: inline-block; vertical-align: baseline;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.hl-sparks { display: inline-block; vertical-align: baseline;
  clip-path: inset(-0.18em 100% -0.28em -0.1em);
  transition: clip-path 0.6s cubic-bezier(0.55, 0, 0.2, 1); }
.hl-sub, .hl-cta { opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }

.hero.loaded .hl-idea { opacity: 1; transform: none; transition-delay: 0.15s; }
.hero.loaded .hl-sparks { clip-path: inset(-0.18em -0.5em -0.28em -0.1em); transition-delay: 0.55s; }
.hero.loaded .hl-ship { opacity: 1; transform: none; transition-delay: 1.15s; }
.hero.loaded .hl-sub { opacity: 1; transform: none; transition-delay: 1.5s; }
.hero.loaded .hl-cta { opacity: 1; transform: none; transition-delay: 1.62s; }

/* sticker badges (small footnote pills, left-aligned under the CTA) */
.stickers { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
  padding-bottom: clamp(70px, 10vw, 130px); }
.sticker {
  font-family: var(--font-mono); font-weight: 600; font-size: 10px; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 7px 12px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px; border: 1.5px solid;
}
.sticker .spark { width: 11px; height: 11px; }
.sticker.s-coral { background: color-mix(in srgb, var(--coral) 80%, var(--cream)); color: var(--coral-dark); border-color: var(--coral-dark); transform: rotate(-2deg); }
.sticker.s-peri  { background: color-mix(in srgb, var(--peri) 80%, var(--cream));  color: var(--peri-dark);  border-color: var(--peri-dark);  transform: rotate(1.5deg); }
.sticker.s-spark { background: color-mix(in srgb, var(--spark) 82%, var(--cream)); color: var(--spark-dark); border-color: var(--spark-dark); transform: rotate(1.5deg); }
.stickers--results { margin-top: clamp(32px, 4vw, 48px); padding-bottom: 0; }

/* hero spark family cropped by the fold */
.spark-family { position: absolute; left: 0; right: 0; bottom: 0; height: 150px; pointer-events: none; overflow: hidden; }
.spark-family .spark { position: absolute; }
.sf1 { width: 64px; height: 64px; left: 4%;  bottom: -18px; transform: rotate(8deg); }
.sf2 { width: 110px; height: 110px; left: 17%; bottom: -52px; }
.sf3 { width: 44px;  height: 44px;  left: 30%; bottom: 34px; transform: rotate(-12deg); }
.sf4 { width: 90px;  height: 90px;  left: 44%; bottom: -44px; }
.sf5 { width: 56px;  height: 56px;  left: 57%; bottom: 12px; transform: rotate(15deg); }
.sf6 { width: 128px; height: 128px; left: 68%; bottom: -64px; }
.sf7 { width: 50px;  height: 50px;  left: 83%; bottom: 30px; transform: rotate(-8deg); }
.sf8 { width: 96px;  height: 96px;  left: 92%; bottom: -40px; }

/* How-it-works: scroll-linked Spark -> Build -> Ship flow */
.flow { display: grid; grid-template-columns: 1fr 92px 1fr 92px 1fr; align-items: stretch; }
.flow .step { opacity: 0.4; transform: translateY(16px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), box-shadow 0.18s var(--ease); }
.flow .step.lit { opacity: 1; transform: none; }
.flow .step .icon svg .doodle { transition: stroke 0.4s var(--ease); }

.flow-link { position: relative; display: flex; align-items: center; justify-content: center; min-height: 100%; }
.fl-track { position: absolute; left: 2px; right: 2px; top: clamp(54px, 7vw, 78px); height: 3px;
  background-image: repeating-linear-gradient(90deg, var(--ink) 0 5px, transparent 5px 12px); opacity: 0.22; border-radius: 2px; }
.fl-draw { position: absolute; left: 0; top: 0; height: 100%; width: calc(var(--fill, 0) * 100%); border-radius: 2px; }
.flow-link.l-coral .fl-draw { background: var(--peri); }
.flow-link.l-peri  .fl-draw { background: var(--lime); }
.fl-star { position: absolute; top: clamp(54px, 7vw, 78px); left: 50%; width: 38px; height: 38px; padding: 8px;
  transform: translate(-50%, -50%) scale(0) rotate(-30deg); background: var(--cream); border: 2px solid currentColor;
  border-radius: 50%; transition: transform 0.45s var(--ease); }
.flow-link.l-coral .fl-star { color: var(--peri); }
.flow-link.l-peri  .fl-star { color: var(--lime); }
.flow-link.lit .fl-star { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
.fl-star svg { display: block; width: 100%; height: 100%; }

/* ============================================================
   TICKER (ink band continuing hero)
   ============================================================ */
.ticker { background: var(--ink); color: var(--cream); border-top: 2px solid var(--line-dark); border-bottom: 2px solid var(--line-dark); overflow: hidden; padding: 16px 0; }
.ticker-track { display: flex; width: max-content; animation: marquee 34s linear infinite; will-change: transform; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em;
  padding: 0 22px; display: inline-flex; align-items: center; gap: 22px; color: var(--cream); }
.ticker-track .tbull { width: 17px; height: 17px; }
.ticker-track .ticon { display: inline-block; line-height: 0; flex-shrink: 0; vertical-align: middle; }
.ticker-track .ticon svg { display: block; }
.ticker-track .ticon.c-coral { color: var(--coral); }
.ticker-track .ticon.c-lime  { color: var(--lime); }
.ticker-track .ticon.c-peri  { color: var(--peri); }
.ticker-track .ticon.c-spark { color: var(--spark); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   HOW IT WORKS (cream) — doodle icons + spark bullets
   ============================================================ */
.step { position: relative; padding: 30px 28px 32px; border: 2px solid var(--ink); border-radius: 14px; background: var(--cream); }
.step .num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--ink-soft); }
.step .icon { margin: 4px 0 22px; height: 76px; display: flex; align-items: center; }
.step .icon svg { height: 100%; overflow: visible; }
.doodle { fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.doodle .accent { stroke: var(--coral); }
.step h3 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }
.step .who { display: inline-block; margin: 12px 0 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink); border: 2px solid var(--ink); padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.step p { color: var(--ink-soft); font-size: 16px; }

/* spark bullets list */
.spark-bullets { list-style: none; display: grid; gap: 14px; }
.spark-bullets li { display: flex; align-items: baseline; gap: 12px; }
.spark-bullets .spark { width: 16px; height: 16px; position: relative; top: 3px; }

/* ============================================================
   GIANT CROPPED TYPE BAND (cream)
   ============================================================ */
.bigband { background: var(--cream); overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: clamp(24px, 4vw, 56px) 0; }
.bb-track { display: flex; width: max-content; align-items: center; gap: clamp(22px, 3vw, 44px); animation: bbMarquee 40s linear infinite; will-change: transform; }
.bb-track:hover { animation-play-state: paused; }
.bb-word { font-family: var(--font-display); font-weight: 800; color: var(--ink);
  font-size: clamp(48px, 11vw, 150px); line-height: 1; letter-spacing: -0.04em; white-space: nowrap; }
.bbm { width: clamp(30px, 4.5vw, 64px); height: clamp(30px, 4.5vw, 64px); flex-shrink: 0; }
@keyframes bbMarquee { to { transform: translateX(-50%); } }

/* ============================================================
   WHAT WE BUILD (ink) — solid color cards
   ============================================================ */
.build-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.tile { padding: clamp(28px, 3vw, 40px); border-radius: 18px; border: 2px solid var(--ink); min-height: 280px;
  display: flex; flex-direction: column; }
.tile .tile-spark { width: 40px; height: 40px; margin-bottom: auto; }
.tile h3 { font-size: clamp(22px, 2.4vw, 30px); margin-top: 26px; }
.tile p { font-size: 16px; margin-top: 14px; opacity: 0.92; }
.tile.t-coral { background: var(--coral); color: var(--coral-dark); border-color: var(--coral-dark); }
.tile.t-peri  { background: var(--peri);  color: var(--peri-dark);  border-color: var(--peri-dark); }
.tile.t-lime  { background: var(--lime);  color: var(--lime-dark);  border-color: var(--lime-dark); }
.tile.t-spark { background: var(--spark); color: var(--spark-dark); border-color: var(--spark-dark); }
.tile:nth-child(2) { transform: translateY(18px); }
.tile:nth-child(3) { transform: translateY(-18px); }

/* ============================================================
   TRUST (ink) — asymmetric: text left, tilted peri card right
   ============================================================ */
.trust-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.trust-copy h2 { font-size: clamp(32px, 5vw, 56px); color: var(--cream); }
.trust-copy .manifesto { margin-top: 24px; font-size: clamp(18px, 2vw, 22px); line-height: 1.5; color: var(--cream-soft); }
.trust-copy .manifesto strong { color: var(--cream); font-weight: 700; }
.trust-copy .manifesto .hi { color: var(--spark); }
.trust-caps { list-style: none; display: grid; gap: 14px; margin-top: 30px; }
.trust-caps li { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--cream); }
.trust-caps .spark { width: 16px; height: 16px; }

/* Unfair-advantage org chart (clean, on dark) */
.org { background: #1F1B16; border: 1px solid rgba(250,245,234,0.12); }
.org-tree { display: flex; flex-direction: column; align-items: center; }
.org-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.onode { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; font-weight: 600;
  border: 1.5px solid transparent; border-radius: 9px; padding: 13px 22px; display: flex; flex-direction: column; align-items: center;
  gap: 3px; line-height: 1.2; text-align: center;
  opacity: 0; transform: translateY(10px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.org.in .onode { opacity: 1; transform: translateY(0); }
.on-sub { font-size: 9px; letter-spacing: 0.06em; opacity: 0.75; }
.n-eng { background: var(--spark); color: var(--ink); min-width: 240px; }
.n-agent { background: var(--ink); border-color: var(--peri); color: var(--peri); min-width: 86px; padding: 13px 14px; }
.n-review { background: var(--lime); color: var(--ink); min-width: 220px; letter-spacing: 0.14em; }
.n-you { background: transparent; border-color: var(--cream); color: var(--cream); min-width: 150px; }
.oc-v { width: 0; height: 24px; border-left: 1px dashed rgba(250,245,234,0.3); margin: 5px auto;
  transform: scaleY(0); transform-origin: top center; transition: transform 0.3s var(--ease); }
.org.in .oc-v { transform: scaleY(1); }
.org.in .org-r1 .onode { transition-delay: 0s; }
.org.in .oc1 { transition-delay: 0.15s; }
.org.in .org-r2 .onode { transition-delay: 0.30s; }
.org.in .org-r2 .onode:nth-child(2){ transition-delay: 0.36s; }
.org.in .org-r2 .onode:nth-child(3){ transition-delay: 0.42s; }
.org.in .org-r2 .onode:nth-child(4){ transition-delay: 0.48s; }
.org.in .oc2 { transition-delay: 0.55s; }
.org.in .org-r3 .onode { transition-delay: 0.70s; }
.org.in .oc3 { transition-delay: 0.85s; }
.org.in .org-r4 .onode { transition-delay: 1.0s; }

/* miniature static version inside FAQ (on cream) */
.org-mini { display: flex; flex-direction: column; align-items: center; margin: 4px 6px 26px; }
.org-mini .omrow { display: flex; gap: 7px; }
.omnode { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; font-size: 9px; font-weight: 600;
  border: 1.5px solid transparent; border-radius: 6px; padding: 6px 11px; line-height: 1; }
.m-eng { background: var(--spark); color: var(--ink); }
.m-agent { background: var(--ink); border-color: var(--peri); color: var(--peri); }
.m-review { background: var(--lime); color: var(--ink); }
.m-you { background: transparent; border-color: var(--ink); color: var(--ink); }
.omc { width: 0; height: 14px; border-left: 1px dashed rgba(25,22,19,0.3); margin: 4px auto; }

/* ============================================================
   ESTIMATOR (cream) — flat dark chrome
   ============================================================ */
.est-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.est-copy h2 { font-size: clamp(32px, 5vw, 56px); }
.est-copy p { margin-top: 20px; color: var(--ink-soft); font-size: 18px; max-width: 36ch; }
.est-copy .est-cta { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
.est-frame { background: #211D18; border: 1px solid rgba(250,245,234,0.2); border-radius: 16px; padding: 14px; transform: rotate(-2deg); }
.est-screen { background: #221E18; border: 2px solid var(--line-dark); border-radius: 9px; overflow: hidden; }
.est-top { padding: 13px 16px; border-bottom: 2px solid var(--line-dark); display: flex; align-items: center; gap: 8px; }
.est-top .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--spark); white-space: nowrap; }
.est-input { margin: 16px; background: var(--ink); border: 2px solid var(--line-dark); border-radius: 9px; padding: 13px 13px 13px 16px; display: flex; align-items: center; gap: 12px; }
.est-input .txt { flex: 1; color: var(--cream-soft); font-size: 14px; }
.est-input .txt .caret { color: var(--spark); animation: blink 1.1s step-end infinite; }
.est-input .mic { width: 38px; height: 38px; border-radius: 50%; background: var(--spark); color: var(--ink);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.est-result { margin: 0 16px 18px; }
.est-result .rlabel { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-soft); margin-bottom: 12px; }
.tl-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.tl-row .tl-name { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-soft); width: 60px; flex-shrink: 0; }
.tl-bar { height: 14px; border-radius: 4px; background: var(--line-dark); position: relative; flex: 1; overflow: hidden; }
.tl-bar .fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 4px; width: 0; transition: width 0.4s var(--ease); }
.tl-row:nth-child(2) .fill { background: var(--spark); }
.tl-row:nth-child(3) .fill { background: var(--peri); }
.tl-row:nth-child(4) .fill { background: var(--lime); }
.est-frame.run .tl-bar .fill { width: var(--w, 60%); }

/* ============================================================
   RESULTS (ink) — stats + sticker badges + testimonial card
   ============================================================ */
.results-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-bottom: 52px; }
.rstat { padding: 4px 0; }
.rstat .rspark { width: 22px; height: 22px; margin-bottom: 16px; }
.results-stats .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95; letter-spacing: -0.03em; color: var(--ink); }
.results-stats .big .unit { font-size: 0.4em; color: var(--ink); }
.rlabel2 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 14px; }

.testi-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.testi { background: var(--peri); color: var(--peri-dark); border: 2px solid var(--peri-dark);
  display: flex; flex-direction: column; transform: rotate(-1.5deg); position: relative; }
.testi .pin { position: absolute; top: -12px; left: 50%; width: 22px; height: 22px; transform: translateX(-50%) rotate(12deg); color: var(--spark); }
.testi blockquote { font-size: 21px; line-height: 1.4; font-weight: 500; margin: 6px 0 26px; text-wrap: pretty; }
.testi .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--peri-dark); color: var(--peri);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 14px; font-weight: 600; flex-shrink: 0; }
.testi .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.7; }
.testi .meta strong { font-weight: 700; }

/* ============================================================
   FAQ (cream)
   ============================================================ */
.faq-list { border-top: 2px solid var(--ink); max-width: 880px; }
.faq-item { border-bottom: 2px solid var(--ink); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 26px 6px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2.4vw, 26px); letter-spacing: -0.02em; color: var(--ink); }
.faq-icon { position: relative; width: 26px; height: 26px; flex-shrink: 0; color: var(--ink);
  transition: transform 0.4s var(--ease), color 0.25s var(--ease); }
.faq-icon .spark { display: block; width: 100%; height: 100%; }
.faq-q:hover .faq-icon { color: var(--spark); }
.faq-item.open .faq-icon { transform: rotate(45deg) scale(1.08); color: var(--spark); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 6px 28px; color: var(--ink-soft); font-size: 17px; max-width: 60ch; }

/* ============================================================
   FINAL (ink) + FOOTER
   ============================================================ */
.final { text-align: center; position: relative; overflow: hidden; padding: 104px 0; }
.final h2 { font-size: clamp(34px, 6.5vw, 78px); max-width: 18ch; margin: 0 auto; color: var(--cream); }
.final .final-cta { margin-top: 40px; }
.final-cta .btn-ember { font-size: 12px; padding: 12px 20px; gap: 8px; }
.final-spark { margin: 0 auto 8px; width: 100%; max-width: 520px; height: 60px; }

.footer { background: var(--ink); color: var(--cream); border-top: 2px solid var(--line-dark); padding: 44px 0; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 18px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-soft); }
.footer-inner .wordmark { text-transform: none; }
.footer-inner a { color: var(--cream-soft); text-decoration: none; transition: color 0.2s; }
.footer-inner a:hover { color: var(--spark); }
.footer-inner .sep { opacity: 0.4; }
.footer-links { display: flex; gap: 18px; align-items: center; }

/* ---- reveal utility ---- */
.r { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.r.in { opacity: 1; transform: none; }
.r.d1 { transition-delay: 0.1s; }

/* ---- keyframes ---- */
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .trust-grid, .est-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; margin-top: 0; }
  .hero-inner {
    padding: clamp(80px, 10vh, 110px) var(--gutter) clamp(40px, 6vh, 64px); }
  .eqcard { transform: rotate(1.5deg); }
  .est-frame { transform: rotate(-1deg); }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { gap: 12px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { font-size: 11px; padding: 11px 14px; gap: 6px; }
  .wordmark .logo-img { height: 60px; }
  .build-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow-link { min-height: 64px; }
  .fl-track { left: 50%; right: auto; top: 8px; bottom: 8px; width: 3px; height: auto;
    background-image: repeating-linear-gradient(180deg, var(--ink) 0 5px, transparent 5px 12px); transform: translateX(-50%); }
  .fl-draw { width: 100%; height: calc(var(--fill, 0) * 100%); }
  .fl-star { top: 50%; left: 50%; }
  .tile:nth-child(2), .tile:nth-child(3) { transform: none; }
  .results-stats { grid-template-columns: 1fr; gap: 28px; }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal-stage, .r { opacity: 1 !important; transform: none !important; }
  .hl-idea, .hl-ship, .hl-sub, .hl-cta { opacity: 1 !important; transform: none !important; }
  .hl-sparks { clip-path: none !important; }
  .hf-note-wrap, .hf-ui-wrap, .hf-pub, .eq-line, .eq-foot { opacity: 1 !important; transform: none !important; }
  .hf-spark { opacity: 1 !important; }
  .bb-track { animation: none !important; }
  .brick, .node-agent { opacity: 1 !important; transform: none !important; }
  .trail { stroke-dashoffset: 0 !important; }
  .squiggle-word .squiggle path { stroke-dashoffset: 0 !important; }
  .tl-bar .fill { width: var(--w, 60%) !important; }
  .ticker-track { animation: none !important; }
}

/* ============================================================
   PASS 1 — color discipline + standardized cards
   ============================================================ */
/* The spark glyph is the brand mark — yellow wherever it stands alone */
.eyebrow .spark { color: var(--spark); }
.trust-caps .spark { color: var(--spark); }
.bigband .bb-spark { color: var(--spark); }

/* How-it-works row: phase-colored 6px top border + icon; bodies neutral */
.flow .step { border-top: 6px solid var(--ink); }
.flow .step[data-i="0"] { border-top-color: var(--spark); }
.flow .step[data-i="1"] { border-top-color: var(--peri); }
.flow .step[data-i="2"] { border-top-color: var(--lime); }
.flow .step .icon { color: var(--ink); }
.flow .step[data-i="0"] .icon { color: var(--spark); }
.flow .step[data-i="1"] .icon { color: var(--peri); }
.flow .step[data-i="2"] .icon { color: var(--lime); }
.flow .step .icon .doodle,
.flow .step .icon .doodle .accent { stroke: currentColor; }

/* Capabilities bento: Ongoing improvements = off-white card, ink border, no fill */
.tile.t-plain { background: #FFFFFF; color: var(--ink); border-color: var(--ink); }
.tile.t-plain p { color: var(--ink-soft); opacity: 1; }

/* Proof stats: one phase-colored tick per stat, numerals stay neutral */
.results-stats .rstat:nth-child(1) .rspark { color: var(--spark); }
.results-stats .rstat:nth-child(2) .rspark { color: var(--peri); }
.results-stats .rstat:nth-child(3) .rspark { color: var(--lime); }

/* Result stickers — neutral status pills, phase-colored mini sparks */
.stickers--results .sticker { background: var(--cream-2); color: var(--ink); border-color: var(--ink); }
.stickers--results .sticker:nth-child(1) .spark { color: var(--spark); }
.stickers--results .sticker:nth-child(2) .spark { color: var(--peri); }
.stickers--results .sticker:nth-child(3) .spark { color: var(--lime); }

/* Standardized cards: 12px radius, 32px padding, hard 4px ink shadow */
.step, .tile, .testi, .org { border-radius: 12px; padding: 32px; }
.step, .tile, .testi, .org, .est-frame { box-shadow: 4px 4px 0 var(--ink); }
.est-frame { border-radius: 12px; }
.tile, .testi, .org, .est-frame { transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease); }
.tile:hover, .testi:hover, .org:hover, .est-frame:hover, .flow .step:hover { box-shadow: 6px 6px 0 var(--ink); }
.flow .step:hover { transform: translateY(-2px); }
.est-frame:hover { transform: rotate(-2deg) translateY(-2px); }
.org:hover { transform: rotate(2.5deg) translateY(-2px); }
.testi:hover { transform: rotate(-1.5deg) translateY(-2px); }
.tile:nth-child(1):hover, .tile:nth-child(4):hover { transform: translateY(-2px); }
.tile:nth-child(2):hover { transform: translateY(16px); }
.tile:nth-child(3):hover { transform: translateY(-20px); }

/* ============================================================
   PASS 2 — hero cards, marquee, recolored bands, testimonials
   ============================================================ */
.pt-lines { display: flex; flex-direction: column; gap: 7px; margin-bottom: 6px; }
.pt-lines span { height: 8px; border-radius: 4px; background: color-mix(in srgb, var(--td) 26%, transparent); }

/* Estimator is now a dark band */
.section--dark .est-copy p { color: var(--cream-soft); }

/* Testimonials row: real purple + two TBD placeholders */
.testi.t-spark { background: var(--spark); color: var(--spark-dark); border-color: var(--spark-dark); transform: rotate(1.5deg); }
.testi.t-lime  { background: var(--lime);  color: var(--lime-dark);  border-color: var(--lime-dark);  transform: rotate(-1deg); }
.testi.t-spark .pin, .testi.t-lime .pin { color: var(--ink); }
.testi-tbd { border-style: dashed; }
.testi-tbd blockquote { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; opacity: 0.85;
  display: flex; align-items: center; justify-content: center; min-height: 84px; text-align: center; }
.testi-tbd .avatar { background: transparent; border: 2px dashed currentColor; }

/* Closing: single yellow spark above the centered headline */
.final .wrap { width: 100%; }
.final-mark { display: block; width: clamp(40px, 6vw, 70px); height: clamp(40px, 6vw, 70px);
  margin: 0 auto clamp(20px, 3vw, 30px); color: var(--spark); }

/* ============================================================
   PASS 3 — org chart container + estimator interactions
   ============================================================ */
.org { transform: none; }
.org:hover { transform: none; }
.est-frame-link { display: block; text-decoration: none; cursor: pointer; }
.est-submit { transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease); }
.est-frame-link:hover .est-submit { box-shadow: 0 0 16px 3px rgba(255,212,59,0.45); transform: scale(1.06); }

/* ============================================================
   PASS 4 — equation card + tightened band spacing
   ============================================================ */
.eqcard { background: var(--spark); color: var(--ink); border: 2px solid var(--ink); border-radius: 12px;
  box-shadow: 6px 6px 0 var(--ink); padding: clamp(28px, 3.4vw, 46px); transform: rotate(2deg); }
.eq-line { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em;
  font-size: clamp(26px, 3.3vw, 44px); line-height: 1.04; }
.eq-line + .eq-line { margin-top: 6px; }
.eq-op { display: inline-block; min-width: 0.7em; }
.eq-div { height: 2px; background: var(--ink); margin: clamp(16px, 2.4vw, 26px) 0 14px; }
.eq-foot { font-family: var(--font-mono); font-weight: 600; font-size: clamp(10px, 1.1vw, 12px); letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.eq-line, .eq-foot { opacity: 0; transform: translateY(12px); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.eqcard.in .eq-line, .eqcard.in .eq-foot { opacity: 1; transform: none; }
.eqcard.in .eq1 { transition-delay: 0s; }
.eqcard.in .eq2 { transition-delay: 0.15s; }
.eqcard.in .eq3 { transition-delay: 0.30s; }
.eqcard.in .eq-foot { transition-delay: 0.45s; }

/* Tighter rhythm within a shared background band (96px); 128px stays across band changes */
#how { padding-bottom: 96px; }
#results { padding-top: 96px; padding-bottom: 96px; }
#build { padding-top: 96px; padding-bottom: 96px; }
#trust { padding-bottom: 96px; }
#estimate-teaser { padding-top: 96px; }

/* ============================================================
   PASS 5 — estimator line-item result, results breathing room,
   footer contact block with address
   ============================================================ */
/* Estimator result: itemized hours + bold summary (no charts) */
.est-line { display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 8px 0; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }
.est-line .el-name { color: var(--cream-soft); text-transform: uppercase; }
.est-line .el-val { color: var(--cream); font-weight: 600; white-space: nowrap; }
.est-divider { height: 2px; background: var(--line-dark); margin: 12px 0 14px; }
.est-summary { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(15px, 1.5vw, 19px); line-height: 1.2; color: var(--cream); }

/* Proof section: only headline + stats remain — give the row more air */
#results .results-stats { margin-bottom: 0; gap: clamp(28px, 4vw, 56px);
  padding: clamp(10px, 2vw, 28px) 0; }
#results .rstat { padding: 12px 0; }

/* Footer: address sits in the same mono contact block as email + links */
.footer-links { flex-wrap: wrap; }
.footer-addr { color: var(--cream-soft); white-space: nowrap; }

/* Estimator: gentle pulse when the build estimate updates for a new idea */
@keyframes estFlash { 0% { opacity: 0.35; } 100% { opacity: 1; } }
.est-result.est-flash .el-val,
.est-result.est-flash .est-summary { animation: estFlash 0.5s var(--ease); }

/* Hero: enlarged estimator card with a looping type -> estimate result */
.hero-est { width: 100%; max-width: 480px; margin: 0 auto; }
.hero-est .est-top { padding: 16px 20px; }
.hero-est .est-top .label { font-size: 11px; letter-spacing: 0.16em; }
.hero-est .est-input { margin: 20px; padding: 15px 15px 15px 20px; }
.hero-est .est-input .txt { font-size: 15.5px; }
.hero-est .est-input .mic { width: 44px; height: 44px; }
.hero-est .est-arrow { font-family: var(--font-mono); font-size: 21px; font-weight: 700; line-height: 1; color: var(--ink); }
.hero-est .est-result { margin: 0 20px 22px; }
.hero-est .est-line { padding: 9px 0; font-size: 13px; }
.hero-est .est-summary { font-size: clamp(16px, 1.5vw, 19px); }

/* result rows fade/slide in after the prompt finishes typing, then reset */
.hero-est-result .est-line,
.hero-est-result .est-divider,
.hero-est-result .est-summary {
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.hero-est-result.show .est-line,
.hero-est-result.show .est-divider,
.hero-est-result.show .est-summary { opacity: 1; transform: none; }
.hero-est-result.show .est-line:nth-child(1) { transition-delay: 0.04s; }
.hero-est-result.show .est-line:nth-child(2) { transition-delay: 0.13s; }
.hero-est-result.show .est-divider { transition-delay: 0.22s; }
.hero-est-result.show .est-summary { transition-delay: 0.30s; }
