/* =============================================================
   AI Борщ · website v2 — Vercel/Linear/6sense direction
   Light by default, dark inserts. Fully responsive.
   ============================================================= */

:root {
  --ink:        #0A1628;
  --ink-2:      #1F2A3D;
  --ink-3:      #2A3650;
  --ink-soft:   #5A6478;
  --beet:       #B8332A;
  --beet-deep:  #8A2418;
  --paper:      #FAFAF7;
  --paper-2:    #F2EFE6;
  --cream:      #F0E6D2;
  --green:      #3CB371;

  --font-disp: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --nav-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01" on, "cv02" on;
  text-wrap: pretty;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ── Container helper ───────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ── Type atoms ─────────────────────────────────────────── */
.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.4;
}
.mono--ink   { color: var(--ink); }
.mono--paper { color: var(--paper); }
.mono--beet  { color: var(--beet); }
.mono--cream { color: var(--cream); }

.h-display {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: clamp(64px, 11vw, 172px);
  line-height: 0.9;
  letter-spacing: clamp(-6px, -0.4vw, -2px);
  margin: 0;
}
.h1 {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: clamp(-2px, -0.15vw, -0.8px);
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin: 0;
  text-wrap: balance;
}
.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.beet { color: var(--beet); }

/* ── Tag ───────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  font-family: var(--font-mono); font-weight: 500; font-size: 11px;
  letter-spacing: 1.4px; text-transform: uppercase; line-height: 1;
  border: 1px solid var(--ink);
  color: var(--ink); background: transparent;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.tag--solid   { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tag--beet    { background: var(--beet); color: var(--paper); border-color: var(--beet); }
.tag--cream   { background: var(--cream); color: var(--ink); border-color: var(--ink); }
.tag--ghost   { background: rgba(250,250,247,.06); color: var(--paper); border-color: rgba(250,250,247,.18); }
.tag--ghost-ink { background: transparent; color: var(--paper); border-color: rgba(250,250,247,.4); }
.tag--pill    { border-radius: 24px; padding: 4px 10px; }

.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: 0 0 6px; }
.tag .dot--mute { background: rgba(250,250,247,.35); }

/* ── Btn ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-disp); font-weight: 700; font-size: 14px;
  letter-spacing: -0.2px; line-height: 1;
  border: none; background: var(--beet); color: var(--paper);
  transition: background 140ms ease, transform 120ms ease, color 140ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}
.btn:hover { background: var(--beet-deep); }
.btn:active { transform: translateY(1px); }
.btn--secondary { background: var(--paper); color: var(--ink); border: 1px solid var(--ink); }
.btn--secondary:hover { background: var(--paper-2); }
.btn--ghost-dark { background: transparent; color: var(--paper); border: 1px solid rgba(250,250,247,.4); }
.btn--ghost-dark:hover { background: rgba(250,250,247,.08); }
.btn--on-dark { background: var(--paper); color: var(--ink); border: none; }
.btn--on-dark:hover { background: var(--cream); }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid rgba(250,250,247,.06);
  color: var(--paper);
}
.nav__row {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav__left { display: flex; align-items: center; gap: 18px; min-width: 0; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { width: 28px; height: 28px; }
.nav__wordmark {
  font-family: var(--font-disp); font-weight: 700; font-size: 17px; letter-spacing: -0.4px;
  color: var(--paper);
}
.nav__wordmark .ai { font-weight: 800; }
.nav__wordmark .sep { color: var(--ink-soft); margin: 0 .15em; }
.nav__build { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; color: var(--ink-soft); }

.nav__menu {
  display: flex; align-items: center; gap: clamp(12px, 1.35vw, 22px);
  list-style: none; margin: 0; padding: 0;
}
.nav__menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body); font-weight: 400; font-size: 13px;
  color: rgba(250,250,247,.78);
  transition: color 160ms ease;
  white-space: nowrap;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: -8px;
  height: 1px;
  background: var(--cream);
  opacity: 0;
  transition: left 180ms ease, right 180ms ease, opacity 180ms ease;
}
.nav__menu a:hover { color: var(--paper); }
.nav__menu a:hover::after { left: 0; right: 0; opacity: .85; }

.nav__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.kbd {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 9px; border-radius: 6px;
  border: 1px solid rgba(250,250,247,.18); background: rgba(250,250,247,.05);
  font-family: var(--font-mono); font-size: 11px; color: rgba(250,250,247,.7); letter-spacing: 1px;
}
.kbd .key { padding: 1px 5px; background: rgba(250,250,247,.12); border-radius: 3px; font-size: 10px; color: var(--paper); }

.nav__burger {
  display: none;
  background: transparent; border: 1px solid rgba(250,250,247,.2); border-radius: 6px;
  padding: 8px; color: var(--paper);
}
.nav__burger svg { width: 18px; height: 18px; }

@media (max-width: 960px) {
  .nav__menu, .kbd, .nav__build { display: none; }
  .nav__burger { display: inline-flex; }
}
@media (max-width: 520px) {
  .nav__btn-text { display: none; }
  .btn--nav-cta { padding: 10px 14px; }
}

/* mobile sheet */
.nav-sheet {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 40;
  background: var(--ink); color: var(--paper);
  padding: 24px var(--gutter) 32px;
  transform: translateY(calc(-100% - var(--nav-h)));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 200ms ease, opacity 160ms ease, visibility 0s linear 200ms;
  display: flex; flex-direction: column; gap: 8px;
}
.nav-sheet.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 200ms ease, opacity 160ms ease;
}
.nav-sheet a {
  padding: 14px 4px;
  font-family: var(--font-disp); font-weight: 700; font-size: 22px;
  border-bottom: 1px solid rgba(250,250,247,.1);
}
.nav-sheet .mono { padding-top: 16px; }

/* =====================================================
   HERO  (Vercel Terminal direction)
   ===================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
  padding: clamp(40px, 6vw, 88px) 0 clamp(40px, 5vw, 72px);
  margin-top: calc(-1 * var(--nav-h));
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 88px));
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(250,250,247,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(250,250,247,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 20%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 20%, black, transparent 80%);
}
.hero::after {
  content: ""; position: absolute;
  left: -10%; top: -20%; width: 60vw; height: 70vh;
  background: radial-gradient(circle, rgba(184,51,42,.35) 0%, transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.hero__glow-2 {
  position: absolute; right: -10%; bottom: -30%; width: 60vw; height: 70vh;
  background: radial-gradient(circle, rgba(240,230,210,.16) 0%, transparent 60%);
  filter: blur(40px); pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__copy { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.hero__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero__title { color: var(--paper); }
.hero__title .dot { color: var(--beet); }
.hero__sub {
  font-family: var(--font-disp); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.2; letter-spacing: -0.6px;
  color: var(--paper); margin: 0; max-width: 700px;
}
.hero__sub .muted { color: rgba(250,250,247,.55); font-weight: 600; }
.hero__lead {
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6;
  color: rgba(250,250,247,.7); margin: 0; max-width: 640px;
}
.hero__cta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 4px; }
.hero__cta .mono { color: rgba(250,250,247,.55); }
.hero__note { color: rgba(250,250,247,.5); max-width: 580px; line-height: 1.5; }

/* hero right — borsch "OS" visual (technical frame + orbiting ingredients) */
.hero-viz { display: flex; align-items: stretch; justify-content: center; min-height: 400px; }
.viz {
  position: relative; width: min(100%, 460px); height: 100%; min-height: 400px;
  border: 1px solid rgba(250,250,247,.12); border-radius: 16px;
  background: linear-gradient(155deg, rgba(250,250,247,.06), rgba(250,250,247,.01));
  backdrop-filter: blur(4px); overflow: hidden;
  display: grid; grid-template-rows: auto 1fr auto;
  animation: viz-in .8s ease both;
}
@keyframes viz-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.viz__bracket { position: absolute; width: 14px; height: 14px; z-index: 3; border: 2px solid rgba(250,250,247,.35); }
.viz__bracket--tl { top: 9px; left: 9px; border-right: none; border-bottom: none; }
.viz__bracket--tr { top: 9px; right: 9px; border-left: none; border-bottom: none; }
.viz__bracket--bl { bottom: 9px; left: 9px; border-right: none; border-top: none; }
.viz__bracket--br { bottom: 9px; right: 9px; border-left: none; border-top: none; }
.viz__bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 18px; z-index: 2; }
.viz__bar--top { border-bottom: 1px solid rgba(250,250,247,.1); }
.viz__bar--bot { border-top: 1px solid rgba(250,250,247,.1); }
.viz__bar .mono { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(250,250,247,.5); }
.viz__dots { display: inline-flex; gap: 5px; }
.viz__dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--beet); animation: viz-pulse 1.4s ease-in-out infinite; }
.viz__dots i:nth-child(2) { background: rgba(184,51,42,.6); animation-delay: .2s; }
.viz__dots i:nth-child(3) { background: rgba(184,51,42,.3); animation-delay: .4s; }
@keyframes viz-pulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
.viz__stage { position: relative; overflow: hidden; }
.viz__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(250,250,247,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(250,250,247,.05) 1px, transparent 1px); background-size: 32px 32px; -webkit-mask: radial-gradient(circle at center, #000 28%, transparent 72%); mask: radial-gradient(circle at center, #000 28%, transparent 72%); }
.viz__circle { position: absolute; top: 50%; left: 50%; border-radius: 50%; transform: translate(-50%, -50%); }
.viz__circle--out { width: 252px; height: 252px; border: 1px dashed rgba(250,250,247,.16); animation: viz-spin 90s linear infinite; }
.viz__circle--in { width: 150px; height: 150px; border: 1px solid rgba(184,51,42,.2); }
.viz__core { position: absolute; top: 50%; left: 50%; width: 96px; height: 96px; margin: -48px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: radial-gradient(circle, rgba(184,51,42,.2), transparent 70%); animation: viz-bob 6s ease-in-out infinite; }
.viz__core-text { font-family: var(--font-disp); font-weight: 800; font-size: 42px; letter-spacing: -1.5px; color: var(--paper); line-height: 1; }
.viz__orbit { position: absolute; inset: 0; transform-origin: center; animation: viz-spin 64s linear infinite; }
.viz__node { position: absolute; top: 50%; left: 50%; width: 46px; height: 46px; margin: -23px; transform: rotate(var(--a)) translateX(126px) rotate(calc(-1 * var(--a))); }
.viz__node .ingredient { width: 42px; height: 42px; animation: viz-spin-rev 64s linear infinite; }
@keyframes viz-spin { to { transform: rotate(360deg); } }
@keyframes viz-spin-rev { to { transform: rotate(-360deg); } }
@keyframes viz-bob { 0%, 100% { transform: translateY(-4px); } 50% { transform: translateY(4px); } }
.ingredient { display: block; background: rgba(250,250,247,.82); -webkit-mask: center / contain no-repeat; mask: center / contain no-repeat; }
.ingredient--cabbage { -webkit-mask-image: url(assets/icons/ingredient-cabbage.svg); mask-image: url(assets/icons/ingredient-cabbage.svg); }
.ingredient--pepper  { -webkit-mask-image: url(assets/icons/ingredient-pepper.svg);  mask-image: url(assets/icons/ingredient-pepper.svg);  background: rgba(184,51,42,.85); }
.ingredient--potato  { -webkit-mask-image: url(assets/icons/ingredient-potato.svg);  mask-image: url(assets/icons/ingredient-potato.svg); }
.ingredient--bay     { -webkit-mask-image: url(assets/icons/ingredient-bay.svg);     mask-image: url(assets/icons/ingredient-bay.svg);     background: rgba(60,179,113,.85); }
.ingredient--spoon   { -webkit-mask-image: url(assets/icons/ingredient-spoon.svg);   mask-image: url(assets/icons/ingredient-spoon.svg); }
@media (max-width: 960px) { .hero-viz { min-height: 360px; } }
@media (max-width: 560px) {
  .viz__node { transform: rotate(var(--a)) translateX(104px) rotate(calc(-1 * var(--a))); }
  .viz__circle--out { width: 212px; height: 212px; }
  .hero__badges .tag { white-space: normal; line-height: 1.5; text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  .viz, .viz__circle--out, .viz__core, .viz__orbit, .viz__node .ingredient, .viz__dots i { animation: none; }
}

/* =====================================================
   TRUST STRIP — REMOVED, replaced by .slogan-bar below
   ===================================================== */

/* =====================================================
   SLOGAN BAR (admin-window styled, replaces trust strip)
   ===================================================== */
.slogan-bar {
  background: var(--ink); color: var(--paper);
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(250,250,247,.12);
}
.slogan-bar::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(250,250,247,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(250,250,247,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.slogan-bar__head {
  display: flex; align-items: center; gap: 12px;
  padding: 10px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid rgba(250,250,247,.1);
  position: relative; z-index: 1;
}
.slogan-bar__head .lights { display: inline-flex; gap: 6px; }
.slogan-bar__head .l { width: 9px; height: 9px; border-radius: 50%; }
.slogan-bar__head .l.r { background: #FF5F56; }
.slogan-bar__head .l.y { background: #FFBD2E; }
.slogan-bar__head .l.g { background: #27C93F; }
.slogan-bar__body {
  overflow: hidden; position: relative; z-index: 1;
  padding: 14px 0;
}
.slogan-bar__track {
  display: inline-flex; align-items: center; gap: clamp(14px, 2vw, 22px);
  white-space: nowrap;
  animation: slogan-flow 55s linear infinite;
  padding-left: clamp(20px, 4vw, 48px);
}
.slogan-bar:hover .slogan-bar__track { animation-play-state: paused; }
.slogan-bar__track .prompt {
  font-family: var(--font-mono); font-weight: 600; font-size: 14px;
  color: var(--green);
  flex-shrink: 0;
}
.slogan-bar__track .txt {
  font-family: var(--font-disp); font-weight: 700;
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: -0.3px;
  color: var(--paper);
  flex-shrink: 0;
}
.slogan-bar__track .dot-sep {
  color: var(--beet); font-size: 10px;
  flex-shrink: 0;
}
@keyframes slogan-flow {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   SECTION shell
   ===================================================== */
.section { padding: clamp(48px, 7vw, 96px) 0; }
.section[id] { scroll-margin-top: var(--nav-h); }
.section--dark { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.section--dark::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(250,250,247,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(250,250,247,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top, black, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at top, black, transparent 90%);
}
.section--dark > * { position: relative; }
.section--cream { background: var(--cream); }

.section__head {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: end;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section__title { display: flex; flex-direction: column; gap: 18px; }
.section__title .tag { align-self: flex-start; }
.section__title h2 { color: inherit; }
.section__intro p {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.6; margin: 0;
  color: var(--ink-2);
}
.section--dark .section__intro p { color: rgba(250,250,247,.7); }
.section__intro p + p { margin-top: 12px; }
.section__lead {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; margin: 0;
  color: var(--ink-2); max-width: 640px;
}
.section--dark .section__lead { color: rgba(250,250,247,.7); }
#speakers .section__lead { text-wrap: pretty; }
@media (min-width: 768px) { #speakers .section__lead { text-align: justify; } }

/* =====================================================
   MANIFESTO promise grid
   ===================================================== */
.promise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.promise-grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .promise-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .promise-grid { grid-template-columns: 1fr; } }

.promise {
  background: var(--paper); border: 1px solid var(--ink);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.promise__head { display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; border-bottom: 1px solid var(--ink); }
.promise__head .mono { color: var(--beet); }
.promise__head img { width: 36px; height: 36px; }
.promise h3 {
  font-family: var(--font-disp); font-weight: 700; font-size: 22px;
  letter-spacing: -0.4px; line-height: 1.15; margin: 0;
}
.promise p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.promise__foot { margin-top: auto; padding-top: 12px;
  border-top: 1px dashed rgba(10,22,40,.2); }

/* =====================================================
   ЧТО ВЫ ПОЛУЧИТЕ — takeaways
   ===================================================== */
.takeaways {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--ink);
}
.takeaways li {
  position: relative; padding: 22px 24px 22px 52px;
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.5; color: var(--ink);
  border-bottom: 1px solid var(--ink);
}
.takeaways li:nth-child(odd) { border-right: 1px solid var(--ink); }
.takeaways li::before {
  content: "→"; position: absolute; left: 24px; top: 22px;
  color: var(--beet); font-family: var(--font-mono); font-weight: 700;
}
@media (max-width: 700px) {
  .takeaways { grid-template-columns: 1fr; }
  .takeaways li:nth-child(odd) { border-right: none; }
}

/* =====================================================
   STATEMENT — animated word cycle
   ===================================================== */
.statement { text-align: center; }
.statement__head {
  max-width: 940px; margin: 0 auto; line-height: 1.18;
}
.cycle {
  position: relative; display: inline-block; text-align: left;
  color: var(--beet);
  transition: width .5s cubic-bezier(.2,.8,.2,1);
}
.cycle__word { display: inline-block; white-space: nowrap; }
.cycle__word.is-in { animation: cycle-in .42s cubic-bezier(.2,.8,.2,1); }
.cycle__word.is-out { animation: cycle-out .3s ease-in forwards; }
@keyframes cycle-in {
  from { transform: translateY(-20px); opacity: 0; filter: blur(8px); }
  to   { transform: translateY(0); opacity: 1; filter: blur(0); }
}
@keyframes cycle-out {
  from { transform: translateY(0); opacity: 1; filter: blur(0); }
  to   { transform: translateY(20px); opacity: 0; filter: blur(8px); }
}

/* =====================================================
   INSIGHTS — auto-scrolling speaker quote columns
   ===================================================== */
.insights {
  position: relative;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 600px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 11%, #000 89%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 11%, #000 89%, transparent);
}
.insights__col { overflow: hidden; }
.insights__track {
  display: flex; flex-direction: column; gap: 20px;
  animation: insights-scroll var(--dur, 48s) linear infinite;
  will-change: transform;
}
.insights__col:nth-child(1) .insights__track { --dur: 46s; }
.insights__col:nth-child(2) .insights__track { --dur: 58s; animation-delay: -9s; }
.insights__col:nth-child(3) .insights__track { --dur: 52s; animation-delay: -17s; }
.insights:hover .insights__track { animation-play-state: paused; }
@keyframes insights-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(calc(-50% - 10px)); }
}
.insight {
  background: var(--paper); border: 1px solid var(--ink); border-radius: 6px;
  padding: 24px;
}
.insight__text {
  margin: 0; font-size: 16px; line-height: 1.5; color: var(--ink);
}
.insight__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.insight__ava {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--ink); flex: 0 0 auto;
}
.insight__name {
  font-family: var(--font-disp); font-weight: 600; font-size: 15px;
  letter-spacing: -0.2px; color: var(--ink);
}
.insight__role {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .02em;
  text-transform: uppercase; color: var(--ink-soft); margin-top: 2px;
}
.section--dark .insight {
  background: rgba(250,250,247,.04); border-color: rgba(250,250,247,.14);
}
.section--dark .insight__text,
.section--dark .insight__name { color: var(--paper); }
.section--dark .insight__role { color: rgba(250,250,247,.55); }
.section--dark .insight__ava { border-color: rgba(250,250,247,.28); }
@media (max-width: 980px) {
  .insights { grid-template-columns: repeat(2, 1fr); height: 560px; }
  .insights__col:nth-child(3) { display: none; }
}
@media (max-width: 620px) {
  .insights { grid-template-columns: 1fr; height: 520px; }
  .insights__col:nth-child(2) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .insights { height: auto; -webkit-mask-image: none; mask-image: none; }
  .insights__track { animation: none; }
  .insights__col:nth-child(2) .insight:nth-child(n+2),
  .insights__col:nth-child(3) .insight:nth-child(n+2) { display: none; }
}

/* =====================================================
   PROGRAM (schedule)
   ===================================================== */
.schedule {
  background: var(--paper); border: 1px solid var(--ink);
  font-family: var(--font-body);
}
.row {
  position: relative;
  display: grid;
  grid-template-columns: 122px 124px minmax(260px, 1fr) 280px 112px;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-top: 1px solid var(--ink-2);
  transition: background 140ms ease, transform 160ms ease;
}
.row::before {
  content: "";
  position: absolute;
  left: 0; top: -1px; bottom: -1px;
  width: 3px;
  background: var(--beet);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 170ms ease;
}
.row:first-child { border-top: none; }
.row:hover { background: var(--paper-2); }
.row:not(.row--muted):hover::before { transform: scaleY(1); }
.row:not(.row--muted):hover .row__time { color: var(--beet); }
.row:not(.row--muted):hover .tag {
  border-color: var(--beet);
  color: var(--beet);
  background: rgba(184,51,42,.06);
}
.row:not(.row--muted):hover .tag--beet,
.row:not(.row--muted):hover .tag--solid {
  color: var(--paper);
  background: var(--beet);
  border-color: var(--beet);
}
.row--muted {
  background: var(--cream);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 1.3px; text-transform: uppercase; color: var(--ink-soft);
}
.row--muted .row__title {
  font-family: var(--font-mono); font-weight: 500; font-size: 12.5px;
  letter-spacing: 1.2px; color: var(--ink-soft); line-height: 1.4;
}
.row--feature {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  min-height: 112px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 2px solid var(--beet);
  box-shadow: inset 0 0 0 1px rgba(184,51,42,.24);
}
.row--feature::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(184,51,42,.42), rgba(184,51,42,0) 68%);
  pointer-events: none;
}
.row--feature .row__time,
.row--feature .row__title {
  color: var(--paper);
}
.row--feature:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.row--feature:hover::before {
  width: 6px;
}
.row--feature .tag--solid,
.row--feature:hover .tag--solid {
  background: var(--beet);
  border-color: var(--beet);
  color: var(--paper);
}
.row--feature .row__time {
  font-size: 18px;
  color: var(--beet);
}
.row--feature .row__title {
  font-size: 24px;
  line-height: 1.12;
}
.row--feature .row__speaker {
  color: rgba(250,250,247,.86);
  font-size: 24px;
  line-height: 1.12;
}
.row--feature .status-pill {
  color: var(--paper);
  background: rgba(250,250,247,.12);
}
.row--feature .status-pill .d {
  background: var(--beet);
}
.row__time {
  font-family: var(--font-mono); font-weight: 600; font-size: 13.5px;
  letter-spacing: .6px; color: var(--ink);
  transition: color 160ms ease;
}
.row__title {
  font-family: var(--font-disp); font-weight: 600; font-size: 15.5px;
  letter-spacing: -0.2px; color: var(--ink); line-height: 1.3;
}
.row__title .num { color: var(--beet); font-weight: 700; }
.row__speaker {
  font-family: var(--font-disp); font-weight: 600; font-size: 15.5px;
  letter-spacing: -0.2px; color: var(--ink-soft); line-height: 1.3;
}
.row__status { text-align: right; }
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.3px;
  text-transform: uppercase; color: var(--ink-soft);
  padding: 4px 8px; border-radius: 12px;
  background: rgba(10,22,40,.04);
}
.status-pill .d { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-soft); }
.status-pill--live { color: var(--beet); background: rgba(184,51,42,.08); }
.status-pill--live .d { background: var(--beet); }
.status-pill--wait { color: var(--ink-2); }
.status-pill--wait .d { background: var(--ink-2); }

@media (max-width: 960px) {
  .row { grid-template-columns: 74px 1fr; row-gap: 6px; column-gap: 12px; padding: 16px; }
  .row > span:nth-child(2),
  .row__status { grid-column: 2; }
  .row__speaker { grid-column: 2; }
  .row__time { grid-row: 1 / span 4; font-size: 12px; line-height: 1.25; }
  .row--muted .row__time { grid-row: auto; }
  .row--feature { min-height: 0; padding: 20px 16px; }
  .row--feature .row__time { font-size: 14px; }
  .row--feature .row__title { font-size: 18px; }
  .row--feature .row__speaker { font-size: 14.5px; line-height: 1.4; }
}

/* =====================================================
   SPEAKERS
   ===================================================== */
.speakers-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
  align-items: stretch;
}
@media (max-width: 960px) { .speakers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px) { .speakers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.speaker {
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
  min-width: 0;
  padding: 10px 10px 14px;
  border: 1px solid rgba(10,22,40,.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(250,250,247,.96), rgba(242,239,230,.78)),
    var(--paper);
  box-shadow: 0 14px 34px rgba(10,22,40,.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.speaker:hover {
  transform: translateY(-4px);
  border-color: rgba(184,51,42,.42);
  box-shadow: 0 22px 46px rgba(10,22,40,.12);
}
.speaker__photo {
  aspect-ratio: 4 / 5; background: var(--paper-2);
  border: 1px solid var(--ink); border-radius: 6px; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-disp); font-weight: 700;
  font-size: clamp(40px, 5vw, 64px); color: var(--ink-soft);
  letter-spacing: 0;
  overflow: hidden;
  isolation: isolate;
}
.speaker__photo::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid rgba(250,250,247,.28);
  z-index: 2;
  pointer-events: none;
}
.speaker__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.86) contrast(1.06) brightness(.95);
  transform: scale(1.01);
  transition: transform 220ms ease, filter 220ms ease;
}
.speaker:hover .speaker__photo img {
  filter: saturate(1) contrast(1.04) brightness(1);
  transform: scale(1.055);
}
.speaker__photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, transparent 42%, rgba(10,22,40,.16) 66%, rgba(10,22,40,.78)),
    linear-gradient(135deg, rgba(184,51,42,.12), transparent 42%),
    radial-gradient(circle at 86% 12%, rgba(60,179,113,.18), transparent 26%);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}
.speaker__photo--pending {
  background:
    linear-gradient(135deg, rgba(10,22,40,.96), rgba(31,42,61,.92) 52%, rgba(184,51,42,.88)),
    var(--ink);
  color: var(--cream);
}
.speaker__photo--pending::before {
  border-color: rgba(240,230,210,.34);
}
.speaker__photo--pending::after {
  background:
    linear-gradient(to bottom, transparent 36%, rgba(10,22,40,.54)),
    repeating-linear-gradient(135deg, rgba(240,230,210,.13) 0 1px, transparent 1px 14px);
  mix-blend-mode: normal;
}
.speaker__photo--pending::selection { background: transparent; }
.speaker__photo--pending::marker { content: ""; }
.speaker__photo--pending::before {
  content: attr(data-initials);
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 10px;
  font-size: clamp(42px, 5vw, 68px);
}
.speaker--secret .speaker__photo img {
  filter: saturate(.95) contrast(1.1) brightness(.9);
}
.speaker--secret:hover .speaker__photo img {
  filter: saturate(1.08) contrast(1.08) brightness(.98);
}
.speaker__photo .corner {
  position: absolute; bottom: 8px; left: 8px; right: 8px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 1.2px;
  color: var(--paper); text-transform: uppercase; z-index: 3;
  padding: 6px 7px;
  background: rgba(10,22,40,.62);
  border: 1px solid rgba(250,250,247,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.speaker .tag {
  align-self: flex-start; margin-top: 4px;
  max-width: 100%;
  white-space: normal;
  line-height: 1.12;
}
.speaker h3 {
  font-family: var(--font-disp); font-weight: 700; font-size: 17px;
  letter-spacing: 0; line-height: 1.15; margin: 0;
}
.speaker__role {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.3px;
  color: var(--ink-soft); text-transform: uppercase; margin: 0;
}
.speaker__topic {
  font-size: 13.5px; line-height: 1.45; color: var(--ink-2); margin: 0;
}
@media (max-width: 520px) {
  #speakers .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  #speakers .section__head,
  .speakers-grid {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .speakers-grid { grid-template-columns: 1fr; gap: 12px; }
  .speaker { padding: 8px 8px 12px; border-radius: 7px; }
  .speaker__photo { border-radius: 5px; }
  .speaker__photo .corner { font-size: 8px; padding: 5px; }
  .speaker .tag { font-size: 9px; letter-spacing: 1px; padding: 5px 7px; }
  .speaker h3 { font-size: 15px; }
  .speaker__role { font-size: 9.5px; }
  #speakers .section__intro p,
  .speaker__topic {
    overflow-wrap: anywhere;
    text-wrap: normal;
  }
  .speaker__topic { font-size: 12.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .speaker,
  .speaker__photo img {
    transition: none;
  }
  .speaker:hover {
    transform: none;
  }
  .speaker:hover .speaker__photo img {
    transform: scale(1.01);
  }
}

/* =====================================================
   AI STACK (Vercel-integrations style)
   ===================================================== */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(250,250,247,.14);
  background: rgba(250,250,247,.02);
}
@media (max-width: 900px) { .stack-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .stack-grid { grid-template-columns: repeat(3, 1fr); } }

.stack-cell {
  aspect-ratio: 1.4 / 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  border-right: 1px solid rgba(250,250,247,.1);
  border-bottom: 1px solid rgba(250,250,247,.1);
  padding: 12px;
  text-align: center;
  position: relative;
  min-width: 0;
}
.stack-cell:nth-child(6n) { border-right: none; }
.stack-mark {
  width: clamp(42px, 5vw, 62px);
  aspect-ratio: 1;
  border: 1px solid rgba(250,250,247,.12);
  border-radius: 8px;
  background-image: url("assets/brand-stack/ai-stack-sprite.png");
  background-size: 400% 300%;
  background-position: var(--stack-x) var(--stack-y);
  box-shadow: inset 0 1px 0 rgba(250,250,247,.08), 0 16px 34px rgba(0,0,0,.2);
  filter: grayscale(.35) saturate(.9);
  opacity: .78;
  transition: transform .2s ease, opacity .2s ease, filter .2s ease, border-color .2s ease;
}
.stack-mark--claude { --stack-x: 0%; --stack-y: 0%; }
.stack-mark--chatgpt { --stack-x: 33.333%; --stack-y: 0%; }
.stack-mark--yandex { --stack-x: 66.666%; --stack-y: 0%; }
.stack-mark--gigachat { --stack-x: 100%; --stack-y: 0%; }
.stack-mark--perplexity { --stack-x: 0%; --stack-y: 50%; }
.stack-mark--cursor { --stack-x: 33.333%; --stack-y: 50%; }
.stack-mark--v0 { --stack-x: 66.666%; --stack-y: 50%; }
.stack-mark--notion { --stack-x: 100%; --stack-y: 50%; }
.stack-mark--mindbox { --stack-x: 0%; --stack-y: 100%; }
.stack-mark--carrot { --stack-x: 33.333%; --stack-y: 100%; }
.stack-mark--eleven { --stack-x: 66.666%; --stack-y: 100%; }
.stack-mark--mistral { --stack-x: 100%; --stack-y: 100%; }
.stack-cell .logo {
  font-family: var(--font-disp); font-weight: 800; font-size: clamp(15px, 1.25vw, 18px); letter-spacing: -0.2px;
  color: var(--paper);
  opacity: 0.85;
  line-height: 1.08;
}
.stack-cell .name { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 1.2px;
  color: rgba(250,250,247,.5); text-transform: uppercase; }
.stack-cell:hover .stack-mark {
  border-color: rgba(250,250,247,.24);
  filter: grayscale(0) saturate(1.08);
  opacity: 1;
  transform: translateY(-2px);
}
.stack-cell:hover .logo { opacity: 1; }
@media (max-width: 900px) {
  .stack-cell { border-right: 1px solid rgba(250,250,247,.1); }
  .stack-cell:nth-child(6n) { border-right: 1px solid rgba(250,250,247,.1); }
  .stack-cell:nth-child(4n) { border-right: none; }
}
@media (max-width: 560px) {
  .stack-cell { aspect-ratio: 1.08 / 1; padding: 10px 8px; }
  .stack-cell:nth-child(4n) { border-right: 1px solid rgba(250,250,247,.1); }
  .stack-cell:nth-child(3n) { border-right: none; }
  .stack-mark { width: 38px; }
  .stack-cell .name { font-size: 8.5px; letter-spacing: .9px; }
}

/* =====================================================
   TICKETS
   ===================================================== */
.tickets-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .tickets-grid { grid-template-columns: 1fr; } }

.ticket {
  position: relative;
  background: var(--paper); border: 1px solid var(--ink);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.ticket--pro {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.ticket:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(10,22,40,.14);
  border-color: var(--ink);
}
.ticket--pro:hover {
  box-shadow: 0 22px 58px rgba(184,51,42,.28), 0 0 0 1px rgba(184,51,42,.5);
}
.ticket__tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.3px;
  color: var(--ink-soft); text-transform: uppercase;
}
.ticket--pro .ticket__tag { color: var(--cream); }
.ticket__name {
  font-family: var(--font-disp); font-weight: 700; font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -1.4px; margin: 24px 0 4px; line-height: 1;
}
.ticket__lead {
  font-size: 14px; line-height: 1.5; color: var(--ink-2); margin: 0 0 8px;
}
.ticket--pro .ticket__lead { color: rgba(250,250,247,.7); }
.ticket__perks {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.ticket__perks li {
  font-size: 14px; line-height: 1.5; color: var(--ink-2);
  padding-left: 18px; position: relative;
}
.ticket--pro .ticket__perks li { color: rgba(250,250,247,.85); }
.ticket__perks li::before {
  content: "→"; position: absolute; left: 0; color: var(--beet); font-weight: 700;
}
.ticket__price {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 4px;
}
.ticket--pro .ticket__price { border-top-color: rgba(250,250,247,.18); }
.ticket__price-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.2px;
  color: var(--ink-soft); text-transform: uppercase;
}
.ticket--pro .ticket__price-label { color: var(--cream); }
.ticket__price-val {
  font-family: var(--font-disp); font-weight: 700; font-size: clamp(34px, 4vw, 44px);
  letter-spacing: -1.2px; line-height: 1; color: var(--beet);
}
.ticket--pro .ticket__price-val { color: var(--paper); }
.ticket__price-meta { display: flex; align-items: center; gap: 10px; margin-top: 2px; }
.ticket__price-old {
  font-size: 15px; color: var(--ink-soft); text-decoration: line-through;
}
.ticket--pro .ticket__price-old { color: rgba(250,250,247,.5); }
.ticket__price-off {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .6px;
  color: var(--paper); background: var(--beet);
  padding: 2px 7px; border-radius: 3px;
}
.ticket__corp {
  margin: 14px 0 0; font-size: 12.5px; letter-spacing: .02em; line-height: 1.5;
}
.ticket__corp a { white-space: nowrap; }
.ticket__cta { margin-top: 12px; align-self: flex-start; }
.ticket:hover .ticket__cta {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(184,51,42,.18);
}
.ticket--pro:hover .ticket__cta {
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(250,250,247,.16);
}
.ticket__stamp {
  position: absolute; top: 24px; right: 20px;
  font-family: var(--font-disp); font-weight: 700; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 12px;
  border: 2px solid var(--beet); color: var(--beet);
  transform: rotate(6deg); background: var(--paper);
}
.ticket--pro .ticket__stamp { background: var(--ink); }

/* =====================================================
   DEAL ROOM
   ===================================================== */
.deal {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 900px) { .deal { grid-template-columns: 1fr; } }

.deal__list { display: flex; flex-direction: column; gap: 0; }
.deal__list .item {
  padding: 18px 0;
  border-top: 1px solid rgba(250,250,247,.14);
  display: grid; grid-template-columns: 32px 1fr; gap: 16px; align-items: start;
}
.deal__list .item:last-child { border-bottom: 1px solid rgba(250,250,247,.14); }
.deal__list .item .n {
  font-family: var(--font-mono); font-weight: 500; font-size: 11px;
  letter-spacing: 1.3px; color: var(--beet);
}
.deal__list .item .label {
  font-family: var(--font-disp); font-weight: 600; font-size: 17px;
  color: var(--paper);
}
.deal__list .item .desc {
  font-size: 14px; line-height: 1.55; color: rgba(250,250,247,.65); margin-top: 4px;
}

/* =====================================================
   CFP
   ===================================================== */
.cfp {
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  padding: clamp(32px, 4vw, 56px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 3vw, 48px);
  align-items: center; position: relative; overflow: hidden;
}
@media (max-width: 800px) { .cfp { grid-template-columns: 1fr; } }
.cfp::before {
  content: ""; position: absolute; right: -20%; top: -50%; width: 60vw; height: 100vh;
  background: radial-gradient(circle, rgba(184,51,42,.25), transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.cfp > * { position: relative; }
.cfp h2 { color: var(--paper); }
.cfp p { color: rgba(250,250,247,.7); max-width: 580px; margin-top: 12px; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-list { border-top: 1px solid var(--ink); max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--ink); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 4px; cursor: pointer; list-style: none;
  font-family: var(--font-disp); font-weight: 700; font-size: clamp(17px, 1.6vw, 21px);
  letter-spacing: -0.3px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--beet); }
.faq-item__icon {
  font-family: var(--font-mono); font-size: 20px; color: var(--ink-soft);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); color: var(--beet); }
.faq-item p {
  font-size: 15px; line-height: 1.65; color: var(--ink-2);
  margin: 0 0 20px; max-width: 760px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.foot {
  background: var(--ink); color: var(--paper);
  padding-top: clamp(48px, 6vw, 80px); padding-bottom: 24px;
  position: relative; overflow: hidden;
}
.foot::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(250,250,247,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(250,250,247,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.foot > * { position: relative; }
.foot__main {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(250,250,247,.14);
}
@media (max-width: 900px) { .foot__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__main { grid-template-columns: 1fr; } }
.foot__brand { display: flex; flex-direction: column; gap: 14px; }
.foot__brand img { width: 44px; height: 44px; }
.foot__brand .mark-row { display: flex; align-items: center; gap: 12px; }
.foot__brand .word {
  font-family: var(--font-disp); font-weight: 700; font-size: 22px; letter-spacing: -0.5px;
}
.foot__brand p { font-size: 14px; line-height: 1.55; color: rgba(250,250,247,.65); margin: 0; max-width: 320px; }
.foot__col h4 {
  font-family: var(--font-mono); font-weight: 500; font-size: 10.5px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 14px;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot__col a { font-size: 14px; color: rgba(250,250,247,.78); transition: color 140ms; }
.foot__col a:hover { color: var(--beet); }

.foot__legal {
  padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.3px;
  color: var(--ink-soft); text-transform: uppercase;
}
.foot__legal a { color: rgba(250,250,247,.75); }
.foot__legal a:hover { color: var(--paper); }

/* =====================================================
   SECTION SEPARATORS (mono dividers between sections)
   ===================================================== */
.divider {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.3px;
  color: var(--ink-soft); text-transform: uppercase;
  padding: 18px 0; border-top: 1px solid var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
  line-height: 1.45;
}
.section--dark .divider { color: rgba(250,250,247,.4); border-top-color: rgba(250,250,247,.14); }
@media (max-width: 560px) {
  .divider {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    font-size: 9px;
    letter-spacing: 1.05px;
  }
}

/* small helper */
.row-flex { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.muted { color: var(--ink-soft); }


/* =====================================================
   VENUE
   ===================================================== */
.venue {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}
@media (max-width: 900px) { .venue { grid-template-columns: 1fr; } }
.venue__eyebrow {
  margin: 0 0 12px;
  font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--beet);
}
.venue__title {
  max-width: 760px;
  font-size: clamp(36px, 4vw, 68px);
  line-height: 1.08;
  letter-spacing: -1.6px;
}
.venue__address {
  margin: 8px 0 0;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.4px;
  color: var(--ink);
  white-space: nowrap;
}

.venue__photo {
  position: relative;
  background: linear-gradient(135deg, var(--ink-2) 0%, var(--ink) 50%, var(--ink-3) 100%);
  border: 1px solid var(--ink);
  aspect-ratio: 16 / 10;
  width: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
}
.venue__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}
.venue__photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(180deg, rgba(10,22,40,.05) 0%, rgba(10,22,40,.72) 100%),
    linear-gradient(to right, rgba(250,250,247,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(250,250,247,.07) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  background-blend-mode: normal, screen, screen;
  transition: opacity 360ms ease;
}
.venue__photo::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 48%; z-index: 1;
  background: linear-gradient(115deg, transparent 0%, rgba(184,51,42,.25) 50%, transparent 100%);
  filter: blur(40px);
  pointer-events: none;
}
.venue__photo:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.08);
}
.venue__photo:hover::before { opacity: 1; }

.venue__details {
  position: relative;
  z-index: 3;
  display: flex; flex-direction: column; gap: 0;
  background: var(--paper); border: 1px solid var(--ink);
  min-width: 0;
}
.venue__row {
  display: grid; grid-template-columns: minmax(76px, 100px) minmax(0, 1fr);
  gap: 16px; padding: 16px 20px;
  border-bottom: 1px solid var(--ink-2);
  align-items: start;
}
.venue__row:last-of-type { border-bottom: 1px solid var(--ink-2); }
.venue__row > .mono {
  padding-top: 4px;
  color: var(--ink-soft);
}
.venue__val {
  font-family: var(--font-disp); font-weight: 600; font-size: 16px;
  color: var(--ink); margin-bottom: 4px; line-height: 1.3;
}
.venue__cta {
  padding: 18px 20px;
  display: grid; grid-template-columns: 1fr; gap: 10px;
}
.venue__cta .btn {
  min-width: 0;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.15;
}
.btn--map span {
  display: inline-block;
  transition: transform 160ms ease;
}
.btn--map:hover span { transform: translateX(4px); }
@media (max-width: 560px) {
  .venue__title { font-size: clamp(30px, 8vw, 36px); letter-spacing: -0.8px; }
  .venue__address { font-size: clamp(22px, 6vw, 28px); white-space: normal; }
  .venue__photo { aspect-ratio: 4 / 3; }
  .venue__row { grid-template-columns: 1fr; gap: 6px; padding: 15px 16px; }
  .venue__row > .mono { padding-top: 0; }
  .venue__cta { grid-template-columns: 1fr; padding: 16px; }
}

/* =====================================================
   PARTNER STATS (sponsor pitch metrics)
   ===================================================== */
/* =====================================================
   OFFER cards (sponsor specials)
   ===================================================== */
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.offer-grid--two {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .offer-grid { grid-template-columns: 1fr; } }
.offer {
  background: rgba(250,250,247,.04);
  border: 1px solid rgba(250,250,247,.14);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
  min-height: 360px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.offer::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(250,250,247,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(250,250,247,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .45;
  pointer-events: none;
}
.offer::after {
  content: "";
  position: absolute; width: 160px; height: 160px; right: -60px; top: -70px;
  background: radial-gradient(circle, rgba(184,51,42,.28) 0%, rgba(184,51,42,0) 70%);
  pointer-events: none;
  opacity: .65;
  transition: opacity 180ms ease, transform 180ms ease;
}
.offer:hover {
  background: rgba(250,250,247,.07);
  border-color: rgba(250,250,247,.3);
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(0,0,0,.2), 0 0 0 1px rgba(184,51,42,.16);
}
.offer:hover::after {
  opacity: 1;
  transform: scale(1.08);
}
.offer > * { position: relative; z-index: 1; }
.offer__brand {
  display: flex; align-items: center; gap: 18px;
  min-height: 116px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250,250,247,.14);
}
.offer__brand > span:last-child { min-width: 0; }
.offer__badge {
  align-self: flex-start;
  color: var(--paper);
  background: var(--beet);
  padding: 4px 10px; border-radius: 4px;
  font-size: 10px; letter-spacing: 1.4px;
}
.offer--action { border-color: rgba(184,51,42,.4); }
.offer__mark {
  width: 108px; height: 108px;
  display: grid; place-items: center;
  border: 1px solid rgba(250,250,247,.18);
  background: rgba(10,22,40,.55);
  box-shadow: inset 0 1px 0 rgba(250,250,247,.08);
  flex: 0 0 108px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.offer:hover .offer__mark {
  border-color: rgba(184,51,42,.55);
  box-shadow: inset 0 1px 0 rgba(250,250,247,.1), 0 0 22px rgba(184,51,42,.22);
}
.offer:hover .offer__mark img {
  transform: rotate(-3deg) scale(1.08);
  filter: drop-shadow(0 0 8px rgba(184,51,42,.55));
}
.offer__mark img {
  display: block;
  max-width: 100%;
  transition: transform 180ms ease, filter 180ms ease;
}
.offer__mark--lumi {
  border-radius: 18px;
}
.offer__mark--lumi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer__mark--mymeet {
  border-radius: 18px;
  background: rgba(250,250,247,.96);
  padding: 16px;
}
.offer__mark--mymeet img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offer__mark--action {
  border-radius: 18px;
  background: rgba(250,250,247,.96);
  padding: 14px;
}
.offer__mark--action img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offer__logo {
  display: block;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1;
  letter-spacing: -0.3px;
  color: var(--paper);
}
.offer__site {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.1px;
  color: rgba(250,250,247,.55);
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .offer__brand { min-height: 76px; gap: 14px; }
  .offer__mark {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
  }
  .offer__mark--action {
    padding: 12px;
  }
}
@media (max-width: 380px) {
  .offer__brand { align-items: flex-start; flex-direction: column; }
}
.offer__value {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .9;
  letter-spacing: -1.6px;
  color: var(--beet);
}
.offer__title {
  font-family: var(--font-disp); font-weight: 700; font-size: 20px;
  letter-spacing: -0.3px; line-height: 1.3; margin: 0;
  color: var(--paper);
}
.offer__lead {
  font-size: 13.5px; line-height: 1.55; color: rgba(250,250,247,.65);
  margin: 0 0 auto;
}
.offer__foot {
  padding-top: 12px; border-top: 1px dashed rgba(250,250,247,.14);
  display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap;
}
.offers__note {
  margin-top: 24px; font-size: 11px; letter-spacing: 1.2px;
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(60,179,113,.18), 0 0 0 0 rgba(60,179,113,0); }
  50% { box-shadow: 0 0 0 4px rgba(60,179,113,.14), 0 0 22px 2px rgba(60,179,113,.34); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =====================================================
   REGISTRATION form
   ===================================================== */
.register__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 30% 0%, rgba(184,51,42,.2), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(240,230,210,.08), transparent 50%);
  filter: blur(40px);
}
.regform {
  max-width: 920px;
  background: rgba(250,250,247,.04);
  border: 1px solid rgba(250,250,247,.14);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 36px);
  backdrop-filter: blur(12px);
  margin-bottom: 24px;
}
.regform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .regform__grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-family: var(--font-mono); font-weight: 500; font-size: 10.5px;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(250,250,247,.55);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(10,22,40,.5);
  border: 1px solid rgba(250,250,247,.18);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--font-body); font-size: 15px; color: var(--paper);
  outline: none;
  transition: border-color 140ms, background 140ms;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(250,250,247,.35); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--beet);
  background: rgba(10,22,40,.7);
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(250,250,247,.5) 50%),
                    linear-gradient(-45deg, transparent 50%, rgba(250,250,247,.5) 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.field select option { background: var(--ink); color: var(--paper); }
.field textarea { resize: vertical; min-height: 60px; }

.radio-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 600px) { .radio-row { grid-template-columns: 1fr; } }
.radio {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 12px 14px;
  background: rgba(10,22,40,.5);
  border: 1px solid rgba(250,250,247,.18);
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 140ms, background 140ms;
}
.radio:has(input:checked) {
  border-color: var(--beet);
  background: rgba(184,51,42,.08);
}
.radio input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(250,250,247,.4);
  margin: 0; flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.radio input[type="radio"]:checked {
  border-color: var(--beet);
}
.radio input[type="radio"]:checked::after {
  content: ""; position: absolute; inset: 3px;
  background: var(--beet); border-radius: 50%;
}

.checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; line-height: 1.5; color: rgba(250,250,247,.85);
  cursor: pointer;
}
.checkbox input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px;
  border: 1.5px solid rgba(250,250,247,.4);
  border-radius: 4px;
  background: rgba(10,22,40,.5);
  margin: 0; flex-shrink: 0;
  position: relative;
  cursor: pointer;
  margin-top: 2px;
}
.checkbox input[type="checkbox"]:checked {
  background: var(--beet); border-color: var(--beet);
}
.checkbox input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 6px; top: 2px;
  width: 5px; height: 10px;
  border: solid var(--paper);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.regform__cta {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 8px;
}

/* =====================================================
   PRINT — strip animations and dark sections
   ===================================================== */
@media print {
  .nav, .nav-sheet, .slogan-bar { display: none; }
  .section--dark { background: var(--paper); color: var(--ink); }
}

/* =====================================================
   Reduce motion (a11y)
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  .slogan-bar__track,
  .trust__track,
  .term__cursor::after { animation: none; }
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-page {
  background: var(--paper);
  color: var(--ink);
}
.legal-page .nav {
  margin-bottom: 0;
}
.legal-main {
  padding: clamp(48px, 7vw, 96px) 0;
}
.legal-wrap {
  max-width: 980px;
}
.legal-hero {
  padding: clamp(28px, 5vw, 56px) 0 28px;
  border-bottom: 1px solid rgba(10,22,40,.16);
  margin-bottom: 28px;
}
.legal-hero .tag {
  margin-bottom: 18px;
}
.legal-hero .h1 {
  max-width: 860px;
}
.legal-hero .lead {
  margin-top: 16px;
  max-width: 680px;
}
.legal-content {
  background: rgba(250,250,247,.72);
  border: 1px solid rgba(10,22,40,.14);
  padding: clamp(22px, 4vw, 48px);
}
.legal-content p,
.legal-content li,
.legal-content td,
.legal-content th {
  font-size: 16px;
  line-height: 1.72;
}
.legal-content p {
  margin: 0 0 14px;
}
.legal-content h2 {
  font-family: var(--font-disp);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -.6px;
  margin: 34px 0 14px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  font-family: var(--font-disp);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.25;
  margin: 26px 0 12px;
}
.legal-content ul {
  margin: 0 0 18px 22px;
  padding: 0;
}
.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0 28px;
  border: 1px solid rgba(10,22,40,.16);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: var(--paper);
}
.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(10,22,40,.12);
  border-right: 1px solid rgba(10,22,40,.12);
}
.legal-table th {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.legal-links a,
.cookie-toggle {
  border: 1px solid rgba(10,22,40,.18);
  background: var(--paper-2);
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cookie-settings-panel {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(10,22,40,.16);
  background: var(--paper-2);
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}
.cookie-toggle input {
  width: 18px;
  height: 18px;
}
@media (max-width: 640px) {
  .legal-content { padding: 18px; }
  .legal-content p, .legal-content li, .legal-content td, .legal-content th { font-size: 14px; }
}

.legal-embedded-doc {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(10,22,40,.22);
  scroll-margin-top: 96px;
}
.legal-embedded-doc > h2:first-child {
  margin-top: 0;
}
