/* ============================================================
   CHALKLINE — Editorial Data Atmosphere
   ============================================================ */

:root {
  /* Color */
  --ink: #07100E;
  --ink-2: #0C1614;
  --ink-3: #122120;
  --ink-card: #0B1817;
  --line: rgba(238, 248, 246, 0.08);
  --line-2: rgba(238, 248, 246, 0.14);
  --paper: #EFF6F4;
  --paper-2: #C9D8D4;
  --bone: #8FA4A0;
  --bone-2: #5C6E6A;
  --teal: #3FE85F;
  --teal-2: #8AF0A0;
  --teal-deep: #1A9A38;
  --teal-glow: rgba(63, 232, 95, 0.18);
  --cyan: #67E8F9;
  --cyan-deep: #0E7490;
  --indigo: #818CF8;
  --indigo-deep: #4338CA;
  --violet: #C084FC;
  --violet-deep: #7E22CE;
  --pink: #F472B6;
  --pink-deep: #BE185D;
  --strike: #F87171;

  /* Heritage — a cooled, system-aligned descendant of the original Chalkline lime.
     Reserved for "check" moments: favicon, live/active indicators, selection. */
  --chalk-green: #3FE85F;
  --chalk-green-2: #8AF0A0;
  --chalk-green-deep: #1A9A38;
  --chalk-green-glow: rgba(63, 232, 95, 0.18);

  /* RGB tuples for rgba() composition */
  --rgb-teal: 63, 232, 95;
  --rgb-cyan: 103, 232, 249;
  --rgb-indigo: 129, 140, 248;
  --rgb-violet: 192, 132, 252;
  --rgb-pink: 244, 114, 182;
  --rgb-chalk-green: 63, 232, 95;

  /* Type */
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Layout */
  --pad: clamp(20px, 4vw, 56px);
  --max: 1400px;
  --rhythm: clamp(80px, 12vw, 160px);
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; }

/* Selection */
::selection { background: var(--chalk-green); color: var(--ink); }

/* ============================================================
   ATMOSPHERE — grain, grid, dots
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(242,237,227,0.025) 1px, transparent 1px);
  background-size: 88px 100%;
  mask-image: linear-gradient(to bottom, transparent, black 200px, black calc(100% - 200px), transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 200px, black calc(100% - 200px), transparent);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 14, 12, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
}
.nav__mark {
  width: 28px; height: 28px;
  color: var(--teal);
}
.nav__wordmark {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--paper);
  -webkit-text-stroke: 0.35px var(--paper);
}
.nav__links {
  justify-self: center;
  display: flex;
  gap: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
}
.nav__links a {
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--paper); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--teal);
  transition: right 0.3s ease;
}
.nav__links a:hover::after { right: 0; }

.nav__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__clock {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--bone);
  letter-spacing: 0.1em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--ghost {
  color: var(--paper);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.btn--primary,
.btn--primary .btn__label,
.btn--primary .btn__sent {
  color: var(--ink);
}
.btn--primary {
  background: var(--teal);
  border-color: var(--teal);
  font-weight: 600;
}
.btn--primary svg { color: var(--ink); }
.btn--primary:hover {
  background: var(--teal-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px -10px rgba(63, 232, 95, 0.4);
}
.btn--text {
  border: none;
  padding: 11px 0;
  color: var(--bone);
}
.btn--text:hover { color: var(--paper); }
.btn--text::after {
  content: "→";
  margin-left: 8px;
  transition: margin 0.25s ease;
}
.btn--text:hover::after { margin-left: 12px; }
.btn--full { width: 100%; justify-content: center; padding: 16px 22px; font-size: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--pad) clamp(40px, 6vw, 64px);
  z-index: 2;
  isolation: isolate;
}

/* Animated dot-spiral background */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  filter: blur(0.6px);
  mask-image: radial-gradient(
    ellipse 75% 70% at 50% 50%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.95) 35%,
    rgba(0,0,0,0.55) 65%,
    rgba(0,0,0,0.18) 85%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 75% 70% at 50% 50%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.95) 35%,
    rgba(0,0,0,0.55) 65%,
    rgba(0,0,0,0.18) 85%,
    transparent 100%
  );
}

.hero__head,
.hero__title,
.hero__lower,
.hero__proof {
  position: relative;
  z-index: 1;
}
.hero__rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(var(--rgb-chalk-green), 0.28) 18%,
    rgba(var(--rgb-chalk-green), 0.45) 50%,
    rgba(var(--rgb-chalk-green), 0.28) 82%,
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(var(--rgb-chalk-green), 0.08);
  pointer-events: none;
  z-index: 3;
}
.hero__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(40px, 7vw, 80px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(63, 232, 95, 0.14);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}
.dot--lime { background: var(--teal); box-shadow: 0 0 0 3px rgba(63, 232, 95, 0.2); }
.dot--strike { background: var(--strike); box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2); animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(63, 232, 95, 0.14); }
  50% { box-shadow: 0 0 0 9px rgba(63, 232, 95, 0); }
}
.hero__index {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--bone-2);
}

.hero__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(48px, 9.4vw, 156px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 0;
  text-align: left;
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroIn 1.1s cubic-bezier(0.2, 0.7, 0.1, 1) forwards;
}
.hero__title .line--1 {
  color: var(--paper);
  animation-delay: 0.1s;
}
.hero__title .line--2 {
  color: var(--paper);
  animation-delay: 0.28s;
}
.hero__title em {
  font-style: normal;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: -0.055em;
  text-shadow:
    0 0 32px rgba(var(--rgb-chalk-green), 0.22),
    0 0 80px rgba(var(--rgb-teal), 0.18);
  position: relative;
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__lower {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.hero__lede p {
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  font-weight: 300;
  color: var(--paper-2);
  letter-spacing: -0.01em;
  max-width: 56ch;
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

/* Live panel — host for the absolutely-positioned phone.
   No intrinsic height: lets the left column (lede) sit right under the headline
   while the phone extends downward and fades into the proof bar area. */
.hero__panel {
  border: none;
  background: none;
  padding: 0;
  position: relative;
  min-height: 1px;
}

/* Phone frame — absolute so its height doesn't push the grid row taller */
.phone {
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  height: 440px;
  border-radius: 38px;
  padding: 8px;
  background: linear-gradient(160deg, #1a1f1d 0%, #0a0e0d 60%, #07100E 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 80px -28px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(var(--rgb-chalk-green), 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  /* Solid for most of the phone, fade gracefully across the bottom */
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 68%, transparent 96%);
  mask-image: linear-gradient(to bottom, black 0%, black 68%, transparent 96%);
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.phone__notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 32px;
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(var(--rgb-chalk-green), 0.08), transparent 60%),
    linear-gradient(180deg, #0A1310, #050908);
  padding: 44px 16px 20px;
  font-family: var(--sans);
  color: var(--paper);
  overflow: hidden;
}
.phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--paper);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  opacity: 0.8;
}
.phone__bars {
  display: inline-flex;
  gap: 2px;
  align-items: flex-end;
}
.phone__bars i {
  width: 3px;
  background: var(--paper);
  border-radius: 1px;
  opacity: 0.85;
}
.phone__bars i:nth-child(1) { height: 4px; }
.phone__bars i:nth-child(2) { height: 6px; }
.phone__bars i:nth-child(3) { height: 8px; }
.phone__bars i:nth-child(4) { height: 10px; }

/* Game UI */
.game__chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--rgb-chalk-green), 0.4);
  background: rgba(var(--rgb-chalk-green), 0.07);
  color: var(--chalk-green);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  text-shadow: 0 0 12px rgba(var(--rgb-chalk-green), 0.4);
}
.game__chip-emoji { font-size: 10px; filter: drop-shadow(0 0 6px rgba(var(--rgb-chalk-green), 0.6)); }

.game__title {
  margin: 14px 0 4px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 34px;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--paper);
  text-align: center;
}
.game__title--sm {
  font-size: 26px;
  margin-top: 10px;
}
.game__subtitle {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--bone);
  text-align: center;
  margin: 0 0 10px;
}
.game__rule {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--rgb-chalk-green), 0.5), transparent);
  margin: 10px 0 12px;
}

.game__matches {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.game__matches li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.game__time {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--bone);
  white-space: nowrap;
}
.game__teams {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--paper);
  margin-left: auto;
}
.game__teams .flag { font-size: 12px; line-height: 1; }
.game__teams em {
  font-style: normal;
  color: var(--bone-2);
  font-size: 8px;
  margin: 0 2px;
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

.game__free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px auto 12px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--rgb-chalk-green), 0.45);
  background: rgba(var(--rgb-chalk-green), 0.1);
  color: var(--chalk-green);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  width: max-content;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.game__prize {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(var(--rgb-chalk-green), 0.35);
  background: linear-gradient(180deg, rgba(var(--rgb-chalk-green), 0.08), rgba(var(--rgb-chalk-green), 0.02));
  margin-bottom: 14px;
}
.game__prize-emoji { font-size: 24px; }
.game__prize-meta { display: flex; flex-direction: column; gap: 2px; }
.game__prize-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--chalk-green);
}
.game__prize-amount {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.game__cta {
  text-align: center;
  padding: 13px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--chalk-green), var(--chalk-green-deep));
  color: var(--paper);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.01em;
  box-shadow:
    0 12px 28px -10px rgba(var(--rgb-chalk-green), 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(var(--rgb-chalk-green), 0.6);
}

/* Deck — stacks the two phone screens for crossfade rotation */
.game__deck {
  position: relative;
  height: calc(100% - 30px);
}
.game__view {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: gameCycle 11s ease-in-out infinite;
  will-change: opacity, transform;
}
.game__view--1 { animation-delay: 0s; }
.game__view--2 { animation-delay: 5.5s; }

@keyframes gameCycle {
  0%   { opacity: 0; transform: translateY(8px); }
  3%   { opacity: 1; transform: translateY(0); }
  45%  { opacity: 1; transform: translateY(0); }
  50%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(8px); }
}

/* Screen 2 — team selection */
.game__chip--small {
  font-size: 8px;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  width: max-content;
  margin: 0 auto;
}

.game__picks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0;
}
.pick {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pick__time {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--bone);
  text-align: center;
}
.pick__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.pick__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--bone);
}
.pick__team .flag { font-size: 18px; line-height: 1; }
.pick__name {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.pick__team--picked {
  background: rgba(var(--rgb-chalk-green), 0.08);
  border-color: var(--chalk-green);
  color: var(--paper);
  box-shadow:
    0 0 0 1px var(--chalk-green),
    0 0 20px -2px rgba(var(--rgb-chalk-green), 0.55),
    inset 0 0 12px rgba(var(--rgb-chalk-green), 0.08);
}
.pick__vs {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--bone-2);
}
.panel__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-2);
  color: var(--bone);
}
.panel__dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--chalk-green);
}
.panel__dot i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--chalk-green);
  box-shadow: 0 0 8px var(--chalk-green), 0 0 0 3px var(--chalk-green-glow);
}
.panel__rows {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
}
.panel__rows li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.panel__rows li:last-child { border-bottom: none; }
.panel__k { color: var(--bone); }
.panel__v { color: var(--paper); }
.panel__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  color: var(--bone);
}
.panel__sum {
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* Proof bar */
.hero__proof {
  margin-top: clamp(180px, 18vw, 240px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.hero__proof-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 0.4s ease;
}
.hero__proof-cell:last-child { border-right: none; }
.hero__proof-cell:hover {
  background: rgba(63, 232, 95, 0.025);
}
.hero__proof-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone-2);
}
.hero__proof-value {
  font-family: var(--sans);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--paper);
}
.hero__proof-value i {
  font-style: normal;
  color: #59C8FA;
  font-weight: 800;
}
.hero__proof-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--bone);
  max-width: 30ch;
  line-height: 1.45;
}

/* ============================================================
   LOGO WALL · WHO WE'VE WORKED WITH
   ============================================================ */
.logos {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line-2);
  background: linear-gradient(180deg, transparent, rgba(12, 22, 20, 0.4), transparent);
}
.logos__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 3vw, 40px) var(--pad);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
}
.logos__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--bone);
  text-transform: uppercase;
  flex-shrink: 0;
}
.logos__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(24px, 3.5vw, 48px);
}
.logo {
  font-family: var(--sans);
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--paper);
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  line-height: 1;
  cursor: default;
  user-select: none;
}
.logo:hover { opacity: 1; transform: translateY(-1px); }
/* Per-brand typographic treatments */
.logo--caesars { font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: 0.16em; }
.logo--choctaw { font-weight: 700; letter-spacing: 0.14em; }
/* Real logo files (Barstool + Bally's + Agua Caliente PNGs) */
.logo--barstool,
.logo--ballys,
.logo--agua {
  display: inline-flex;
  align-items: center;
}
.logo--barstool img,
.logo--ballys img,
.logo--agua img {
  display: block;
  width: auto;
  object-fit: contain;
}
.logo--barstool img { height: clamp(22px, 2.1vw, 30px); }
.logo--ballys img   { height: clamp(20px, 1.9vw, 26px); }
.logo--agua img     { height: clamp(26px, 2.4vw, 34px); }

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--bone);
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 22px;
  position: relative;
}
.section__tag::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 38px;
  height: 1px;
  background: var(--line-2);
}
.section__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 22ch;
  color: var(--paper);
}
.section__title em {
  color: var(--paper);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.section__sub {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--paper-2);
  max-width: 60ch;
  font-weight: 300;
  letter-spacing: -0.005em;
}

/* ============================================================
   STORY / LIFECYCLE
   ============================================================ */
.story {
  padding-top: var(--rhythm);
  padding-bottom: clamp(40px, 6vw, 80px);
  position: relative;
}
.story__flow {
  max-width: var(--max);
  margin: clamp(56px, 7vw, 88px) auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  list-style: none;
}

.stage {
  --stage-color: var(--teal);
  --stage-rgb: var(--rgb-teal);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform 0.4s ease;
}
.stage:hover { transform: translateY(-2px); }

.stage[data-accent="teal"]   { --stage-color: var(--teal);   --stage-rgb: var(--rgb-teal); }
.stage[data-accent="cyan"]   { --stage-color: var(--cyan);   --stage-rgb: var(--rgb-cyan); }
.stage[data-accent="indigo"] { --stage-color: var(--indigo); --stage-rgb: var(--rgb-indigo); }
.stage[data-accent="violet"] { --stage-color: var(--violet); --stage-rgb: var(--rgb-violet); }
.stage[data-accent="pink"]   { --stage-color: var(--pink);   --stage-rgb: var(--rgb-pink); }

/* Visual mockup at the top of each stage */
.stage__visual {
  margin: 0 0 14px;
  padding: 14px;
  background: rgba(var(--stage-rgb), 0.05);
  border: 1px solid rgba(var(--stage-rgb), 0.18);
  border-radius: 6px;
  color: var(--stage-color);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.stage__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(var(--stage-rgb), 0.06), transparent 60%);
  pointer-events: none;
}
.stage__visual svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.stage:hover .stage__visual {
  border-color: rgba(var(--stage-rgb), 0.42);
  background: rgba(var(--stage-rgb), 0.08);
}

.stage__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.4px solid var(--stage-color);
  color: var(--stage-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.stage__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone);
  margin-top: 4px;
}

.stage__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 4px 0 0;
}

.stage__body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--bone);
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.005em;
}

.stage__role {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--stage-color);
  text-transform: uppercase;
}


/* Highlighted "Afterglow" stage — the differentiator */
.stage--key .stage__visual {
  border-color: rgba(var(--stage-rgb), 0.4);
  background: rgba(var(--stage-rgb), 0.09);
  box-shadow: 0 0 36px -10px rgba(var(--stage-rgb), 0.4);
}
.stage--key .stage__num {
  background: var(--stage-color);
  color: var(--ink);
}
.stage--key .stage__label::after {
  content: " · KEY";
  color: var(--stage-color);
}

/* Closing insight */
.story__insight {
  max-width: var(--max);
  margin: clamp(56px, 7vw, 88px) auto 0;
  padding: 0 var(--pad);
}
.story__insight-inner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 4vw, 40px) 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.story__insight-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone);
}
.story__insight-quote {
  font-family: var(--sans);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: var(--paper);
  font-weight: 500;
  max-width: 60ch;
  margin: 0;
}
.story__insight-quote em {
  color: var(--violet);
  font-style: normal;
  font-weight: 600;
}

/* ============================================================
   FLOW (SANKEY)
   ============================================================ */
.flow {
  padding: var(--rhythm) 0;
  position: relative;
}
.flow__chart {
  max-width: var(--max);
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding: 0 var(--pad);
  position: relative;
}
.flow__chart svg {
  width: 100%;
  height: auto;
  display: block;
}
.flow__chart .flow-paths path {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: drawFlow 2.4s ease-out forwards;
}
.flow__chart.in-view .flow-paths path { animation-play-state: running; }
@keyframes drawFlow {
  to { stroke-dashoffset: 0; }
}
.flow__chart .flow-paths path:nth-child(1) { animation-delay: 0.05s; }
.flow__chart .flow-paths path:nth-child(2) { animation-delay: 0.18s; }
.flow__chart .flow-paths path:nth-child(3) { animation-delay: 0.32s; }
.flow__chart .flow-paths path:nth-child(4) { animation-delay: 0.46s; }
.flow__chart .flow-paths path:nth-child(5) { animation-delay: 0.6s; }

.flow__chart figcaption {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--bone);
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}
.caption__num {
  color: var(--teal);
  white-space: nowrap;
}

/* ============================================================
   PRODUCT SUITE
   ============================================================ */
.suite {
  padding: var(--rhythm) 0;
  position: relative;
}
.suite__grid {
  max-width: var(--max);
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  --card-accent: var(--teal);
  --card-accent-rgb: var(--rgb-teal);
  background: var(--ink-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
}
.card[data-accent="teal"]   { --card-accent: var(--teal);   --card-accent-rgb: var(--rgb-teal); }
.card[data-accent="cyan"]   { --card-accent: var(--cyan);   --card-accent-rgb: var(--rgb-cyan); }
.card[data-accent="indigo"] { --card-accent: var(--indigo); --card-accent-rgb: var(--rgb-indigo); }
.card[data-accent="violet"] { --card-accent: var(--violet); --card-accent-rgb: var(--rgb-violet); }
.card[data-accent="pink"]   { --card-accent: var(--pink);   --card-accent-rgb: var(--rgb-pink); }
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--card-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 6px;
  background: radial-gradient(120% 80% at 0% 0%, rgba(var(--card-accent-rgb), 0.05), transparent 60%);
  pointer-events: none;
}
.card:hover {
  border-color: rgba(var(--card-accent-rgb), 0.35);
  transform: translateY(-2px);
}
.card:hover::before { opacity: 1; }
.card--wide { grid-column: span 2; }
.card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
}
.card__num { color: var(--bone); }
.card__tag {
  color: var(--card-accent);
  padding: 4px 9px;
  border: 1px solid rgba(var(--card-accent-rgb), 0.32);
  border-radius: 999px;
  font-size: 9px;
}
.card__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  color: var(--paper);
}
.card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bone);
  margin-bottom: 22px;
  max-width: 56ch;
}
.card__list {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__list--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}
.card__list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--paper-2);
  padding-left: 18px;
  position: relative;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 1px;
  background: var(--card-accent);
}
.card__foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--line-2);
}
.card__metric {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--card-accent);
}

/* ============================================================
   INTELLIGENCE / KNOWLEDGE GRAPH
   ============================================================ */
.intel {
  padding: var(--rhythm) 0;
  position: relative;
}
.intel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 85% 25%, rgba(63, 232, 95, 0.06), transparent 70%),
    radial-gradient(50% 60% at 10% 90%, rgba(192, 132, 252, 0.05), transparent 70%);
  pointer-events: none;
}
.intel__title {
  max-width: 22ch;
}
.intel__sub {
  max-width: var(--max);
  margin: clamp(28px, 3vw, 40px) auto 0;
  padding: 0 var(--pad);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--bone);
  line-height: 1.6;
}
.intel__url {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 13px;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
  letter-spacing: 0.04em;
}

/* Knowledge graph */
.intel__graph {
  position: relative;
  max-width: var(--max);
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding: 0 var(--pad);
}
.graph__legend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
}
.graph__legend-tag {
  color: var(--bone);
}
.graph__key {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--bone);
  font-size: 10px;
  letter-spacing: 0.18em;
}
.graph__key li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.graph__key i {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.graph__svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Edge-draw animation */
.intel__graph .graph-edges line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.2, 0.7, 0.1, 1);
}
.intel__graph.in-view .graph-edges line {
  stroke-dashoffset: 0;
}
.intel__graph .graph-edges line:nth-child(1)  { transition-delay: 0.05s; }
.intel__graph .graph-edges line:nth-child(2)  { transition-delay: 0.10s; }
.intel__graph .graph-edges line:nth-child(3)  { transition-delay: 0.15s; }
.intel__graph .graph-edges line:nth-child(4)  { transition-delay: 0.20s; }
.intel__graph .graph-edges line:nth-child(5)  { transition-delay: 0.25s; }
.intel__graph .graph-edges line:nth-child(6)  { transition-delay: 0.30s; }
.intel__graph .graph-edges line:nth-child(7)  { transition-delay: 0.35s; }
.intel__graph .graph-edges line:nth-child(8)  { transition-delay: 0.40s; }
.intel__graph .graph-edges line:nth-child(9)  { transition-delay: 0.45s; }
.intel__graph .graph-edges line:nth-child(10) { transition-delay: 0.50s; }
.intel__graph .graph-edges line:nth-child(11) { transition-delay: 0.55s; }
.intel__graph .graph-edges line:nth-child(12) { transition-delay: 0.60s; }
.intel__graph .graph-edges line:nth-child(n+13) {
  transition-duration: 1.6s;
  transition-delay: 0.85s;
}

/* Node entrance */
.intel__graph .graph-nodes .node {
  opacity: 0;
  transition: opacity 0.55s ease-out;
}
.intel__graph.in-view .graph-nodes .node {
  opacity: 1;
}
.intel__graph .graph-nodes .node--core {
  transition-delay: 0.15s;
}
.intel__graph.in-view .graph-nodes .node:nth-child(2)  { transition-delay: 0.5s; }
.intel__graph.in-view .graph-nodes .node:nth-child(3)  { transition-delay: 0.6s; }
.intel__graph.in-view .graph-nodes .node:nth-child(4)  { transition-delay: 0.7s; }
.intel__graph.in-view .graph-nodes .node:nth-child(5)  { transition-delay: 0.8s; }
.intel__graph.in-view .graph-nodes .node:nth-child(6)  { transition-delay: 0.9s; }
.intel__graph.in-view .graph-nodes .node:nth-child(7)  { transition-delay: 1.0s; }
.intel__graph.in-view .graph-nodes .node:nth-child(8)  { transition-delay: 1.1s; }
.intel__graph.in-view .graph-nodes .node:nth-child(9)  { transition-delay: 1.2s; }
.intel__graph.in-view .graph-nodes .node:nth-child(10) { transition-delay: 1.3s; }
.intel__graph.in-view .graph-nodes .node:nth-child(11) { transition-delay: 1.4s; }
.intel__graph.in-view .graph-nodes .node:nth-child(12) { transition-delay: 1.5s; }
.intel__graph.in-view .graph-nodes .node:nth-child(13) { transition-delay: 1.6s; }

.graph__caption {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--bone);
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}

/* ============================================================
   THE PROPERTY
   ============================================================ */
.property {
  padding: var(--rhythm) 0;
  position: relative;
}
.property__map {
  max-width: var(--max);
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding: 0 var(--pad);
  position: relative;
}

/* Spark anchor */
.property__spark {
  margin: 0 auto;
  max-width: 420px;
  background: var(--ink-2);
  border: 1px solid rgba(63, 232, 95, 0.32);
  border-radius: 10px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px -20px rgba(63, 232, 95, 0.4);
}
.property__spark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: radial-gradient(120% 80% at 50% 0%, rgba(63, 232, 95, 0.08), transparent 70%);
  pointer-events: none;
}
.property__spark-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--teal);
  position: relative;
}
.property__spark-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0;
  position: relative;
}
.property__spark-inputs {
  display: flex;
  gap: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone);
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  position: relative;
}
.property__spark-inputs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.property__spark-inputs i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  display: inline-block;
  animation: sparkPulse 2.4s ease-in-out infinite;
}
.property__spark-inputs li:nth-child(2) i { animation-delay: 0.4s; }
.property__spark-inputs li:nth-child(3) i { animation-delay: 0.8s; }
@keyframes sparkPulse {
  0%, 100% { box-shadow: 0 0 8px var(--teal); opacity: 1; }
  50% { box-shadow: 0 0 14px var(--teal); opacity: 0.7; }
}

/* Tree connecting spark to columns */
.property__tree {
  width: 100%;
  height: 70px;
  display: block;
  margin-top: -1px;
}

/* Three columns */
.property__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.property__col {
  --col-accent: var(--teal);
  --col-rgb: var(--rgb-teal);
  background: var(--ink-card);
  border: 1px solid rgba(var(--col-rgb), 0.18);
  border-top: 2px solid var(--col-accent);
  border-radius: 6px;
  padding: 22px 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.property__col::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: radial-gradient(120% 60% at 50% 0%, rgba(var(--col-rgb), 0.06), transparent 60%);
  pointer-events: none;
}
.property__col:hover {
  border-color: rgba(var(--col-rgb), 0.4);
  transform: translateY(-2px);
}
.property__col[data-accent="teal"]   { --col-accent: var(--teal);   --col-rgb: var(--rgb-teal); }
.property__col[data-accent="violet"] { --col-accent: var(--violet); --col-rgb: var(--rgb-violet); }
.property__col[data-accent="pink"]   { --col-accent: var(--pink);   --col-rgb: var(--rgb-pink); }

.property__col-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--col-accent);
  position: relative;
}
.property__col-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0;
  position: relative;
}
.property__col-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.property__col-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px dashed var(--line);
  font-family: var(--sans);
  font-size: 14px;
}
.property__col-list li:first-child { border-top: 1px solid var(--line-2); }
.prod__name {
  color: var(--paper);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.prod__match {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--bone-2);
  white-space: nowrap;
}
.prod__match--high {
  color: var(--col-accent);
  font-weight: 500;
}

.property__caption {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--bone);
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}
.property__caption-tag {
  color: var(--teal);
  white-space: nowrap;
}


/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  padding: var(--rhythm) var(--pad);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
}
.quote__figure {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.quote__mark {
  position: absolute;
  top: -68px;
  left: -10px;
  font-family: var(--sans);
  font-size: 200px;
  line-height: 1;
  color: var(--teal);
  font-weight: 400;
  pointer-events: none;
  opacity: 0.7;
}
.quote blockquote {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--paper);
}
.quote blockquote p { margin: 0 0 18px; }
.quote__emph {
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
}
.quote figcaption {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quote__name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.quote__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--bone);
  text-transform: uppercase;
}

/* ============================================================
   PLAYBOOK / ROLES
   ============================================================ */
.playbook {
  padding: var(--rhythm) 0;
}
.playbook__grid {
  max-width: var(--max);
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.role {
  background: var(--ink);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s ease;
}
.role:hover { background: var(--ink-2); }
.role__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.role__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--teal);
}
.role:nth-child(2) .role__num { color: var(--cyan); }
.role:nth-child(3) .role__num { color: var(--violet); }
.role__title {
  font-family: var(--sans);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 600;
  letter-spacing: -0.025em;
  text-align: right;
  color: var(--paper);
}
.role__lede {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper-2);
  font-weight: 300;
  letter-spacing: -0.005em;
}
.role__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--bone);
}
.role__list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 8px 0;
  border-top: 1px dashed var(--line);
}
.role__list li:first-child { border-top: none; }
.role__list li span:first-child { color: var(--bone-2); }
.role__list li span:last-child { color: var(--paper); }

/* Customer-facing bullet variant (no internal-playbook headers) */
.role__list--bullets {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--paper-2);
  font-weight: 300;
  line-height: 1.5;
}
.role__list--bullets li {
  display: block;
  grid-template-columns: none;
  gap: 0;
  padding: 10px 0 10px 22px;
  position: relative;
  border-top: 1px dashed var(--line);
}
.role__list--bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: var(--teal);
}

/* ============================================================
   TIMELINE (used inside the CTA section)
   ============================================================ */
.cta__timeline {
  max-width: var(--max);
  margin: clamp(56px, 7vw, 96px) auto 0;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}
.cta__timeline-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line);
}
.cta__timeline-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--teal);
}
.cta__timeline-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0;
}
.timeline {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.step {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 0.3s ease;
}
.step::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--bone-2);
  border-radius: 50%;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--ink-2); }
.step--accent::before {
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.22);
}
.step--accent .step__day { color: var(--pink); }
.step__day {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--teal);
}
.step__title {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.03em;
}
.step__desc {
  font-size: 13px;
  color: var(--bone);
  line-height: 1.5;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: var(--rhythm) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Subtle aurora rising from the footer boundary into the CTA section */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 12% 105%, rgba(63, 232, 95, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 45% at 36% 108%, rgba(103, 232, 249, 0.12), transparent 70%),
    radial-gradient(ellipse 55% 48% at 58% 112%, rgba(129, 140, 248, 0.10), transparent 72%),
    radial-gradient(ellipse 55% 50% at 78% 108%, rgba(192, 132, 252, 0.14), transparent 70%),
    radial-gradient(ellipse 55% 50% at 96% 105%, rgba(244, 114, 182, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to top, black 0%, black 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 0%, black 30%, transparent 100%);
}
.cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  position: relative;
  z-index: 1;
}
.cta__copy { padding-right: 0; }
.cta__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 22px 0 24px;
  color: var(--paper);
}
.cta__title em {
  color: var(--paper);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.cta__sub {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--paper-2);
  max-width: 50ch;
  font-weight: 300;
  letter-spacing: -0.005em;
}
.cta__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--paper-2);
}
.cta__list li i {
  width: 14px; height: 14px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.cta__list li i::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--teal);
  border-radius: 50%;
}

/* Form */
.cta__form {
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.cta__form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
}
.cta__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cta__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta__form span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--bone);
}
.cta__form input,
.cta__form textarea {
  font-family: var(--sans);
  font-size: 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  padding: 10px 0 12px;
  color: var(--paper);
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
}
.cta__form input::placeholder,
.cta__form textarea::placeholder {
  color: var(--bone-2);
}
.cta__form input:focus,
.cta__form textarea:focus {
  border-color: var(--teal);
}
.cta__form .btn__sent { display: none; }
.cta__form.is-sent .btn__label,
.cta__form.is-sent svg { display: none; }
.cta__form.is-sent .btn__sent { display: inline; }
.cta__form.is-sent .btn--primary { background: var(--ink); color: var(--teal); border-color: var(--teal); }
.cta__fineprint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--bone-2);
  margin-top: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: 80px var(--pad) 36px;
  background: var(--ink);
  border-top: 1px solid var(--line-2);
  position: relative;
}
.foot__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 60px;
  padding-bottom: 60px;
}
.foot__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.foot__mark {
  width: 28px; height: 28px;
  color: var(--teal);
}
.foot__wordmark {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--paper);
  -webkit-text-stroke: 0.35px var(--paper);
}
.foot__pos {
  font-size: 14px;
  line-height: 1.55;
  color: var(--bone);
  max-width: 42ch;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.foot__cols h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone-2);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.foot__cols ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot__cols a {
  font-size: 14px;
  color: var(--paper-2);
  transition: color 0.2s ease;
}
.foot__cols a:hover { color: var(--teal); }
.foot__rule {
  max-width: var(--max);
  margin: 0 auto;
  height: 1px;
  background: var(--line-2);
}
.foot__bot {
  max-width: var(--max);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--bone);
}
.foot__center {
  text-align: center;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-transform: none;
}
.foot__legal {
  text-align: right;
}
.foot__legal a:hover { color: var(--teal); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__lower { grid-template-columns: 1fr; }
  .hero__panel { max-width: 480px; min-height: 480px; }
  /* On single-column layout, restore the phone to in-flow so it doesn't overlap the lede */
  .phone { position: relative; top: 0; height: 480px; }
  .cta__inner { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .hero__head { flex-direction: column; align-items: flex-start; }
  .playbook__grid { grid-template-columns: 1fr; }
  .story__flow { grid-template-columns: 1fr; gap: 24px; }
  .story__flow::before { display: none; }
  .stage { padding: 0 0 28px; border-right: none; border-bottom: 1px solid var(--line); }
  .stage:last-child { border-bottom: none; }
  .property__cols { grid-template-columns: 1fr; }
  .property__tree { display: none; }
  .property__spark { margin-bottom: 24px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .suite__grid { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .card__list--two { grid-template-columns: 1fr; }
  .hero__proof { grid-template-columns: 1fr; }
  .hero__proof-cell { border-right: none; border-bottom: 1px solid var(--line-2); }
  .hero__proof-cell:last-child { border-bottom: none; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__bot { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .foot__legal { text-align: center; }
  .quote__mark { font-size: 140px; top: -40px; }
  .cta__row { grid-template-columns: 1fr; }

  /* ----- Mobile readability pass — bump body copy for older audiences ----- */
  body { font-size: 17px; line-height: 1.55; }
  .hero__lede p { font-size: 18px; line-height: 1.6; max-width: none; }
  .section__sub { font-size: 17px; line-height: 1.55; }
  .hero__proof-desc { font-size: 15px; line-height: 1.5; }
  .stage__body { font-size: 16px; line-height: 1.55; }
  .card__body { font-size: 16px; line-height: 1.55; }
  .foot__pos { font-size: 15px; line-height: 1.55; }
  .btn { font-size: 12.5px; padding: 13px 20px; }
  .btn--full { font-size: 13.5px; padding: 18px 24px; }
}
@media (max-width: 600px) {
  .nav__clock { display: none; }
  .hero__title .line--2 { padding-left: 0; }
  .timeline { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr; gap: 24px; }
  .cta__form { padding: 22px; }
  .card { padding: 26px; }
  /* Stack the logo wall on narrow viewports: label up top, logos wrap below */
  .logos__inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .logos__list { justify-content: flex-start; width: 100%; }
}

/* ============================================================
   LEGAL — Privacy Policy / Terms of Use long-form pages
   ============================================================ */
.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 96px) var(--pad) clamp(80px, 12vw, 150px);
}
.legal__head {
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 34px;
  margin-bottom: 8px;
}
.legal__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--paper);
  margin: 18px 0 0;
}
.legal__meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--bone);
  margin-top: 22px;
}
.legal__lead {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--paper-2);
  line-height: 1.62;
  margin-top: 18px;
  max-width: 68ch;
}
.legal__toc {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ink-2);
  padding: 22px 26px;
  margin: 40px 0 8px;
}
.legal__toc-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 14px;
}
.legal__toc ol {
  columns: 2;
  column-gap: 40px;
  counter-reset: toc;
}
.legal__toc li {
  counter-increment: toc;
  font-size: 14px;
  line-height: 1.6;
  margin: 5px 0;
  break-inside: avoid;
}
.legal__toc a {
  color: var(--paper-2);
  border: none;
}
.legal__toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--teal);
  margin-right: 10px;
}
.legal__toc a:hover { color: var(--teal-2); }
.legal h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 54px 0 4px;
  scroll-margin-top: 96px;
}
.legal h2 .legal__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-right: 14px;
}
.legal h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 28px 0 4px;
}
.legal p {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--paper-2);
  margin: 14px 0;
  max-width: 74ch;
}
.legal ul,
.legal > ol {
  margin: 14px 0;
  padding-left: 0;
  max-width: 74ch;
}
.legal li {
  position: relative;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--paper-2);
  padding-left: 26px;
  margin: 9px 0;
}
.legal ul > li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 11px;
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}
.legal > ol { counter-reset: legalitem; }
.legal > ol > li { counter-increment: legalitem; }
.legal > ol > li::before {
  content: counter(legalitem);
  position: absolute;
  left: 0; top: 1px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--teal);
}
.legal a {
  color: var(--teal-2);
  border-bottom: 1px solid rgba(63, 232, 95, 0.35);
  transition: border-color 0.2s ease;
}
.legal a:hover { border-bottom-color: var(--teal-2); }
.legal strong { color: var(--paper); font-weight: 600; }
.legal__callout {
  border: 1px solid var(--line-2);
  border-left: 2px solid var(--teal);
  background: var(--ink-2);
  border-radius: 4px;
  padding: 18px 24px;
  margin: 24px 0;
}
.legal__callout p { margin: 8px 0; max-width: none; }
.legal__todo {
  color: var(--strike);
  font-style: italic;
}
.legal__contact {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.9;
  color: var(--paper-2);
  margin: 16px 0;
}
@media (max-width: 600px) {
  .legal__toc ol { columns: 1; }
}
