/* ---- css/tokens.css ---- */

@font-face { font-family: 'Poppins'; font-weight: 300; font-style: normal; font-display: swap; src: url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 400; font-style: italic; font-display: swap; src: url('../fonts/Poppins-Italic.woff2') format('woff2'), url('../fonts/Poppins-Italic.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 500; font-style: normal; font-display: swap; src: url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 600; font-style: normal; font-display: swap; src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 700; font-style: italic; font-display: swap; src: url('../fonts/Poppins-BoldItalic.woff2') format('woff2'), url('../fonts/Poppins-BoldItalic.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 800; font-style: normal; font-display: swap; src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'), url('../fonts/Poppins-ExtraBold.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 900; font-style: normal; font-display: swap; src: url('../fonts/Poppins-Black.woff2') format('woff2'), url('../fonts/Poppins-Black.ttf') format('truetype'); }

:root {
  
  --red-1: #fad4cb;
  --red-2: #e72d3e;          
  --red-3: #c32934;
  --red-4: #7a1b1c;

  --turquoise-1: #d8ebea;
  --turquoise-2: #00aeac;    
  --turquoise-3: #009593;
  --turquoise-4: #005e5c;

  --black: #222121;
  --gray: #a1a1a1;
  --light-gray: #f4f4f4;
  --white: #ffffff;

  
  --fg-1: var(--black);
  --fg-2: #4a4949;
  --fg-muted: var(--gray);
  --bg-1: var(--white);
  --bg-2: var(--light-gray);
  --accent: var(--red-2);
  --accent-2: var(--turquoise-2);

  
  --font-sans: 'Poppins', Arial, Helvetica, sans-serif;

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

html, body { font-family: var(--font-sans); color: var(--fg-1); background: var(--bg-1); }

h1, .h1 { font-family: var(--font-sans); font-weight: 800; font-size: 56px; line-height: 1.05; letter-spacing: -0.02em; color: var(--fg-1); }
h2, .h2 { font-weight: 700; font-size: 36px; line-height: 1.1; letter-spacing: -0.01em; }
h3, .h3 { font-weight: 700; font-size: 24px; line-height: 1.2; }
h4, .h4 { font-weight: 600; font-size: 18px; line-height: 1.3; }

p, .body { font-weight: 400; font-size: 15px; line-height: 1.55; color: var(--fg-2); }
.intro { font-weight: 500; font-size: 18px; line-height: 1.4; color: var(--fg-1); }
.caption { font-weight: 500; font-size: 11px; line-height: 1.3; color: var(--fg-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.tagline { font-weight: 700; color: var(--accent); }
.kicker { font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; }

/* ---- css/site.css ---- */

:root {
  
  --navy-1: #222121;   
  --navy-2: #2e2c2c;
  --navy-3: #3b3838;

  
  --g-blue: #4285F4;
  --g-red: #EA4335;
  --g-yellow: #FBBC05;
  --g-green: #34A853;

  
  --lead: var(--red-2);
  --lead-2: var(--turquoise-2);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 128px);

  --shadow-sm: 0 1px 2px rgba(10,24,48,0.06), 0 2px 8px rgba(10,24,48,0.05);
  --shadow-md: 0 8px 24px rgba(10,24,48,0.08), 0 2px 6px rgba(10,24,48,0.05);
  --shadow-lg: 0 30px 70px rgba(10,24,48,0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  
  --hero-grad: linear-gradient(100deg, #fff 0%, var(--turquoise-2) 55%, var(--red-2) 100%);
}

[data-accent="red"]  { --hero-grad: linear-gradient(100deg, #fff 0%, #ff7a85 48%, var(--red-2) 100%); }
[data-accent="teal"] { --hero-grad: linear-gradient(100deg, #fff 0%, var(--turquoise-2) 82%); }
[data-countdown="off"] #countdown { display: none; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--white); color: var(--fg-1); overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--turquoise-2); color: #fff; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Reusable type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--turquoise-3); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red-2); display: inline-block; border-radius: 2px; }
.eyebrow.on-dark { color: var(--turquoise-2); }

.display {
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.02; margin: 0;
  font-size: clamp(40px, 7vw, 86px);
}
.section-title {
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 20px;
  font-size: clamp(30px, 4.4vw, 52px);
}
.section-title em, .display em { font-style: italic; color: var(--red-2); font-weight: 800; }
.section-title .tq, .display .tq { color: var(--turquoise-3); font-style: italic; }
.lede { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.55; color: var(--fg-2); font-weight: 400; max-width: 62ch; margin: 0; }
.lede strong { color: var(--fg-1); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--font-sans); font-weight: 700; font-size: 16px; line-height: 1;
  padding: 16px 26px; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--red-2); color: #fff; box-shadow: 0 10px 26px rgba(231,45,62,0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(231,45,62,0.42); }
.btn-ghost { background: transparent; color: var(--fg-1); border-color: rgba(34,33,33,0.18); }
.btn-ghost:hover { border-color: var(--red-2); color: var(--red-2); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); color:#fff; }
.btn-lg { font-size: 17px; padding: 18px 32px; }

.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Top nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter); transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled { background: rgba(255,255,255,0.86); backdrop-filter: blur(14px) saturate(1.4); box-shadow: var(--shadow-sm); padding-block: 12px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo .chip { background: #fff; border-radius: 10px; padding: 7px 11px; box-shadow: var(--shadow-sm); display: grid; place-items: center; transition: opacity .3s; }
.nav-logo .chip img { width: 92px; }
.nav.scrolled .nav-logo .chip { box-shadow: none; padding: 0; background: transparent; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 15px; color: rgba(255,255,255,0.82); transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--fg-2); }
.nav.scrolled .nav-links a:hover { color: var(--red-2); }
.nav .nav-cta { padding: 11px 20px; font-size: 14px; }
.nav-burger { display: none; }

.nav-burger {
  display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; display: block; }
.nav.scrolled .nav-burger { border-color: rgba(34,33,33,0.18); background: #fff; }
.nav.scrolled .nav-burger span { background: var(--fg-1); }

.mobile-sheet {
  position: fixed; inset: 0; z-index: 60; background: rgba(6,16,31,0.96); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-sheet.open { opacity: 1; pointer-events: auto; }
.mobile-sheet a { color: #fff; text-decoration: none; font-size: 24px; font-weight: 700; padding: 12px; letter-spacing: -0.01em; }
.mobile-sheet a.cta { margin-top: 16px; background: var(--red-2); padding: 14px 30px; border-radius: var(--radius-pill); font-size: 18px; }
.mobile-sheet .close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: transparent; color:#fff; font-size: 22px; cursor: pointer; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding-block: var(--section-y); }
.bg-soft { background: var(--bg-2); }
.bg-mint { background: linear-gradient(180deg, #f2fbfa 0%, #ffffff 100%); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Brand bar ---------- */
.brandbar { height: 5px; background: linear-gradient(90deg, var(--red-2) 0 38%, var(--turquoise-2) 38% 100%); }
.brandbar.google { background: linear-gradient(90deg, var(--g-blue) 0 25%, var(--g-red) 25% 50%, var(--g-yellow) 50% 75%, var(--g-green) 75% 100%); }

/* ---- css/sections.css ---- */

.hero {
  position: relative; color: #fff; isolation: isolate;
  background: radial-gradient(120% 120% at 80% -10%, #123c3b 0%, var(--navy-1) 45%, #121010 100%);
  padding: clamp(130px, 16vh, 200px) 0 clamp(70px, 10vh, 120px);
  overflow: hidden;
}

.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1.4px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
}

.hero-glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none; will-change: transform; }
.hero-glow.g1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(0,174,172,0.7), transparent 70%); top: -160px; right: -80px; animation: float1 16s var(--ease) infinite alternate; }
.hero-glow.g2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(231,45,62,0.55), transparent 70%); bottom: -180px; left: -100px; animation: float2 20s var(--ease) infinite alternate; }
.hero-glow.g3 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(66,133,244,0.45), transparent 70%); top: 30%; left: 38%; animation: float3 22s var(--ease) infinite alternate; }
@keyframes float1 { to { transform: translate(-60px, 60px) scale(1.1); } }
@keyframes float2 { to { transform: translate(70px, -50px) scale(1.15); } }
@keyframes float3 { to { transform: translate(-40px, -40px) scale(0.92); } }
@media (prefers-reduced-motion: reduce) { .hero-glow { animation: none; } }

.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; gap: clamp(40px, 5vw, 72px); align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  padding: 8px 8px 8px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
}
.hero-badge .dots { display: inline-flex; gap: 4px; }
.hero-badge .dots i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.hero-badge .pill { background: var(--red-2); color:#fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-pill); }

.hero h1 { color: #fff; font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; margin: 0 0 22px; font-size: clamp(44px, 7.4vw, 96px); }
.hero h1 .grad {
  background: var(--hero-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  font-style: italic;
}
.hero .sub { font-size: clamp(17px, 1.7vw, 22px); line-height: 1.5; color: rgba(255,255,255,0.78); max-width: 54ch; margin: 0 0 34px; font-weight: 400; }
.hero .sub strong { color: #fff; font-weight: 600; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-bottom: 36px; }
.hero-meta .item { display: flex; align-items: center; gap: 11px; }
.hero-meta .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: var(--turquoise-2); flex-shrink: 0; }
.hero-meta .ic svg { width: 20px; height: 20px; }
.hero-meta .lbl { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; }
.hero-meta .val { font-size: 16px; font-weight: 600; color: #fff; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; }
.hero-note b { color: var(--turquoise-2); font-weight: 700; }

.countdown { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.cd-unit { text-align: center; min-width: 76px; padding: 16px 10px; border-radius: var(--radius-md); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(6px); }
.cd-unit .n { font-size: 36px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.cd-unit .u { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 8px; font-weight: 600; }

.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg);
  padding: 28px; backdrop-filter: blur(10px); box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-card h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--turquoise-2); margin: 0 0 18px; font-weight: 700; }
.hero-card .row { display: flex; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,0.10); align-items: baseline; }
.hero-card .row:first-of-type { border-top: none; }
.hero-card .row .t { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--turquoise-2); font-size: 14px; min-width: 48px; }
.hero-card .row .x { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }

[data-hero="a"] .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; max-width: 980px; margin-inline: auto; }
[data-hero="a"] .hero-meta, [data-hero="a"] .hero-cta, [data-hero="a"] .countdown { justify-content: center; }
[data-hero="a"] .hero-aside { display: none; }
[data-hero="a"] .hero .sub { margin-inline: auto; }

[data-hero="b"] .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
@media (max-width: 920px) { [data-hero="b"] .hero-grid { grid-template-columns: 1fr; } [data-hero="b"] .hero-aside { display: none; } }

[data-hero="c"] .hero-grid { grid-template-columns: 1fr; max-width: 1100px; }
[data-hero="c"] .hero-aside { display: none; }
[data-hero="c"] .hero h1 { font-size: clamp(48px, 9vw, 120px); }
[data-hero="c"] .hero-ticker { display: flex; }

.hero-ticker { display: none; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.hero-ticker .t { font-size: 14px; font-weight: 600; padding: 9px 16px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.85); }

.lockup { display: flex; align-items: center; gap: 20px; margin-top: 48px; flex-wrap: wrap; }
.lockup .lbl { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 600; }
.lockup .logos { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.partner-mark { display: inline-flex; align-items: center; height: 34px; }
.chip-white { background:#fff; border-radius: 8px; padding: 7px 12px; display:inline-flex; align-items:center; box-shadow: var(--shadow-sm); }
.chip-white img { height: 22px; width: auto; }

.about-head { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 940px; margin-bottom: 56px; }
.audience-toggle { display: inline-flex; background: var(--white); border: 1px solid #e7e7e7; border-radius: var(--radius-pill); padding: 5px; gap: 4px; margin-bottom: 30px; box-shadow: var(--shadow-sm); }
.audience-toggle button { font-family: var(--font-sans); border: none; background: transparent; cursor: pointer; font-weight: 600; font-size: 14px; padding: 10px 20px; border-radius: var(--radius-pill); color: var(--fg-2); transition: .2s; }
.audience-toggle button.active { background: var(--navy-1); color: #fff; }
.audience-panel { display: none; }
.audience-panel.active { display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: #fff; border: 1px solid #ececec; border-radius: var(--radius-lg); padding: 30px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; }
.why-card .ic svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 21px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.01em; }
.why-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--fg-2); }
.ic-red { background: var(--red-1); color: var(--red-3); }
.ic-teal { background: var(--turquoise-1); color: var(--turquoise-4); }
.ic-blue { background: rgba(66,133,244,0.12); color: var(--g-blue); }

.statstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; background: var(--navy-1); border-radius: var(--radius-lg); overflow: hidden; color: #fff; }
@media (max-width: 760px) { .statstrip { grid-template-columns: 1fr 1fr; } }
.statstrip .s { padding: 34px 26px; position: relative; }
.statstrip .s + .s::before { content: ""; position: absolute; left: 0; top: 26%; bottom: 26%; width: 1px; background: rgba(255,255,255,0.12); }
.statstrip .num { font-size: clamp(34px, 4vw, 46px); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.statstrip .num .accent { color: var(--turquoise-2); }
.statstrip .lbl { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 10px; line-height: 1.4; }

.agenda { max-width: 920px; margin-inline: auto; }
.agenda-item {
  display: grid; grid-template-columns: 116px 1fr auto; gap: 24px; align-items: start;
  padding: 22px 24px; border-radius: var(--radius-md); transition: background .25s, transform .25s var(--ease);
  position: relative;
}
.agenda-item + .agenda-item { border-top: 1px solid #ececec; }
.agenda-item:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateX(4px); border-color: transparent; }
.agenda-item:hover + .agenda-item { border-color: transparent; }
.agenda-time { font-weight: 700; font-size: 17px; color: var(--red-2); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; padding-top: 2px; }
.agenda-body h4 { margin: 0 0 5px; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.agenda-body .who { font-size: 14px; color: var(--fg-2); font-weight: 500; }
.agenda-body .who b { color: var(--fg-1); font-weight: 600; }
.agenda-tag { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--radius-pill); align-self: center; }
.tag-break { background: var(--turquoise-1); color: var(--turquoise-4); }
.tag-key { background: var(--red-1); color: var(--red-3); }
.tag-tbc { background: #eee; color: #777; }
.tag-google { background: rgba(66,133,244,0.12); color: var(--g-blue); }
@media (max-width: 640px) {
  .agenda-item { grid-template-columns: 1fr; gap: 6px; padding: 18px 16px; }
  .agenda-tag { justify-self: start; margin-top: 6px; }
}

.speakers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 1000px) { .speakers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .speakers-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }

.spk { background: #fff; border: 1px solid #ececec; border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative; }
.spk:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.spk-photo { aspect-ratio: 1 / 1; position: relative; background: linear-gradient(150deg, var(--turquoise-1), var(--red-1)); overflow: hidden; }
.spk-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.spk-photo .ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(10,24,48,0.22); }
.spk-photo .ph svg { width: 46%; height: 46%; }
.spk-photo .initials { position: absolute; inset: 0; display: grid; place-items: center; font-size: clamp(34px, 6vw, 52px); font-weight: 800; color: rgba(255,255,255,0.92); letter-spacing: -0.02em; text-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.spk-tbc { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.92); color: #666; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--radius-pill); backdrop-filter: blur(4px); }
.spk-info { padding: 20px 20px 24px; }
.spk-info .name { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 3px; }
.spk-info .role { font-size: 13px; font-weight: 600; color: var(--red-2); margin: 0 0 12px; }
.spk-info .bio { font-size: 13.5px; line-height: 1.55; color: var(--fg-2); margin: 0; }

[data-speakers="b"] .speakers-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { [data-speakers="b"] .speakers-grid { grid-template-columns: 1fr; } }
[data-speakers="b"] .spk { display: grid; grid-template-columns: 132px 1fr; align-items: stretch; }
[data-speakers="b"] .spk-photo { aspect-ratio: auto; height: 100%; }
[data-speakers="b"] .spk-info { padding: 22px 22px; align-self: center; }

[data-speakers="c"] .speakers-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { [data-speakers="c"] .speakers-grid { grid-template-columns: repeat(2,1fr); } }
[data-speakers="c"] .spk { border: none; background: transparent; text-align: center; box-shadow: none; }
[data-speakers="c"] .spk:hover { transform: translateY(-4px); box-shadow: none; }
[data-speakers="c"] .spk-photo { width: 132px; height: 132px; aspect-ratio: 1/1; border-radius: 50%; margin: 0 auto 18px; box-shadow: var(--shadow-md); }
[data-speakers="c"] .spk-tbc { top: auto; bottom: 0; right: 50%; transform: translateX(50%); }
[data-speakers="c"] .spk-info { padding: 0 6px; }

.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; gap: 32px; } }
.map-card { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; aspect-ratio: 4 / 3; background: #dde7ee; }
.map-card .pin { position: absolute; top: 44%; left: 50%; transform: translate(-50%,-50%); z-index: 3; }
.map-card .pin .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--red-2); border: 4px solid #fff; box-shadow: 0 4px 14px rgba(231,45,62,0.5); }
.map-card .pin .pulse { position: absolute; inset: -8px; border-radius: 50%; border: 2px solid var(--red-2); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(0.6); opacity: .8; } 100% { transform: scale(2.2); opacity: 0; } }
.travel-note { display: flex; gap: 14px; align-items: flex-start; margin-top: 18px; }
.travel-note .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--turquoise-1); color: var(--turquoise-4); display: grid; place-items: center; flex-shrink: 0; }
.travel-note .ic svg { width: 19px; height: 19px; }
.travel-note p { margin: 0; font-size: 14px; color: var(--fg-2); line-height: 1.5; }
.travel-note b { color: var(--fg-1); }

.partners { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 6vw, 80px); flex-wrap: wrap; }
.partner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.partner .role { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); font-weight: 700; }
.partner img { height: 44px; width: auto; }

.wordmark { font-weight: 800; letter-spacing: -0.02em; display: inline-flex; align-items: baseline; }
.wm-google { font-size: 34px; }
.wm-google .b{color:#4285F4}.wm-google .r{color:#EA4335}.wm-google .y{color:#FBBC05}.wm-google .g{color:#34A853}

.pull-quote { max-width: 860px; margin: 0 auto; text-align: center; }
.pull-quote blockquote { margin: 0 0 22px; font-size: clamp(22px, 3vw, 32px); font-weight: 600; font-style: italic; letter-spacing: -0.015em; line-height: 1.35; color: var(--fg-1); }
.pull-quote blockquote::before { content: "\201C"; display: block; font-size: 64px; line-height: 0.6; color: var(--red-2); font-style: normal; margin-bottom: 18px; }
.pull-quote figcaption { font-size: 15px; color: var(--fg-2); }
.pull-quote figcaption b { color: var(--fg-1); }

.faq { max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid #ececec; border-radius: var(--radius-md); padding: 4px 22px; transition: box-shadow .25s var(--ease); }
.faq details + details { margin-top: 12px; }
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 16px; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 600; font-size: 22px; line-height: 1; color: var(--turquoise-3); transition: transform .2s var(--ease); flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; font-size: 14.5px; color: var(--fg-2); line-height: 1.6; }
.faq details p a { color: var(--turquoise-3); font-weight: 600; }
.faq-contact { text-align: center; margin-top: 28px; font-size: 14px; color: var(--fg-2); }
.faq-contact a { color: var(--turquoise-3); font-weight: 600; }

.footcta { background: radial-gradient(110% 120% at 20% 0%, #123c3b 0%, var(--navy-1) 55%, #121010 100%); color: #fff; position: relative; overflow: hidden; }
.footcta::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1.4px); background-size: 30px 30px; -webkit-mask-image: radial-gradient(100% 100% at 50% 100%, #000, transparent 70%); mask-image: radial-gradient(100% 100% at 50% 100%, #000, transparent 70%); }
.footcta .wrap { position: relative; z-index: 2; text-align: center; }
.footcta h2 { font-size: clamp(34px, 5vw, 60px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; margin: 0 0 18px; }
.footcta h2 .grad { background: var(--hero-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; }
.footcta .meta { display: inline-flex; gap: 28px; flex-wrap: wrap; justify-content: center; margin: 26px 0 36px; color: rgba(255,255,255,0.75); font-weight: 500; font-size: 16px; }
.footcta .meta .item { display: inline-flex; align-items: center; gap: 9px; }
.footcta .meta svg { width: 18px; height: 18px; color: var(--turquoise-2); }

footer.site { background: #121010; color: rgba(255,255,255,0.6); padding: 40px 0; }
footer.site .row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
footer.site .chip-white img { height: 20px; }
footer.site a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site .links { display: flex; gap: 24px; font-size: 14px; flex-wrap: wrap; }
footer.site .copy { font-size: 13px; }

.takeaways { background: var(--bg-2); padding: clamp(48px, 7vh, 80px) 0; }
.takeaways .head { text-align: center; margin-bottom: 40px; display: grid; gap: 12px; justify-items: center; }
.takeaways .head .eyebrow { justify-content: center; }
.takeaways-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1020px) { .takeaways-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .takeaways-grid { grid-template-columns: 1fr; } }
.tk-card { background: #fff; border: 1px solid #ececec; border-radius: var(--radius-lg); padding: 24px 22px; display: flex; flex-direction: column; gap: 12px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tk-card .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--turquoise-1); color: var(--turquoise-4); flex-shrink: 0; }
.tk-card .ic svg { width: 20px; height: 20px; }
.tk-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--fg-2); }
.tk-card p b, .tk-card p strong { color: var(--fg-1); }
.tk-card .act { margin-top: auto; padding: 11px 13px; border-radius: var(--radius-md); background: var(--turquoise-1); color: var(--turquoise-4); font-size: 13px; line-height: 1.5; font-weight: 600; }

.iaapa-band { background: linear-gradient(100deg, var(--turquoise-4) 0%, var(--turquoise-3) 100%); color: #fff; padding: 22px 0; }
.iaapa-band .wrap { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; text-align: center; }
.iaapa-band .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.14); display: grid; place-items: center; flex-shrink: 0; }
.iaapa-band .ic svg { width: 22px; height: 22px; }
.iaapa-band p { margin: 0; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.94); max-width: 76ch; }
.iaapa-band p b { color: #fff; }

.deadline-note { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 0; padding: 13px 16px; border-radius: var(--radius-md); background: rgba(231,45,62,0.14); border: 1px solid rgba(231,45,62,0.45); font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.92); max-width: 640px; }
.deadline-note svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: #ff8f9a; }
.deadline-note b { color: #fff; }
.deadline-note.on-light { background: rgba(231,45,62,0.07); border-color: rgba(231,45,62,0.3); color: var(--fg-2); }
.deadline-note.on-light b { color: var(--red-3); }
.deadline-note.on-light svg { color: var(--red-2); }
.countdown-label { margin: 34px 0 -28px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 700; }
.countdown-label b { color: var(--turquoise-2); }

.headliners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
@media (max-width: 980px) { .headliners-grid { grid-template-columns: 1fr; } }
.hl-card { background: #fff; border: 1px solid #ececec; border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.hl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hl-photo { aspect-ratio: 16 / 11; position: relative; overflow: hidden; }
.hl-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hl-photo .initials { position: absolute; inset: 0; display: grid; place-items: center; font-size: clamp(40px, 5vw, 60px); font-weight: 800; color: rgba(255,255,255,0.92); letter-spacing: -0.02em; text-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.hl-badge { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.94); color: var(--red-3); font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); backdrop-filter: blur(4px); }
.hl-info { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.hl-info .name { font-size: 21px; font-weight: 800; letter-spacing: -0.015em; margin: 0; }
.hl-info .role { font-size: 13px; font-weight: 700; color: var(--red-2); margin: 0; }
.hl-info .bio { font-size: 13.5px; line-height: 1.6; color: var(--fg-2); margin: 0; }
.hl-info .talk { margin: auto 0 0; padding: 13px 15px; border-radius: var(--radius-md); background: var(--turquoise-1); font-size: 13px; line-height: 1.55; color: var(--turquoise-4); font-weight: 500; }
.hl-info .talk b { font-weight: 700; }

.room-note { max-width: 760px; margin: 44px auto 0; text-align: center; }
.room-note p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--fg-2); }
.room-note .flags { margin-top: 12px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.room-note .flags span { font-size: 12px; font-weight: 700; letter-spacing: .06em; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--bg-2); color: var(--fg-2); }

.wm-plain { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--fg-1); }

.headliners-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-inline: auto; }
@media (max-width: 980px) { .headliners-grid.two { grid-template-columns: 1fr; } }

/* ---- css/recap.css ---- */

/* ---------- gate / unlock state (class set inline in <head>, before paint) ---------- */
html:not(.has-access) .gated { display: none; }
html.has-access .gate { display: none; }
html:not(.has-access) .access-line { display: none; }

.iaapa-banner { display: none; }
html.iaapa-on .iaapa-banner { display: block; }
.anchor { display: block; position: relative; top: -90px; visibility: hidden; height: 0; }

/* ---------- homepage hero with event photo ---------- */
.hero-recap { padding: clamp(140px, 18vh, 220px) 0 clamp(80px, 11vh, 140px); }
.hero-recap .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-recap .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-recap .hero-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(20,19,19,0.94) 0%, rgba(20,19,19,0.82) 50%, rgba(18,60,59,0.72) 100%); }
.hero-recap::before { z-index: 1; }
.hero-recap .wrap { z-index: 2; }
.hero-recap-grid { max-width: 880px; }
.hero-recap h1 { font-size: clamp(40px, 6.4vw, 84px); }
.hero-recap h1 .grad { font-style: italic; }
.hero-recap .sub { max-width: 58ch; }

/* ---------- IAAPA banner ---------- */
.iaapa-banner { background: linear-gradient(100deg, var(--turquoise-4) 0%, var(--turquoise-3) 100%); color: #fff; padding: 18px 0; }
.iaapa-banner .wrap { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; }
.iaapa-banner .ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.14); display: grid; place-items: center; flex-shrink: 0; }
.iaapa-banner .ic svg { width: 22px; height: 22px; }
.iaapa-banner p { margin: 0; font-size: 15px; line-height: 1.5; color: #fff; }
.iaapa-banner a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- one-line summary ---------- */
.summary { padding-block: clamp(56px, 7vw, 96px); }
.summary-grid { max-width: 900px; }
.summary-text { font-size: clamp(21px, 2.4vw, 30px); line-height: 1.4; font-weight: 600; letter-spacing: -0.015em; color: var(--fg-1); margin: 0; }

/* ---------- talk cards ---------- */
.talk-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 900px) { .talk-cards { grid-template-columns: 1fr; } }
.talk-card { background: #fff; border: 1px solid #ececec; border-radius: var(--radius-lg); padding: 26px; display: grid; grid-template-columns: 96px 1fr; gap: 22px; align-items: start; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.talk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.talk-card-photo { display: block; width: 96px; height: 96px; border-radius: 18px; overflow: hidden; background: var(--turquoise-1); }
.talk-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.talk-card-speaker { margin: 0 0 8px; font-size: 13px; color: var(--fg-2); font-weight: 500; }
.talk-card-speaker b { color: var(--red-3); font-weight: 700; }
.talk-card-title { margin: 0 0 14px; font-size: 21px; line-height: 1.25; letter-spacing: -0.015em; font-weight: 800; }
.talk-card-title a { text-decoration: none; color: var(--fg-1); }
.talk-card-title a:hover { color: var(--turquoise-3); }
.learnings { margin: 0 0 16px; padding: 0; list-style: none; display: grid; gap: 9px; }
.learnings li { position: relative; padding-left: 20px; font-size: 14px; line-height: 1.55; color: var(--fg-2); }
.learnings li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--turquoise-2); }
.learnings li b { color: var(--fg-1); font-weight: 600; }
.talk-card-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--red-3); text-decoration: none; }
.talk-card-link .arrow { transition: transform .25s var(--ease); }
.talk-card-link:hover .arrow { transform: translateX(4px); }
@media (max-width: 560px) {
  .talk-card { grid-template-columns: 1fr; padding: 22px; gap: 14px; }
  .talk-card-photo { width: 72px; height: 72px; }
}
.talk-cards.compact { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .talk-cards.compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .talk-cards.compact { grid-template-columns: 1fr; } }
.talk-cards.compact .talk-card { grid-template-columns: 64px 1fr; gap: 16px; padding: 20px; }
.talk-cards.compact .talk-card-photo { width: 64px; height: 64px; border-radius: 14px; }
.talk-cards.compact .talk-card-title { font-size: 17px; }

/* ---------- do this now ---------- */
.do-now-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .do-now-grid { grid-template-columns: 1fr; } }
.do-now-list { margin: 0; padding: 0; list-style: none; counter-reset: step; display: grid; gap: 12px; }
.do-now-list li { counter-increment: step; position: relative; padding: 16px 20px 16px 66px; background: #fff; border: 1px solid #ececec; border-radius: var(--radius-md); font-size: 15.5px; line-height: 1.5; color: var(--fg-1); font-weight: 500; }
.do-now-list li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 18px; top: 14px; font-weight: 800; font-size: 18px; color: var(--red-2); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }

/* ---------- gate / lead form ---------- */
.gate { max-width: 720px; margin-inline: auto; }
.gate-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(26px, 4vw, 44px); border: 1px solid #ececec; }
.gate-head { margin-bottom: 22px; }
.gate-title { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 10px; color: var(--fg-1); }
.gate-intro { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--fg-2); }
.access-form .field { margin-bottom: 14px; }
.access-form .field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .access-form .field.row2 { grid-template-columns: 1fr; } }
.access-form label { display: block; font-size: 13px; font-weight: 600; color: var(--fg-1); margin-bottom: 6px; }
.access-form label .opt { color: var(--fg-muted); font-weight: 500; }
.access-form .req { color: var(--red-2); }
.access-form input[type="text"], .access-form input[type="email"], .access-form select {
  width: 100%; font-family: var(--font-sans); font-size: 15px; color: var(--fg-1);
  padding: 13px 15px; border: 1.5px solid #dedede; border-radius: var(--radius-sm); background: #fff;
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.access-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.access-form input:focus, .access-form select:focus { outline: none; border-color: var(--turquoise-2); box-shadow: 0 0 0 3px rgba(0,174,172,0.15); }
.access-form input:focus-visible, .access-form select:focus-visible, .access-form button:focus-visible, .access-form a:focus-visible { outline: 3px solid var(--turquoise-2); outline-offset: 2px; }
.access-form .is-invalid { border-color: var(--red-2) !important; box-shadow: 0 0 0 3px rgba(231,45,62,0.12) !important; }
.access-form .field-error { display: block; margin-top: 6px; font-size: 12.5px; color: var(--red-3); font-weight: 600; }
.access-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.access-form .checkbox { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; background: var(--bg-2); border-radius: var(--radius-sm); margin: 4px 0 18px; cursor: pointer; }
.access-form .checkbox input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--red-2); flex-shrink: 0; cursor: pointer; }
.access-form .checkbox span { font-size: 13px; line-height: 1.5; color: var(--fg-2); }
.access-form .checkbox a { color: var(--turquoise-4); font-weight: 600; }
.access-form .checkbox.is-invalid { outline: 2px solid var(--red-2); }
.access-form .submit { width: 100%; justify-content: center; }
.access-form .submit[disabled] { opacity: .7; cursor: progress; transform: none; }
.access-form .form-error { margin: 12px 0 0; padding: 12px 14px; border-radius: var(--radius-sm); background: rgba(231,45,62,0.08); color: var(--red-3); font-size: 13.5px; font-weight: 600; line-height: 1.5; }
.access-form .form-error a { color: inherit; }
.access-form .form-trust { margin: 14px 0 0; font-size: 12.5px; color: var(--fg-muted); text-align: center; line-height: 1.5; }

.access-line { display: flex; gap: 10px; align-items: flex-start; max-width: 720px; margin: 0 auto; padding: 14px 18px; border-radius: var(--radius-md); background: var(--turquoise-1); color: var(--turquoise-4); font-size: 14px; line-height: 1.55; }
.access-line svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.access-line b { color: var(--turquoise-4); }
.access-line a { color: var(--turquoise-4); font-weight: 600; }
.talk-article .access-line { margin: 0 0 26px; max-width: none; }

/* ---------- photo strip ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 700px) { .photo-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.photo-strip figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-2); }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* ---------- about Red ---------- */
.about-red-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .about-red-grid { grid-template-columns: 1fr; } }
.about-red p { font-size: 16px; line-height: 1.65; color: var(--fg-2); margin: 0 0 14px; }
.about-red a { color: var(--turquoise-4); font-weight: 600; }

/* ---------- talk page hero ---------- */
.talk-hero { padding: clamp(120px, 15vh, 170px) 0 clamp(56px, 8vh, 90px); }
.breadcrumb { margin-bottom: 26px; font-size: 13px; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; color: rgba(255,255,255,0.6); }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: rgba(255,255,255,0.4); }
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li[aria-current] { color: #fff; font-weight: 600; max-width: 60ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.talk-hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .talk-hero-grid { grid-template-columns: 1fr; } }
.talk-hero h1 { font-size: clamp(32px, 4.6vw, 58px); line-height: 1.04; }
.talk-hero .byline { font-size: 15px; color: rgba(255,255,255,0.72); margin: 0 0 28px; line-height: 1.55; }
.talk-hero .byline b { color: #fff; font-weight: 600; }
.talk-photo { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.45); aspect-ratio: 4 / 5; background: var(--navy-3); }
.talk-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
@media (max-width: 900px) { .talk-photo { aspect-ratio: 16 / 10; max-width: 560px; } }

/* ---------- talk page layout ---------- */
.talk-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(32px, 5vw, 72px); padding-block: clamp(48px, 6vw, 80px); align-items: start; }
@media (max-width: 1000px) { .talk-layout { grid-template-columns: 1fr; } .talk-side { display: none; } }
.talk-article { min-width: 0; max-width: 760px; }

.takeaways-box { background: var(--navy-1); color: #fff; border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 34px); margin-bottom: 40px; }
.takeaways-box .eyebrow { color: var(--turquoise-2); margin-bottom: 14px; }
.takeaways-box ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.takeaways-box li { position: relative; padding-left: 26px; font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,0.86); }
.takeaways-box li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(135deg, var(--turquoise-2), var(--red-2)); }
.takeaways-box li b { color: #fff; font-weight: 600; }

.prose { font-size: 17px; line-height: 1.7; color: var(--fg-2); }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: clamp(24px, 2.8vw, 32px); line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--fg-1); margin: 44px 0 16px; }
.prose h3 { font-size: 21px; margin: 32px 0 10px; color: var(--fg-1); }
.prose p { margin: 0 0 18px; font-size: inherit; line-height: inherit; color: inherit; }
.prose strong, .prose b { color: var(--fg-1); font-weight: 600; }
.prose a { color: var(--turquoise-4); font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--red-2); font-weight: 700; }
.table-wrap { overflow-x: auto; margin: 8px 0 26px; -webkit-overflow-scrolling: touch; }
.prose table { width: 100%; border-collapse: collapse; margin: 0; font-size: 15px; line-height: 1.5; }
.prose table.cols-3 { min-width: 520px; }
.prose thead th { text-align: left; font-weight: 700; color: var(--fg-1); background: var(--bg-2); padding: 12px 14px; border-bottom: 2px solid #e5e5e5; }
.prose tbody td { padding: 12px 14px; border-bottom: 1px solid #ececec; vertical-align: top; }
.prose tbody td:first-child { font-weight: 600; color: var(--fg-1); }
.prose blockquote { margin: 0 0 20px; padding: 4px 0 4px 20px; border-left: 4px solid var(--turquoise-2); font-style: italic; color: var(--fg-1); }
.prose code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.9em; background: var(--bg-2); padding: 2px 6px; border-radius: 4px; color: var(--fg-1); }
.lead-in { margin-bottom: 36px; }
.gated { margin-top: 36px; }

.talk-article .gate { margin: 0; max-width: none; }
.talk-article .gate-card { background: linear-gradient(180deg, #f2fbfa 0%, #ffffff 100%); }

.talk-faq { margin-top: 56px; }
.talk-faq h2 { font-size: 26px; letter-spacing: -0.02em; font-weight: 800; margin: 0 0 18px; }
.talk-faq .faq { max-width: none; }

.speaker-box { display: grid; grid-template-columns: 96px 1fr; gap: 22px; align-items: start; margin-top: 48px; padding: 26px; border-radius: var(--radius-lg); background: var(--bg-2); }
@media (max-width: 520px) { .speaker-box { grid-template-columns: 1fr; } }
.speaker-box img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: center top; }
.speaker-box h2 { font-size: 20px; font-weight: 800; letter-spacing: -0.015em; margin: 0 0 8px; }
.speaker-box p { margin: 0 0 8px; font-size: 15px; line-height: 1.6; color: var(--fg-2); }
.speaker-box a { color: var(--turquoise-4); font-weight: 600; }
.speaker-links { font-size: 14px; }

.talk-cta { margin-top: 32px; padding: 28px; border-radius: var(--radius-lg); background: var(--navy-1); color: #fff; }
.talk-cta h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.015em; margin: 0 0 10px; }
.talk-cta p { margin: 0; font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.8); }
.talk-cta a { color: var(--turquoise-2); font-weight: 600; }

.side-sticky { position: sticky; top: 96px; }
.side-talks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.side-talks a { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; padding: 10px; border-radius: var(--radius-md); text-decoration: none; color: var(--fg-2); font-size: 13px; line-height: 1.4; border: 1px solid #ececec; transition: border-color .2s, background .2s; }
.side-talks a:hover { border-color: var(--turquoise-2); background: #f7fcfb; }
.side-talks img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: center top; }
.side-talks b { color: var(--fg-1); font-weight: 700; }
.side-all { display: inline-block; margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--red-3); text-decoration: none; }

/* ---------- /access/ page ---------- */
.access-hero { padding: clamp(120px, 15vh, 170px) 0 clamp(60px, 8vh, 100px); min-height: 100vh; }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .access-grid { grid-template-columns: 1fr; } }
.access-aside h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.02; }
.access-aside .sub { font-size: 17px; }
.access-list { margin: 0; padding: 0 0 0 22px; color: rgba(255,255,255,0.7); font-size: 14.5px; line-height: 1.5; display: grid; gap: 10px; }
.access-list li::marker { color: var(--turquoise-2); font-weight: 700; }
.access-list a { color: rgba(255,255,255,0.8); text-decoration: none; }
.access-list a:hover { color: #fff; }
.access-list b { color: #fff; }
.access-formcol .gate { max-width: none; }
.access-formcol .access-line { margin-top: 18px; background: rgba(255,255,255,0.1); color: #fff; }
.access-formcol .access-line b, .access-formcol .access-line a { color: #fff; }

/* ---------- misc ---------- */
.skip-link { position: absolute; left: -9999px; top: 8px; background: #fff; color: var(--fg-1); padding: 10px 14px; border-radius: 8px; z-index: 100; font-weight: 700; }
.skip-link:focus { left: 8px; }

/* ---------- contrast (WCAG AA on light backgrounds) ---------- */
.eyebrow { color: var(--turquoise-4); }
.eyebrow.on-dark, .takeaways-box .eyebrow { color: var(--turquoise-2); }
.faq details p a, .faq-contact a { color: var(--turquoise-4); }

/* ---------- /talks/ overview ---------- */
.talks-hero .byline { max-width: 62ch; }
.talks-page .access-line { margin-bottom: 26px; }
.talks-grid { list-style: none; margin: 0; padding: 0; }
.talk-num { display: inline-block; min-width: 26px; font-weight: 800; color: var(--turquoise-4); font-variant-numeric: tabular-nums; }
.talk-card-summary { margin: 0 0 14px; font-size: 14.5px; line-height: 1.55; color: var(--fg-2); }
html.has-access .talks-grid .talk-card:first-child { border-color: var(--turquoise-2); box-shadow: 0 0 0 3px rgba(0,174,172,0.18); position: relative; }
html.has-access .talks-grid .talk-card:first-child::after { content: "Start here"; position: absolute; top: -12px; right: 18px; background: var(--turquoise-2); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--radius-pill); }
.location-note { background: var(--navy-1); color: rgba(255,255,255,0.78); padding: 18px 0; }
.location-note p { margin: 0; font-size: 14px; line-height: 1.6; text-align: center; color: inherit; }
.location-note b { color: #fff; }
