/* ============================================================
   GMR Webinar Landing — component styles.
   Builds on colors_and_type.css + site.css (GMR tokens).
   ============================================================ */

:root {
  /* hero accent — overridable by Tweaks */
  --acc: #34D399;
  --acc-soft: rgba(52, 211, 153, 0.12);
  --acc-line: rgba(52, 211, 153, 0.40);

  /* density — overridable by Tweaks */
  --sec-pad: 104px;

  --c-brynx:     #3B82F6;
  --c-dtwin:     #6B6B80;
  --c-marketear: #8B5CF6;
  --c-influrep:  #F59E0B;
  --c-geoky:     #EC4899;
  --c-klenux:    #06B6D4;

  /* Nexalyse / KPI6 (event organizer) — KPI6 blue */
  --nx-accent:   #3E68AE;
}

/* Nexalyse wordmark — GMR-style portmanteau split */
.nx-wm { font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; display: inline-block; }
.nx-wm .a { color: var(--nx-accent); }
.nx-wm .g { color: var(--ink-2); }

/* organizer row (footer) */
.org-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid var(--hair); }
.org-row .org-label { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-5); }
.org-row .nx-wm { font-size: 21px; }
.org-row .org-by { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); }
.org-row .org-kpi { height: 22px; width: auto; display: block; }

/* header brand — Nexalyse wordmark + inline KPI6 */
.brand-nx { display: inline-flex; align-items: center; gap: 13px; }
.brand-nx .nx-wm { font-size: 21px; }
.brand-nx .tag { display: inline-flex; align-items: center; gap: 7px; }
.brand-nx .brand-kpi { height: 15px; width: auto; display: block; opacity: 0.92; }
@media (max-width: 560px) { .brand-nx .tag { display: none; } }

* { box-sizing: border-box; }
body { margin: 0; overflow-x: hidden; }

.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

.sec { padding: var(--sec-pad) 0; border-top: 1px solid var(--hair); position: relative; }
.sec.flush { border-top: 0; }
.sec.raised { background: var(--paper-2); }

/* ---- section eyebrow + number ---- */
.mlabel {
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.mlabel::before {
  content: attr(data-num);
  color: var(--ink-5);
  border: 1px solid var(--hair-2);
  border-radius: 2px;
  padding: 3px 7px;
  font-size: 11px;
}

/* ---- display type ---- */
.disp {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
  margin: 0;
}
.disp .muted { color: var(--ink-4); }
.disp .acc { color: var(--acc); }

.h-xl { font-size: clamp(46px, 8vw, 108px); }
.h-l  { font-size: clamp(36px, 5.4vw, 72px); line-height: 1.02; letter-spacing: -0.03em; }
.h-m  { font-size: clamp(28px, 3.6vw, 48px); line-height: 1.08; letter-spacing: -0.025em; }

.lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: var(--ink-3); text-wrap: pretty; max-width: 760px; margin: 0; }
.lead strong { color: var(--ink); font-weight: 500; }
.body { font-size: 16px; line-height: 1.6; color: var(--ink-3); text-wrap: pretty; margin: 0; }
.body strong { color: var(--ink-2); font-weight: 500; }

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6,6,10,0.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hair);
}
.hdr .row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.hdr .brand { display: inline-flex; align-items: center; gap: 13px; }
.hdr .brand img { height: 26px; display: block; }
.hdr .brand .tag {
  font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-5);
  border-left: 1px solid var(--hair-2); padding-left: 13px;
}
.hdr nav { display: flex; align-items: center; gap: 30px; }
.hdr nav a { font-size: 13px; font-weight: 500; color: var(--ink-3); transition: color 180ms; }
.hdr nav a:hover { color: var(--ink); }
.hdr nav .navlinks { display: flex; gap: 30px; }
@media (max-width: 820px) { .hdr nav .navlinks { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 22px; border: 1px solid transparent; border-radius: 2px;
  cursor: pointer; transition: all 200ms var(--gmr-ease, cubic-bezier(0.2,0.7,0.2,1));
  background: transparent; color: var(--ink-2); text-decoration: none; white-space: nowrap;
}
.btn .ar { transition: transform 200ms var(--gmr-ease, cubic-bezier(0.2,0.7,0.2,1)); }
.btn:hover .ar { transform: translateX(3px); }
.btn-primary { background: var(--acc); color: #06060A; border-color: var(--acc); font-weight: 600; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-light { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-light:hover { background: var(--ink-2); }
.btn-ghost { border-color: var(--hair-2); color: var(--ink-2); }
.btn-ghost:hover { border-color: var(--ink-2); color: var(--ink); background: var(--paper-2); }

/* ============================================================
   LIVE PILL
   ============================================================ */
.kicker {
  display: inline-flex; align-items: center; gap: 0;
  flex-wrap: wrap;
  font-family: ui-monospace, monospace; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
  border: 1px solid var(--hair-2); border-radius: 2px;
  overflow: hidden;
}
.kicker .seg { padding: 8px 14px; border-right: 1px solid var(--hair); display: inline-flex; align-items: center; gap: 9px; }
.kicker .seg:last-child { border-right: 0; color: var(--ink-4); }
.kicker .seg.live { color: var(--ink); background: rgba(255,107,107,0.06); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #FF5C5C; position: relative; }
.live-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid #FF5C5C; opacity: 0.6;
  animation: ping 1.8s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping { 75%,100% { transform: scale(2.2); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .live-dot::after { animation: none; } }
@media (max-width: 560px) { .kicker .seg { padding: 7px 11px; font-size: 10px; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: 72px; padding-bottom: 96px; }
.hero .glow {
  position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 560px; pointer-events: none;
  background: radial-gradient(ellipse at center, var(--acc-soft), transparent 62%);
  filter: blur(30px); opacity: 0.9;
}
.hero .inner { position: relative; display: flex; flex-direction: column; gap: 32px; }
.hero .sub { max-width: 720px; }
.hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero .reassure {
  font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-4); display: inline-flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.hero .reassure .sep { color: var(--ink-5); }

/* hero monogram strip (shared / variant) */
.mono-strip { display: flex; gap: 10px; flex-wrap: wrap; }
.mono-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 13px 9px 11px; border: 1px solid var(--hair); border-radius: 3px;
  background: var(--paper); transition: border-color 200ms, transform 200ms;
}
.mono-chip:hover { border-color: var(--hair-2); transform: translateY(-2px); }
.mono-chip img { height: 13px; width: auto; display: block; }
.mono-chip .nm { font-size: 12px; font-weight: 500; color: var(--ink-2); letter-spacing: 0.01em; }
.mono-chip .pin { width: 5px; height: 5px; border-radius: 50%; }

/* hero V2 — big monogram board */
.mono-board {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--hair); border: 1px solid var(--hair); border-radius: 6px; overflow: hidden;
}
@media (max-width: 900px) { .mono-board { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .mono-board { grid-template-columns: repeat(2, 1fr); } }
.mono-board .cell {
  background: var(--paper); padding: 26px 18px 20px; display: flex; flex-direction: column; gap: 14px;
  min-height: 150px; transition: background 220ms;
}
.mono-board .cell:hover { background: var(--paper-3); }
.mono-board .cell img { height: 19px; width: auto; align-self: flex-start; }
.mono-board .cell .role { font-size: 12px; color: var(--ink-3); line-height: 1.4; margin-top: auto; }
.mono-board .cell .dpt { font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }

/* hero V3 — agent grid (39 cells) */
.agent-grid { display: grid; grid-template-columns: repeat(13, 1fr); gap: 6px; max-width: 720px; }
@media (max-width: 720px) { .agent-grid { grid-template-columns: repeat(10, 1fr); } }
.agent-cell {
  aspect-ratio: 1; border: 1px solid var(--hair); border-radius: 2px;
  background: var(--paper-2); position: relative;
}
.agent-cell.on { border-color: var(--acc-line); background: var(--acc-soft); }
.agent-cell.host { background: var(--ink); border-color: var(--ink); }
.agent-cell.host::after {
  content: ""; position: absolute; inset: 0; margin: auto; width: 5px; height: 5px;
  border-radius: 50%; background: var(--acc);
}
.agent-legend { display: flex; gap: 22px; flex-wrap: wrap; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.04em; color: var(--ink-4); }
.agent-legend .it { display: inline-flex; align-items: center; gap: 8px; }
.agent-legend .sw { width: 11px; height: 11px; border: 1px solid var(--acc-line); background: var(--acc-soft); border-radius: 2px; }
.agent-legend .sw.host { background: var(--ink); border-color: var(--ink); }

/* ============================================================
   WOW — two blocks + synthesis
   ============================================================ */
.wow-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 6px; overflow: hidden; }
@media (max-width: 880px) { .wow-grid { grid-template-columns: 1fr; } }
.wow-block { background: var(--paper); padding: 40px 36px; display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 560px) { .wow-block { padding: 30px 24px; } }
.wow-block .tag { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); }
.wow-block h3 { margin: 0; font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); }
.wow-block .big-num { font-weight: 500; font-size: clamp(64px, 9vw, 110px); line-height: 0.92; letter-spacing: -0.04em; color: var(--ink); }
.wow-block .big-num .x { color: var(--ink-4); font-size: 0.42em; letter-spacing: 0; }
.wow-synth {
  margin-top: 26px; text-align: center; font-size: clamp(20px, 2.6vw, 32px); font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.3; color: var(--ink-3); text-wrap: balance;
  max-width: 980px; margin-left: auto; margin-right: auto;
}
.wow-synth .em { color: var(--ink); }

/* roster ticker inside wow block */
.roster { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.roster .r {
  font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.02em;
  color: var(--ink-3); padding: 5px 9px; border: 1px solid var(--hair); border-radius: 2px;
  background: var(--paper-2);
}
.roster .r.hi { color: var(--ink); border-color: var(--hair-2); }

/* twin viz dots */
.twin-viz { display: grid; grid-template-columns: repeat(16, 1fr); gap: 4px; margin-top: auto; }
.twin-viz .d { aspect-ratio: 1; border-radius: 50%; background: rgba(107,107,128,0.28); }
.twin-viz .d.on { background: var(--c-dtwin); }

/* ============================================================
   PROBLEM
   ============================================================ */
.prob-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
@media (max-width: 880px) { .prob-grid { grid-template-columns: 1fr; gap: 36px; } }
.prob-list { display: flex; flex-direction: column; }
.prob-row { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--hair); align-items: start; }
.prob-row:first-child { border-top: 0; }
.prob-row .n { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--ink-5); padding-top: 5px; }
.prob-row .t { font-size: 17px; line-height: 1.5; color: var(--ink-2); }
.prob-row .t strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   RAAS / solution
   ============================================================ */
.raas-deliver { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.raas-deliver .chip {
  font-size: 13px; font-weight: 500; color: var(--ink-2); padding: 9px 14px;
  border: 1px solid var(--hair-2); border-radius: 2px; background: var(--paper-2);
  display: inline-flex; align-items: center; gap: 9px;
}
.raas-deliver .chip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--acc); }

/* ============================================================
   DEPARTMENTS — 6 cards
   ============================================================ */
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 6px; overflow: hidden; }
@media (max-width: 920px) { .dept-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dept-grid { grid-template-columns: 1fr; } }
.dept {
  background: var(--paper); padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
  position: relative; min-height: 252px; transition: background 240ms; overflow: hidden;
}
.dept::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--dept-c); transform: scaleX(0); transform-origin: left; transition: transform 320ms var(--gmr-ease, cubic-bezier(0.2,0.7,0.2,1));
}
.dept:hover { background: var(--paper-3); }
.dept:hover::before { transform: scaleX(1); }
.dept .top { display: flex; align-items: center; justify-content: space-between; }
.dept .mono-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 34px; border: 1px solid var(--hair-2); border-radius: 4px; background: var(--paper-2);
}
.dept .mono-badge img { height: 14px; width: auto; }
.dept .dept-kind { font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dept-c); }
.dept h3 { margin: 0; font-size: 21px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink); }
.dept .promise { font-size: 14px; font-weight: 500; color: var(--ink-2); line-height: 1.4; font-style: italic; }
.dept .desc { font-size: 13.5px; line-height: 1.55; color: var(--ink-3); margin: 0; margin-top: auto; }

/* ============================================================
   AGENDA timeline
   ============================================================ */
.agenda { display: flex; flex-direction: column; }
.ag-row {
  display: grid; grid-template-columns: 92px 1fr; gap: 28px; padding: 24px 0;
  border-top: 1px solid var(--hair); align-items: start; transition: background 200ms;
}
.ag-row:hover { background: var(--paper-2); }
.ag-row .time {
  font-family: ui-monospace, monospace; font-size: 15px; font-weight: 500; color: var(--ink);
  letter-spacing: 0.01em; position: relative; padding-left: 18px;
}
.ag-row .time::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--acc);
}
.ag-row.qa .time::before { background: var(--ink-4); }
.ag-row .what { font-size: 17px; line-height: 1.4; color: var(--ink-2); }
.ag-row .what strong { color: var(--ink); font-weight: 500; }
@media (max-width: 560px) { .ag-row { grid-template-columns: 1fr; gap: 8px; } .ag-row .time::before { display: none; } .ag-row .time { padding-left: 0; } }

/* ============================================================
   QUOTES / opportunity
   ============================================================ */
.epochs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 6px; overflow: hidden; margin-top: 8px; }
@media (max-width: 760px) { .epochs { grid-template-columns: repeat(2, 1fr); } }
.epoch { background: var(--paper); padding: 26px 22px; display: flex; flex-direction: column; gap: 8px; }
.epoch .e-n { font-family: ui-monospace, monospace; font-size: 11px; color: var(--ink-5); letter-spacing: 0.08em; }
.epoch .e-t { font-size: 17px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.epoch .e-d { font-size: 13px; line-height: 1.5; color: var(--ink-3); }
.epoch.now { background: var(--acc-soft); }
.epoch.now .e-t { color: var(--acc); }

.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }
.quote { border: 1px solid var(--hair); border-radius: 6px; padding: 30px 28px; background: var(--paper-2); display: flex; flex-direction: column; gap: 18px; }
.quote .q { font-size: clamp(18px, 1.9vw, 23px); line-height: 1.4; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
.quote .q::before { content: "\201C"; color: var(--acc); margin-right: 2px; }
.quote .who { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: 0.04em; color: var(--ink-3); }
.quote .who b { color: var(--ink); font-weight: 600; }
.punch { font-size: clamp(20px, 2.4vw, 30px); font-weight: 500; line-height: 1.35; letter-spacing: -0.02em; color: var(--ink-3); text-wrap: pretty; }
.punch .em { color: var(--ink); }
.punch .acc { color: var(--acc); }

/* ============================================================
   SPEAKERS teaser
   ============================================================ */
.spk-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
@media (max-width: 880px) { .spk-grid { grid-template-columns: 1fr; gap: 36px; } }
.spk-host { border: 1px solid var(--hair); border-radius: 6px; padding: 30px; background: var(--paper-2); }
.spk-host .ph {
  width: 100%; aspect-ratio: 1/1; border: 1px solid var(--hair-2); border-radius: 4px;
  background:
    repeating-linear-gradient(135deg, rgba(228,228,232,0.04) 0 2px, transparent 2px 9px),
    var(--paper-3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; overflow: hidden;
}
.spk-host .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.spk-host .ph .ph-t { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.08em; color: var(--ink-5); text-transform: uppercase; }
.spk-host .nm { font-size: 22px; font-weight: 500; color: var(--ink); letter-spacing: -0.015em; }
.spk-host .rl { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: 0.04em; color: var(--ink-3); margin-top: 4px; }
.spk-host .live-tag { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }

.spk-others { display: flex; flex-direction: column; gap: 18px; }
.mystery-row { display: flex; gap: 10px; }
.mystery-tile {
  flex: 1; aspect-ratio: 3/4; border: 1px solid var(--hair); border-radius: 4px;
  background: var(--paper-2); position: relative; overflow: hidden;
}
.mystery-tile::before {
  content: "?"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace; font-size: 28px; color: var(--ink-5); font-weight: 500;
}
.mystery-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,6,10,0.5));
}
.mystery-tile.more { display: flex; align-items: center; justify-content: center; }
.mystery-tile.more::before { content: "+34"; font-size: 20px; color: var(--ink-4); }
.hints { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--hair); border-radius: 6px; overflow: hidden; }
.hint { display: grid; grid-template-columns: 26px 1fr; gap: 14px; padding: 16px 20px; border-top: 1px solid var(--hair); align-items: center; background: var(--paper); }
.hint:first-child { border-top: 0; }
.hint .hi-i { width: 6px; height: 6px; border-radius: 50%; background: var(--acc); }
.hint .hi-t { font-size: 14.5px; color: var(--ink-2); line-height: 1.4; }
.hint .hi-t strong { color: var(--ink); font-weight: 500; }
.spk-aside { font-style: italic; font-size: 15px; color: var(--ink-4); border-left: 2px solid var(--acc-line); padding-left: 16px; }

/* ============================================================
   FINAL CTA + FORM
   ============================================================ */
.final { position: relative; overflow: hidden; text-align: center; }
.final .glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1000px; height: 420px;
  background: radial-gradient(ellipse at center, var(--acc-soft), transparent 60%); filter: blur(34px); pointer-events: none;
}
.final .inner { position: relative; max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 26px; }

.form-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 8px; overflow: hidden; text-align: left; }
@media (max-width: 820px) { .form-wrap { grid-template-columns: 1fr; } }
.form-side { background: var(--paper-2); padding: 40px 36px; display: flex; flex-direction: column; gap: 22px; }
.form-side .when { display: flex; flex-direction: column; gap: 4px; }
.form-side .when .d { font-size: 30px; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; }
.form-side .when .h { font-family: ui-monospace, monospace; font-size: 13px; color: var(--ink-3); letter-spacing: 0.04em; }
.form-side .facts { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.form-side .fact { display: grid; grid-template-columns: 20px 1fr; gap: 12px; font-size: 14px; color: var(--ink-3); line-height: 1.4; align-items: start; }
.form-side .fact .fi { color: var(--acc); padding-top: 1px; }

.form-main { background: var(--paper); padding: 40px 36px; }
@media (max-width: 560px) { .form-side, .form-main { padding: 30px 24px; } }
.form-main h3 { margin: 0 0 22px; font-size: 24px; font-weight: 500; color: var(--ink); letter-spacing: -0.015em; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); }
.field input, .field select {
  font-family: inherit; font-size: 15px; color: var(--ink); background: var(--paper-2);
  border: 1px solid var(--hair-2); border-radius: 3px; padding: 13px 14px; width: 100%;
  transition: border-color 180ms, background 180ms; outline: none;
}
.field input::placeholder { color: var(--ink-5); }
.field input:focus, .field select:focus { border-color: var(--acc); background: var(--paper-3); }
.field.err input, .field.err select { border-color: #FF6B6B; }
.field .msg { font-size: 12px; color: #FF6B6B; min-height: 0; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row2 { grid-template-columns: 1fr; } }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 16px; }
.privacy { font-size: 12px; line-height: 1.5; color: var(--ink-5); margin-top: 14px; }
.privacy a { color: var(--ink-4); text-decoration: underline; text-underline-offset: 2px; }

/* confirmation */
.confirm { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 16px 0; }
.confirm .check {
  width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--acc-line); background: var(--acc-soft);
  display: flex; align-items: center; justify-content: center; color: var(--acc); font-size: 30px; font-weight: 500;
}
.confirm h3 { margin: 0; font-size: 28px; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; }
.confirm p { margin: 0; font-size: 15px; color: var(--ink-3); line-height: 1.55; max-width: 420px; }
.confirm .cal { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.ftr { border-top: 1px solid var(--hair); padding: 56px 0 40px; }
.ftr .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 44px; }
.ftr .brand img { height: 30px; display: block; margin-bottom: 16px; }
.ftr .brand p { font-size: 13px; color: var(--ink-4); max-width: 300px; line-height: 1.55; margin: 0; }
.ftr .cols { display: flex; gap: 56px; flex-wrap: wrap; }
.ftr .col { display: flex; flex-direction: column; gap: 11px; min-width: 130px; }
.ftr .col .ch { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-5); margin-bottom: 3px; }
.ftr .col a, .ftr .col span.li { font-size: 13px; color: var(--ink-3); transition: color 180ms; }
.ftr .col a:hover { color: var(--ink); }
.ftr .bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--hair); }
.ftr .bottom .mono { font-family: ui-monospace, monospace; font-size: 11px; color: var(--ink-5); letter-spacing: 0.04em; }

/* footer legal disclaimer */
.ftr-disclaimer { max-width: 980px; margin: 0 0 22px; padding-top: 22px; border-top: 1px solid var(--hair); font-size: 11.5px; line-height: 1.65; color: var(--ink-5); text-wrap: pretty; }
.ftr-legal-links a { color: var(--ink-4); transition: color 180ms; }
.ftr-legal-links a:hover { color: var(--ink-2); }

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-main { max-width: 820px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .legal-main { padding: 0 22px; } }
.legal-hero { padding: 80px 0 48px; border-bottom: 1px solid var(--hair); margin-bottom: 8px; }
.legal-hero .mlabel { margin-bottom: 20px; }
.legal-hero h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.0; color: var(--ink); margin: 0; }
.legal-hero .sub { margin-top: 18px; font-size: 16px; line-height: 1.6; color: var(--ink-3); max-width: 640px; }
.legal-sec { padding: 40px 0; border-top: 1px solid var(--hair); }
.legal-sec:first-of-type { border-top: 0; }
.legal-sec h2 { font-family: ui-monospace, "JetBrains Mono", monospace; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acc); font-weight: 500; margin: 0 0 20px; }
.legal-sec p { font-size: 15px; line-height: 1.7; color: var(--ink-3); margin: 0 0 14px; text-wrap: pretty; max-width: 680px; }
.legal-sec p:last-child { margin-bottom: 0; }
.legal-sec strong { color: var(--ink-2); font-weight: 500; }
.legal-dl { display: grid; grid-template-columns: 220px 1fr; gap: 0; border: 1px solid var(--hair); border-radius: 6px; overflow: hidden; }
@media (max-width: 560px) { .legal-dl { grid-template-columns: 1fr; } }
.legal-dl .row { display: contents; }
.legal-dl dt { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: 0.04em; color: var(--ink-4); padding: 14px 18px; border-top: 1px solid var(--hair); background: var(--paper-2); text-transform: uppercase; }
.legal-dl dd { font-size: 14.5px; color: var(--ink-2); padding: 14px 18px; border-top: 1px solid var(--hair); margin: 0; }
@media (max-width: 560px) { .legal-dl dd { border-top: 0; padding-top: 0; } }
.legal-dl .row:first-child dt, .legal-dl .row:first-child dd { border-top: 0; }
.legal-group { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.legal-group li { display: grid; grid-template-columns: 220px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--hair); align-items: baseline; }
@media (max-width: 560px) { .legal-group li { grid-template-columns: 1fr; gap: 4px; } }
.legal-group li:first-child { border-top: 0; }
.legal-group .ent { font-weight: 500; color: var(--ink); font-size: 15px; }
.legal-group .role { font-size: 14px; color: var(--ink-3); line-height: 1.5; }
.legal-contact { border: 1px solid var(--hair); border-radius: 6px; background: var(--paper-2); padding: 24px 26px; }
.legal-contact .nm { font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.legal-contact p { font-size: 14.5px; line-height: 1.6; color: var(--ink-3); margin: 0; }
.legal-updated { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: 0.04em; color: var(--ink-5); padding: 32px 0 8px; }

/* ============================================================
   v2 ADDITIONS
   ============================================================ */
/* hero static date reminder */
.date-reminder { display: inline-flex; align-items: center; gap: 12px; margin-top: 14px; padding: 13px 18px; border: 1px solid var(--hair); border-radius: 4px; background: var(--paper-2); font-family: ui-monospace, "JetBrains Mono", Menlo, monospace; font-size: 13px; letter-spacing: 0.04em; flex-wrap: wrap; }
.date-reminder .dr-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); }
.date-reminder .dr-d { color: var(--ink); font-weight: 500; }
.date-reminder .dr-h { color: var(--ink-3); }
.date-reminder .dr-sep { color: var(--ink-5); }

/* quote source */
.quote .who .src { color: var(--ink-5); }

/* speakers — host cards row + mystery split */
.spk-hosts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
@media (max-width: 880px) { .spk-hosts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .spk-hosts { grid-template-columns: 1fr; } }
.spk-mystery { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .spk-mystery { grid-template-columns: 1fr; gap: 32px; } }
.mystery-col { display: flex; flex-direction: column; gap: 16px; }
.mystery-label { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-5); }

/* special guest card */
.guest-card { margin-top: 28px; border: 1px solid var(--acc-line); border-radius: 8px; background: linear-gradient(180deg, var(--acc-soft), transparent); padding: 34px 36px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 560px) { .guest-card { padding: 26px 24px; } }
.guest-card .guest-eyebrow { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acc); }
.guest-card .guest-copy { font-size: clamp(18px, 2vw, 25px); line-height: 1.4; color: var(--ink-2); letter-spacing: -0.01em; max-width: 880px; margin: 0; text-wrap: pretty; }
.guest-card .guest-copy strong { color: var(--ink); font-weight: 500; }
.guest-wave { display: flex; align-items: flex-end; gap: 4px; height: 32px; margin-top: 2px; }
.guest-wave i { width: 4px; background: var(--acc); border-radius: 2px; height: 30%; animation: gw 1.4s ease-in-out infinite; opacity: 0.7; }
@keyframes gw { 0%,100% { height: 16%; } 50% { height: 100%; } }
@media (prefers-reduced-motion: reduce) { .guest-wave i { animation: none; height: 55%; } }

/* per chi è */
.perchi-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: start; }
@media (max-width: 880px) { .perchi-grid { grid-template-columns: 1fr; gap: 32px; } }
.perchi-not { margin-top: 10px; border-left: 2px solid var(--hair-2); padding-left: 16px; display: flex; flex-direction: column; gap: 5px; }
.perchi-not .pn-k { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); }
.perchi-not .pn-t { font-size: 15px; color: var(--ink-3); line-height: 1.5; }
.perchi-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.perchi-list li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 20px 0; border-top: 1px solid var(--hair); align-items: start; }
.perchi-list li:first-child { border-top: 0; }
.perchi-list .pc-i { color: var(--acc); font-size: 15px; padding-top: 2px; }
.perchi-list .pc-t { font-size: 17px; line-height: 1.5; color: var(--ink-2); }
.perchi-list .pc-t strong { color: var(--ink); font-weight: 500; }

/* launch block B — shared organico */
.launch-b { display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: center; border: 1px solid var(--hair); border-radius: 8px; background: var(--paper-2); padding: 40px; }
@media (max-width: 880px) { .launch-b { grid-template-columns: 1fr; gap: 32px; padding: 30px 24px; } }
.launch-b .lb-text { display: flex; flex-direction: column; gap: 16px; }
.launch-b .lb-text .tag { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--acc); }
.lb-stats { display: flex; gap: 36px; margin-top: 8px; }
.lb-stat { display: flex; flex-direction: column; gap: 5px; }
.lb-stat .v { font-size: clamp(40px, 5vw, 60px); font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.lb-stat .k { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-4); }
.lb-viz { display: flex; flex-direction: column; gap: 8px; padding: 18px; border: 1px solid var(--hair); border-radius: 6px; background: var(--paper); }
.lb-prod { display: flex; align-items: center; gap: 12px; padding: 10px 13px; border: 1px solid var(--hair); border-radius: 4px; background: var(--paper-2); }
.lb-prod .lb-mono { width: 36px; height: 22px; display: inline-flex; align-items: center; justify-content: center; }
.lb-prod .lb-mono img { height: 12px; width: auto; }
.lb-prod .lb-name { font-size: 14px; font-weight: 500; color: var(--ink-2); }
.lb-prod .lb-dot { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: var(--dept-c); }
.lb-shared { text-align: center; margin-top: 4px; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--acc); }

/* stack table */
.stack-wrap .mlabel { color: var(--ink-4); }
.stack-table { width: 100%; border-collapse: collapse; border: 1px solid var(--hair); background: var(--paper); border-radius: 6px; overflow: hidden; }
.stack-table th, .stack-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--hair); }
.stack-table thead th { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); font-weight: 500; background: var(--paper-3); }
.stack-table tbody tr { transition: background 180ms; }
.stack-table tbody tr:hover { background: var(--paper-2); }
.stack-table tbody tr:last-child td { border-bottom: 0; }
.stack-table td { font-size: 14px; color: var(--ink-3); line-height: 1.5; }
.stack-table td:first-child { width: 200px; }
.st-prod { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink); font-size: 15px; }
.st-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
@media (max-width: 560px) { .stack-table td:first-child { width: auto; } .stack-table th, .stack-table td { padding: 12px 14px; } }

/* no-JS fallback */
.nojs-fallback { display: none; }
html:not(.js) .nojs-fallback { display: block; }
html:not(.js) #root { display: none; }

/* ============================================================
   HubSpot form — dark theme overrides
   ============================================================ */
.form-main .hs-form-frame { font-family: "DM Sans", sans-serif; }
/* cross-origin iframe embed: guarantee width + room even if auto-resize is slow/blocked */
.form-main .hs-form-frame iframe { width: 100% !important; min-height: 540px !important; border: 0 !important; display: block; color-scheme: normal; }
.form-main .hs-form-frame form { display: flex; flex-direction: column; gap: 16px; }
.form-main .hs-form-frame fieldset { max-width: none !important; margin: 0 !important; }
.form-main .hs-form-frame .hs-form-field { margin-bottom: 4px; }
.form-main .hs-form-frame label,
.form-main .hs-form-frame legend {
  font-family: ui-monospace, "JetBrains Mono", monospace !important;
  font-size: 11px !important; letter-spacing: 0.08em !important; text-transform: uppercase !important;
  color: var(--ink-4) !important; font-weight: 500 !important; line-height: 1.4 !important;
  display: block; margin-bottom: 7px;
}
.form-main .hs-form-frame label .hs-form-required { color: #FF6B6B !important; margin-left: 3px; }
.form-main .hs-form-frame input[type="text"],
.form-main .hs-form-frame input[type="email"],
.form-main .hs-form-frame input[type="tel"],
.form-main .hs-form-frame input[type="number"],
.form-main .hs-form-frame textarea,
.form-main .hs-form-frame select {
  font-family: "DM Sans", sans-serif !important; font-size: 15px !important; color: var(--ink) !important;
  background: var(--paper-2) !important; border: 1px solid var(--hair-2) !important; border-radius: 3px !important;
  padding: 13px 14px !important; width: 100% !important; box-sizing: border-box !important;
  transition: border-color 180ms, background 180ms !important; outline: none !important; box-shadow: none !important;
  -webkit-appearance: none; appearance: none;
}
.form-main .hs-form-frame select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2362626E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: right 14px center !important; padding-right: 36px !important; }
.form-main .hs-form-frame input::placeholder,
.form-main .hs-form-frame textarea::placeholder { color: var(--ink-5) !important; }
.form-main .hs-form-frame input:focus,
.form-main .hs-form-frame textarea:focus,
.form-main .hs-form-frame select:focus { border-color: var(--acc) !important; background: var(--paper-3) !important; }
.form-main .hs-form-frame .hs-fieldtype-checkbox ul,
.form-main .hs-form-frame .hs-fieldtype-booleancheckbox ul,
.form-main .hs-form-frame .inputs-list { list-style: none !important; margin: 0 !important; padding: 0 !important; display: flex; flex-direction: column; gap: 8px; }
.form-main .hs-form-frame .hs-form-booleancheckbox-display,
.form-main .hs-form-frame .hs-form-checkbox-display {
  display: flex !important; align-items: flex-start; gap: 9px;
  font-family: "DM Sans", sans-serif !important; font-size: 13px !important; text-transform: none !important;
  letter-spacing: 0 !important; color: var(--ink-3) !important; line-height: 1.45 !important;
}
.form-main .hs-form-frame .hs-form-booleancheckbox-display input,
.form-main .hs-form-frame .hs-form-checkbox-display input { width: auto !important; margin-top: 2px; accent-color: var(--acc); }
.form-main .hs-form-frame a { color: var(--acc) !important; text-decoration: underline; text-underline-offset: 2px; }
.form-main .hs-form-frame .hs-button,
.form-main .hs-form-frame input[type="submit"] {
  font-family: "DM Sans", sans-serif !important; font-size: 14px !important; font-weight: 600 !important;
  letter-spacing: 0.04em !important; color: #06060A !important; background: var(--acc) !important;
  border: 1px solid var(--acc) !important; border-radius: 2px !important; padding: 15px 22px !important;
  width: 100% !important; cursor: pointer !important; transition: filter 200ms !important;
  text-transform: none !important; box-shadow: none !important; margin-top: 6px;
}
.form-main .hs-form-frame .hs-button:hover,
.form-main .hs-form-frame input[type="submit"]:hover { filter: brightness(1.08) !important; }
.form-main .hs-form-frame .hs-error-msg,
.form-main .hs-form-frame .hs-error-msgs label { color: #FF6B6B !important; font-size: 12px !important; text-transform: none !important; letter-spacing: 0 !important; font-family: "DM Sans", sans-serif !important; }
.form-main .hs-form-frame .legal-consent-container,
.form-main .hs-form-frame .hs-richtext { font-size: 12px !important; line-height: 1.5 !important; color: var(--ink-5) !important; }
.form-main .hs-form-frame .submitted-message,
.form-main .hs-form-frame .hs-form__virality-link { color: var(--ink-2) !important; font-size: 15px !important; line-height: 1.55; }

/* ============================================================
   reveal
   ============================================================ */
.rv, .rv-st > * { transition: opacity 600ms cubic-bezier(0.16,1,0.3,1), transform 600ms cubic-bezier(0.16,1,0.3,1); }
html.js .rv:not(.in) { opacity: 0; transform: translateY(10px); }
html.js .rv-st:not(.in) > * { opacity: 0; transform: translateY(10px); }
.rv-st.in > *:nth-child(1){transition-delay:0ms}.rv-st.in > *:nth-child(2){transition-delay:55ms}.rv-st.in > *:nth-child(3){transition-delay:110ms}.rv-st.in > *:nth-child(4){transition-delay:165ms}.rv-st.in > *:nth-child(5){transition-delay:220ms}.rv-st.in > *:nth-child(6){transition-delay:275ms}
@media (prefers-reduced-motion: reduce) { html.js .rv:not(.in), html.js .rv-st:not(.in) > * { opacity: 1; transform: none; transition: none; } }
