:root {
  --bg: #FFFFFF;
  --bg-warm: #F4F6FB;
  --bg-navy: #0B1A3A;
  --bg-navy-2: #142852;
  --ink: #0B1A3A;
  --ink-2: #1F2C4D;
  --ink-3: #3D4868;
  --muted: #6B7593;
  --line: #E1E5EE;
  --line-2: #C9CFDD;
  --accent: #E5402B;
  --accent-ink: #B0301F;
  --gold: #E8B339;
  --gold-deep: #C7941F;
  --yellow: #E8B339;
  --blue: #2563EB;
  --green: #16A34A;
  --orange: #EA580C;
  --violet: #7C3AED;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(11,26,58,0.05), 0 0 0 1px rgba(11,26,58,0.05);
  --shadow-md: 0 8px 28px -8px rgba(11,26,58,0.18), 0 2px 6px rgba(11,26,58,0.06);
  --shadow-lg: 0 30px 80px -20px rgba(11,26,58,0.45);
  --font-display: "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --maxw: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
.mono { font-family: var(--font-mono); font-size: 0.78em; letter-spacing: 0.06em; text-transform: uppercase; }
.muted { color: var(--muted); }
.hl { color: var(--gold); font-style: italic; }
.hl-yellow { background: linear-gradient(180deg, transparent 60%, var(--gold) 60%); padding: 0 0.1em; color: var(--ink); }
i { font-style: italic; font-family: "Inter Tight", serif; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: white; box-shadow: 0 6px 14px -4px rgba(229, 64, 43, 0.55), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -6px rgba(229, 64, 43, 0.65), inset 0 1px 0 rgba(255,255,255,0.2); }
.btn-dark { background: var(--bg-navy); color: white; box-shadow: 0 6px 14px -4px rgba(11,26,58,0.4); }
.btn-dark:hover { background: var(--bg-navy-2); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 6px 14px -4px rgba(232,179,57,0.55); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-xl { padding: 22px 36px; font-size: 18px; }
.btn-full { width: 100%; justify-content: center; }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn.disabled { opacity: 0.5; pointer-events: none; }

/* ---------- Announcement bar ---------- */
.ann-bar {
  background: var(--bg-navy);
  color: white;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background-image: linear-gradient(90deg, var(--bg-navy) 0%, var(--bg-navy-2) 50%, var(--bg-navy) 100%);
}
.ann-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex; align-items: center; gap: 12px;
  overflow-x: auto;
  white-space: nowrap;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff5050;
  box-shadow: 0 0 0 0 rgba(255, 80, 80, 0.6);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,80,80,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,80,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,80,80,0); }
}
.ann-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; }
.ann-text { color: rgba(255,255,255,0.85); }
.ann-sep { color: rgba(255,255,255,0.3); }
.ann-count { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.7); }
.ann-count b { color: white; font-weight: 700; padding: 0 2px; }
.ann-cta { color: var(--gold); font-weight: 600; margin-left: auto; }
.ann-cta:hover { text-decoration: underline; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; font-size: 18px; }
.brand-mark { color: var(--ink); }
.brand-x { color: var(--muted); font-weight: 400; }
.nav-meta { display: flex; align-items: center; gap: 18px; }
.nav-meta-item { font-size: 13px; color: var(--muted); }

/* ---------- Hero (NAVY) ---------- */
.hero {
  background: var(--bg-navy);
  color: white;
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(232, 179, 57, 0.18), transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(229, 64, 43, 0.15), transparent 55%),
    linear-gradient(180deg, var(--bg-navy-2) 0%, var(--bg-navy) 100%);
  border-bottom: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px 32px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(232, 179, 57, 0.35);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gold);
  background: rgba(232, 179, 57, 0.08);
  margin-bottom: 28px;
}
.kicker-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 10px rgba(232, 179, 57, 0.7);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 24px;
  color: white;
  text-wrap: balance;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-meta {
  display: flex; align-items: stretch; gap: 24px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
  max-width: 560px;
}
.meta-item .meta-label { font-family: var(--font-mono); font-size: 10.5px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
.meta-item .meta-value { font-weight: 600; font-size: 15px; margin-top: 2px; color: white; }
.meta-divider { width: 1px; background: rgba(255,255,255,0.15); }
.hero-trust { display: flex; align-items: center; gap: 14px; font-size: 14px; color: rgba(255,255,255,0.75); }
.hero-trust b { color: white; }
.trust-stars { color: var(--gold); font-size: 17px; letter-spacing: 1px; }

.hero-right { position: sticky; top: 90px; }

/* ---------- Register card ---------- */
.reg-card {
  background: white;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,179,57,0.3);
  position: relative;
}
.reg-card::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(232,179,57,0.5), transparent 30%);
  pointer-events: none;
  z-index: 0;
}
.reg-card > * { position: relative; z-index: 1; }
.reg-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.reg-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; }
.reg-spots { font-size: 12px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 6px; }
.spots-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s infinite; }
.reg-row { margin-bottom: 12px; }
.reg-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: block; }
.field-label { display: block; font-size: 12.5px; font-weight: 500; color: var(--ink-3); margin-bottom: 5px; }
.field-label em { color: var(--accent); font-style: normal; margin-left: 2px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  resize: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: white;
  box-shadow: 0 0 0 4px rgba(10,10,11,0.06);
}
.reg-foot { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 14px; font-size: 12px; color: var(--muted); }

.reg-card.success { text-align: center; padding: 40px 28px; }
.success-mark { width: 56px; height: 56px; border-radius: 50%; background: #16A34A; color: white; font-size: 28px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.reg-card.success h3 { font-family: var(--font-display); font-size: 28px; margin: 0 0 10px; letter-spacing: -0.02em; }
.success-meta { margin-top: 22px; text-align: left; display: grid; gap: 10px; padding: 16px; background: var(--bg); border-radius: 10px; font-size: 14px; }
.success-meta .mono { color: var(--muted); margin-right: 10px; }

/* ---------- Marquee (color logos) ---------- */
.marquee {
  max-width: var(--maxw);
  margin: 32px auto 0;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.marquee-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-bottom: 18px;
}
.marquee-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: scroll 50s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-logo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  background: white;
  padding: 8px 16px;
  border-radius: 8px;
  filter: none;
  transition: transform 0.2s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.marquee-logo:hover { transform: translateY(-2px); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- General sections ---------- */
.sec { padding: 110px 24px; position: relative; }
.sec-inner { max-width: var(--maxw); margin: 0 auto; }
.sec-head { margin-bottom: 56px; max-width: 880px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow.light { color: rgba(255,255,255,0.55); }
.eyebrow.center { justify-content: center; }
.eyebrow-line { width: 32px; height: 1px; background: currentColor; opacity: 0.5; }
.sec-h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  text-wrap: balance;
}
.sec-h2.light { color: white; }
.sec-sub { font-size: 18px; color: var(--ink-3); margin: 18px 0 0; max-width: 640px; text-wrap: pretty; }
.sec-sub.light { color: rgba(255,255,255,0.7); }

/* ---------- Pain section ---------- */
.sec-pain { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pain-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.pain-row {
  display: grid;
  grid-template-columns: 80px 220px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.pain-row:last-child { border-bottom: 1px solid var(--line); }
.pain-num { font-size: 14px; color: var(--accent); font-weight: 700; padding-top: 6px; }
.pain-img-wrap {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, var(--bg-warm), #E8EDF7);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
}
.pain-img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  filter: brightness(0.4) contrast(1.5) saturate(0.5) hue-rotate(200deg);
  mix-blend-mode: multiply;
}
.pain-time { color: var(--muted); margin-bottom: 8px; }
.pain-h {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.pain-row p { font-size: 17px; color: var(--ink-3); margin: 0; max-width: 600px; }

.pain-cta {
  margin-top: 56px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.pain-cta p {
  font-size: 22px; max-width: 720px; margin: 0;
  text-wrap: balance; color: var(--ink); font-weight: 500;
}
.pain-cta-note { color: var(--muted); }

/* ---------- TALE / Framework signpost ---------- */
.sec-tale { background: var(--bg-warm); }

.tale-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.tale-pill {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px 26px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-sm);
}
.tale-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--pill-c);
}
.tale-blue { --pill-c: var(--blue); }
.tale-green { --pill-c: var(--green); }
.tale-orange { --pill-c: var(--orange); }
.tale-violet { --pill-c: var(--violet); }

.tale-pill-letter {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--pill-c);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 18px -8px var(--pill-c);
}
.tale-pill-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 8px;
}
.tale-pill-line {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.45;
  text-wrap: balance;
}

@media (max-width: 880px) {
  .tale-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Hosts ---------- */
.sec-hosts { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.host-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.host-card {
  background: white; border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.host-portrait {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-navy);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.host-portrait img { width: 100%; height: 100%; object-fit: contain; }
.host-portrait-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.95);
  font-size: 10px;
  font-weight: 600;
  border: 1px solid var(--line);
}
.host-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.host-name { font-family: var(--font-display); font-size: 30px; letter-spacing: -0.025em; font-weight: 700; margin: 0 0 6px; }
.host-role { color: var(--muted); margin: 0 0 20px; font-size: 15px; }
.host-creds { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 9px; }
.host-creds li { display: grid; grid-template-columns: 24px 1fr; gap: 8px; font-size: 14px; line-height: 1.45; color: var(--ink-2); }
.cred-mark { font-size: 14px; }
.host-pull {
  margin: auto 0 0;
  padding: 18px 20px;
  background: var(--bg-warm);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink-2);
}

.host-combine { margin-top: 56px; text-align: center; }
.combine-card {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--bg-navy);
  color: white;
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 28px;
  border: 1px solid rgba(232,179,57,0.25);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(232,179,57,0.12), transparent 60%);
}
.combine-half { text-align: left; }
.combine-tag { color: var(--gold); margin-bottom: 6px; font-weight: 700; }
.combine-half p { font-family: var(--font-display); font-size: 19px; line-height: 1.3; margin: 0; }
.combine-plus { font-family: var(--font-display); font-size: 64px; color: rgba(255,255,255,0.25); font-weight: 300; }

/* ---------- Testimonials written ---------- */
.sec-tw { background: var(--bg-warm); }
.tw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tw-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.tw-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.tw-stars { color: var(--gold); letter-spacing: 1px; margin-bottom: 14px; font-size: 15px; }
.tw-quote {
  font-size: 15px; line-height: 1.55; margin: 0 0 16px;
  color: var(--ink-2);
  flex: 1;
}
.tw-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
}
.tw-foot { display: flex; gap: 14px; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); }
.tw-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; background: var(--bg-warm); flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.tw-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.tw-avatar-fallback { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink-3); }
.tw-name { font-weight: 600; font-size: 14px; }
.tw-role { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.tw-industry { color: var(--gold-deep); font-size: 10.5px; margin-top: 3px; }

/* ---------- Testimonials video (dark) ---------- */
.sec-tv {
  background: var(--bg-navy);
  color: white;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(232,179,57,0.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(229,64,43,0.12), transparent 50%);
}
.tv-stage {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: stretch;
}
.tv-screen {
  background: #0a0a0c;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.tv-screen-inner {
  position: absolute; inset: 16px;
  border-radius: 12px;
  background: #000;
  overflow: hidden;
}
.tv-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #000;
  z-index: 1;
}
.tv-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(11,26,58,0.15) 35%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.88) 100%),
    repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(232,179,57,0.015) 3px, rgba(232,179,57,0.015) 4px);
  transition: opacity 0.3s ease;
  pointer-events: auto;
}
.tv-overlay.is-playing {
  opacity: 0;
  pointer-events: none;
}
.tv-corners .tv-c { position: absolute; width: 16px; height: 16px; border-color: rgba(255,255,255,0.4); border-style: solid; border-width: 0; }
.tv-c-tl { top: 12px; left: 12px; border-top-width: 2px; border-left-width: 2px; }
.tv-c-tr { top: 12px; right: 12px; border-top-width: 2px; border-right-width: 2px; }
.tv-c-bl { bottom: 12px; left: 12px; border-bottom-width: 2px; border-left-width: 2px; }
.tv-c-br { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; }
.tv-rec { color: #ff5050; font-weight: 600; }
.tv-name-block { position: absolute; left: 28px; bottom: 56px; }
.tv-name { font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: white; }
.tv-role { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 4px; }
.tv-company { color: var(--accent); margin-top: 6px; }
.tv-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.tv-play:hover { background: var(--accent); transform: translate(-50%,-50%) scale(1.05); border-color: transparent; }
.tv-cap { position: absolute; right: 28px; bottom: 28px; color: rgba(255,255,255,0.6); }

.tv-quotes { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.tv-q {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.tv-q-label { color: rgba(255,255,255,0.5); margin-bottom: 10px; font-weight: 600; }
.tv-q.tv-q-after .tv-q-label { color: var(--accent); }
.tv-q blockquote { margin: 0; font-family: var(--font-display); font-size: 19px; line-height: 1.35; letter-spacing: -0.01em; color: rgba(255,255,255,0.95); font-weight: 500; }
.tv-q.tv-q-after { background: rgba(229,64,43,0.08); border-color: rgba(229,64,43,0.3); }

.tv-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.tv-dots { display: flex; gap: 10px; }

.tv-arrows { display: flex; gap: 8px; }
.tv-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.tv-arrow:hover { background: rgba(255,255,255,0.1); }

/* ---------- Outcomes ---------- */
.sec-out { background: white; }
.out-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.out-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px 28px;
  align-items: start;
}
.out-num { color: var(--accent); font-weight: 700; padding-top: 6px; }
.out-img-wrap {
  grid-row: 1 / 3;
  grid-column: 1;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at 30% 30%, #fff5e6, #f0d9b8 80%);
  border-radius: 12px;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.out-img-wrap img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0.5) contrast(1.4) sepia(0.3) saturate(0.6); mix-blend-mode: multiply; }
.out-card .out-num { grid-column: 2; }
.out-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin: 0; grid-column: 2; }
.out-body { font-size: 15.5px; color: var(--ink-3); margin: 0; line-height: 1.55; grid-column: 2; }

/* ---------- Worth section ---------- */
.sec-worth { background: var(--bg-warm); border-top: 1px solid var(--line); }
.worth-list { display: grid; gap: 20px; max-width: 880px; }
.worth-row {
  display: grid; grid-template-columns: 48px 1fr; gap: 20px;
  background: white; border: 1px solid var(--line);
  border-radius: 14px; padding: 28px 32px;
}
.worth-check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #16A34A;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.worth-row h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.015em; margin: 0 0 6px; }
.worth-row p { margin: 0; color: var(--ink-3); font-size: 16px; line-height: 1.55; }
.worth-warn {
  margin: 36px auto;
  max-width: 880px;
  display: flex; align-items: center; gap: 18px;
  padding: 24px 28px;
  background: var(--bg-navy);
  color: white;
  border-radius: 14px;
  border: 1px solid rgba(232,179,57,0.3);
}
.warn-fire { font-size: 24px; }
.worth-warn p { margin: 0; font-family: var(--font-display); font-size: 18px; flex: 1; line-height: 1.4; text-align: center; }
.worth-cta { text-align: center; margin-top: 36px; }
.worth-cta-meta { color: var(--muted); margin-top: 14px; }

/* ---------- Final CTA ---------- */
.sec-final {
  background: var(--bg-navy);
  color: white;
  padding: 80px 24px;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(232,179,57,0.25), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(229,64,43,0.15), transparent 50%);
  border-top: 4px solid var(--gold);
}
.final-card {
  max-width: 880px; margin: 0 auto; text-align: center;
  padding: 64px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}
.final-tag {
  display: inline-block; padding: 6px 14px;
  background: rgba(232,179,57,0.15); color: var(--gold);
  border: 1px solid rgba(232,179,57,0.4);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 28px;
}
.final-h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 18px;
}
.final-sub { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 40px; }

.countdown { display: flex; justify-content: center; align-items: flex-end; gap: 8px; margin-bottom: 40px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 88px; padding: 16px 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; }
.cd-num { font-family: var(--font-display); font-size: 56px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
.cd-lbl { color: var(--gold); margin-top: 4px; font-size: 10px; }
.cd-sep { font-family: var(--font-display); font-size: 40px; color: rgba(255,255,255,0.25); padding-bottom: 22px; }
.final-spots { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 14px; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 16px; left: 50%; transform: translate(-50%, 200%);
  width: calc(100% - 32px); max-width: 720px;
  background: var(--bg-navy); color: white;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(232,179,57,0.3);
}
.sticky-cta.show { transform: translate(-50%, 0); }
.sticky-inner { display: flex; align-items: center; gap: 16px; padding: 12px 14px; }
.sticky-meta { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.sticky-title { font-weight: 600; font-size: 14.5px; line-height: 1.2; }
.sticky-sub { color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-warm); padding: 48px 24px 64px; border-top: 1px solid var(--line); }
.foot-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 32px; }
.foot-brand .brand .brand-mark { color: var(--ink); }
.foot-brand p { color: var(--muted); font-size: 13.5px; margin: 12px 0 0; }
.foot-meta p { font-size: 12px; color: var(--ink-3); margin: 0 0 6px; }
.foot-meta p.muted { color: var(--muted); font-size: 11.5px; line-height: 1.6; }

/* ---------- Tweaks accent override ---------- */
[data-accent] { --accent: var(--tweak-accent, #E5402B); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { position: static; }
  .pain-row { grid-template-columns: 1fr; }
  .pain-img-wrap { max-width: 200px; }
  .host-grid { grid-template-columns: 1fr; }
  .tw-grid { grid-template-columns: 1fr; }
  .tv-stage { grid-template-columns: 1fr; }
  .out-grid { grid-template-columns: 1fr; }
  .combine-card { grid-template-columns: 1fr; }
  .combine-plus { font-size: 36px; }
  .foot-inner { grid-template-columns: 1fr; }
  .nav-meta-item { display: none; }
  .countdown { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .sec { padding: 72px 20px; }
  .reg-row.two { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 10px; }
  .meta-divider { display: none; }
  .out-card { grid-template-columns: 1fr; }
  .out-img-wrap { max-width: 120px; }
}


/* ---------- Trust strip (consolidated) ---------- */
.sec-trust {
  background: var(--bg-warm);
  padding: 0 0 110px;
  border-top: 1px solid var(--line);
}
.trust-photo {
  position: relative;
  width: 100%;
  max-height: 640px;
  overflow: hidden;
  isolation: isolate;
}
.trust-photo img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  filter: saturate(0.92);
}
.trust-cap {
  position: absolute;
  right: 24px; bottom: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.trust-body {
  margin-top: -56px;
  position: relative;
  z-index: 2;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-navy);
  color: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,0.45);
  border: 1px solid rgba(232,179,57,0.2);
}
.trust-stat {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 8px;
}
.trust-stat:last-child { border-right: none; }
.trust-stat b {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold);
  display: inline-flex;
  align-items: baseline;
}
.trust-stat b i {
  font-style: normal;
  font-size: 22px;
  font-weight: 600;
  margin-left: 4px;
  letter-spacing: 0;
  color: rgba(255,255,255,0.75);
}
.trust-stat span {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
}
.trust-press {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}
.trust-press-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 8px;
  align-self: start;
}
.trust-press img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
}
@media (max-width: 880px) {
  .sec-trust { padding-bottom: 80px; }
  .trust-photo img { max-height: 320px; object-position: center 25%; }
  .trust-cap { display: none; }
  .trust-body { margin-top: -28px; }
  .trust-stats { grid-template-columns: 1fr; }
  .trust-stat { padding: 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-stat:last-child { border-bottom: none; }
  .trust-stat b { font-size: 42px; }
  .trust-press { grid-template-columns: 1fr; gap: 16px; }
}


/* ---------- Mobile fixes ---------- */
@media (max-width: 720px) {
  /* Hide countdown timer in top announcement bar — duplicated in final CTA */
  .ann-count { display: none; }
  .ann-text { font-size: 12px; }
  .ann-inner { gap: 8px; padding: 8px 12px; }
  .ann-sep:nth-of-type(1) { display: none; }
  /* The "·" between LIVE label and date stays; cta wraps to flex end */
}

/* Tap target for video carousel dots — visible dot stays small, tap zone is 44px */
.tv-dots { gap: 0; }
.tv-dot {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: transparent;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
}
.tv-dot::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
}
.tv-dot.active::before {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}
.tv-dot:hover::before {
  background: rgba(255,255,255,0.35);
}
.tv-dot.active:hover::before {
  background: var(--accent);
}
