/* ============================================================
   AOHK Global Congress 2026
   Editorial design — authoritative, typographic, institutional
   Base #EDF7FF · Surface #FFF · Content #0F0F0F · Accent #0049DB
   Display: Satoshi · Text: Inter
   ============================================================ */

:root {
  --base: #edf7ff;
  --surface: #ffffff;
  --content: #0f0f0f;
  --accent: #0049db;
  --accent-600: #003bb0;
  --accent-050: #e6efff;
  --content-70: rgba(15,15,15,0.70);
  --content-55: rgba(15,15,15,0.55);
  --content-40: rgba(15,15,15,0.40);
  --content-12: rgba(15,15,15,0.12);
  --line: rgba(15,15,15,0.10);
  --line-strong: rgba(15,15,15,0.18);

  /* Dark surface */
  --ink: #07111e;
  --ink-2: #0d1e32;
  --ink-line: rgba(255,255,255,0.10);
  --ink-text: rgba(255,255,255,0.60);
  --ink-text-strong: rgba(255,255,255,0.90);

  /* Type */
  --font-display: "Satoshi","Inter",system-ui,sans-serif;
  --font-text: "Inter",system-ui,-apple-system,sans-serif;

  /* Geometry */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 40px -10px rgba(0,0,0,0.16);
  --shadow-accent: 0 20px 60px -16px rgba(0,73,219,0.40);

  /* Layout */
  --maxw: 1440px;
  --gutter: 20px;
  --nav-h: 91px;
}

/* ─── Reset ──────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; }
* { margin:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-text);
  color: var(--content);
  background: var(--surface);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg { display:block; max-width:100%; height:auto; }
picture { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; padding:0; }
button { font:inherit; cursor:pointer; border:none; background:none; }
:focus-visible { outline:2px solid var(--accent); outline-offset:3px; border-radius:3px; }

/* ─── Typography ─────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(3rem,7vw,5.5rem); }
h2 { font-size: clamp(2.2rem,4.5vw,3.4rem); }
h3 { font-size: clamp(1.2rem,2vw,1.55rem); letter-spacing:-0.015em; }
h4 { font-size: 1rem; letter-spacing:-0.01em; }
p { color: var(--content-70); }
.lead { font-size: clamp(1rem,1.6vw,1.2rem); color:var(--content-70); max-width:58ch; line-height:1.75; }

/* Eyebrow label — horizontal rule + caps, no dot */
.label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--content-55);
}
.label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--content-40);
  flex-shrink: 0;
}
.label--accent { color: var(--accent); }
.label--accent::before { background: var(--accent); }
.label--light { color: rgba(255,255,255,0.40); }
.label--light::before { background: rgba(255,255,255,0.30); }

/* ─── Layout ──────────────────────────────────────────── */
.container { width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.section { padding-block: clamp(72px,10vw,130px); }
.section--sm { padding-block: clamp(48px,6vw,80px); }
.section--dark { background:var(--ink); }
.section--base { background:var(--base); }

.section-header { margin-bottom: clamp(40px,5vw,64px); }
.section-header h2 { margin-top: 14px; }
.section-header p { margin-top:16px; }
.section-header--center { text-align:center; }
.section-header--center .label { justify-content:center; }
.section-header--center .label::before { display:none; }

/* Rule divider */
.hr { height:1px; background:var(--line); border:none; }
.hr--strong { background:var(--line-strong); }
.hr--light { background:var(--ink-line); }

/* ─── Navigation ─────────────────────────────────────── */
.hero-wrap {
  position: relative;
}

.nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav.scrolled .brand__name { color: var(--content); }
.nav.scrolled .brand__sub { color: var(--content-55); }
.nav.scrolled .brand__badge img { filter: none; }
.nav.scrolled .brand > img,
.nav.scrolled .brand > picture img { filter: none; }
.nav.scrolled .nav__links a { color: var(--content); }
.nav.scrolled .nav__links a:hover { color: var(--accent); background: rgba(0,0,0,0.04); }
.nav.scrolled .nav__links a.active { color: var(--accent); }
.nav.scrolled .nav__links a.active::before { background: var(--accent); }
.nav.scrolled .nav-book-btn { border-color: var(--accent); background: var(--accent); color: #fff; }
.nav.scrolled .nav-book-btn:hover { background: #0040cc; }
.nav.scrolled .nav__toggle {
  border-color: #000;
}
.nav.scrolled .nav__toggle span,
.nav.scrolled .nav__toggle span::before,
.nav.scrolled .nav__toggle span::after {
  background: #000;
}
/* Hide middle bar when open+scrolled (scrolled rule otherwise outweighs nav-open) */
body.nav-open .nav.scrolled .nav__toggle span {
  background: transparent;
}
.nav .container { height: 100%; }

/* No padding-top needed — nav floats over hero */
body { padding-top: 0; }

/* Layout: logo | links | cta */
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}

/* Brand */
.brand { display:inline-flex; align-items:center; gap:9px; }
.brand__badge {
  width:34px; height:34px; border-radius:8px;
  background: var(--accent);
  display: grid; place-items:center;
}
.brand__badge img { width:19px; height:auto; filter: brightness(10); }
.brand > img,
.brand > picture img { height:54px; width:auto; max-height:calc(var(--nav-h) - 16px); filter: brightness(0) invert(1); transition: filter .3s; }
.brand__name { font-family:var(--font-display); font-weight:700; font-size:1rem; letter-spacing:-0.02em; line-height:1; color:#fff; transition: color .3s; }
.brand__sub { font-size:0.60rem; letter-spacing:0.13em; text-transform:uppercase; color:rgba(255,255,255,0.35); font-weight:500; margin-top:2px; transition: color .3s; }
.brand__text { display:flex; flex-direction:column; }

/* Center links — plain text, no borders */
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav__links a:hover { color:#fff; background: rgba(255,255,255,0.07); }
.nav__links a.active { color: #fff; font-weight: 600; position: relative; }
.nav__links a.active::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.nav__links a svg { opacity:.5; }

/* Right: avatar + book button */
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid #fff;
  background: #fff;
  color: #111;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.nav-book-btn:hover { background: rgba(255,255,255,0.88); }
.nav-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}

/* Mobile toggle */
.nav__toggle { display:none; width:40px; height:40px; border-radius:8px; align-items:center; justify-content:center; border:1.5px solid rgba(255,255,255,0.20); transition: border-color .3s; }
.nav__toggle span { width:17px; height:1.5px; background:#fff; border-radius:2px; position:relative; transition: background .3s, transform .3s; }
.nav__toggle span::before,.nav__toggle span::after { content:""; position:absolute; left:0; width:17px; height:1.5px; background:#fff; border-radius:2px; transition: background .3s, transform .3s; }
.nav__toggle span::before { top:-5px; } .nav__toggle span::after { top:5px; }
body.nav-open .nav__toggle span { background:transparent; }
body.nav-open .nav__toggle span::before { top:0; transform:rotate(45deg); }
body.nav-open .nav__toggle span::after { top:0; transform:rotate(-45deg); }

/* Mobile nav drawer */
.nav__drawer { display:none; }
@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav-book-btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__drawer {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: rgba(8,8,8,0.97); border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 20px 22px; flex-direction: column; gap: 2px;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .25s;
  }
  body.nav-open .nav__drawer { transform: none; opacity: 1; pointer-events: auto; display: flex; }
  .nav__drawer a { padding: 12px 10px; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.65); border-radius: 8px; }
  .nav__drawer a:hover { background: var(--base); color: var(--content); }
  .nav__drawer a.btn-primary { color: #ffffff; }
  .nav__drawer a.btn-primary:hover { color: #ffffff; }
}

/* ─── Nav Dropdown ───────────────────────────────────── */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav__dropdown-btn:hover { color:#fff; background: rgba(255,255,255,0.07); }
.nav__dropdown-btn.active { color: #fff; font-weight: 600; }
.nav__chevron {
  width: 12px; height: 12px;
  transition: transform .22s ease;
  flex-shrink: 0;
  opacity: 0.65;
}
.nav__dropdown:hover .nav__chevron,
.nav__dropdown:focus-within .nav__chevron { transform: rotate(180deg); }

.nav__dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 180px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 6px 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 200;
}
.nav__dropdown:hover .nav__dropdown-panel,
.nav__dropdown:focus-within .nav__dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--content) !important;
  background: none !important;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav__dropdown-panel a::before { display: none !important; }
.nav__dropdown-panel a:hover { background: rgba(0,80,200,0.07) !important; color: var(--accent) !important; }
.nav__dropdown-panel a.active { color: var(--accent) !important; background: rgba(0,80,200,0.07) !important; }
.nav__dropdown-panel a .dd-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; opacity: 0.5;
}
.nav__dropdown-panel a:hover .dd-dot,
.nav__dropdown-panel a.active .dd-dot { opacity: 1; }

/* Scrolled state overrides for dropdown button */
.nav.scrolled .nav__dropdown-btn { color: var(--content); }
.nav.scrolled .nav__dropdown-btn:hover { color: var(--accent); background: rgba(0,0,0,0.04); }
.nav.scrolled .nav__dropdown-btn.active { color: var(--accent); }

/* Mobile drawer dropdown items */
.nav__drawer-group { display: flex; flex-direction: column; gap: 0; }
.nav__drawer-group-label {
  padding: 12px 10px 4px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items:center; gap:9px;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-weight: 600; font-size:0.92rem; letter-spacing:-0.01em;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s, background .2s, color .2s, border-color .2s;
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width:16px; height:16px; transition:transform .22s; flex-shrink:0; }
.btn:hover svg { transform:translateX(3px); }

.btn-primary { background:var(--accent); color:#fff; box-shadow:var(--shadow-accent); }
.btn-primary:hover { background:var(--accent-600); transform:translateY(-2px); }
.btn-outline { background:transparent; color:var(--content); border:1.5px solid var(--line-strong); }
.btn-outline:hover { border-color:var(--content); transform:translateY(-2px); }
.btn-outline--light { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,0.25); }
.btn-outline--light:hover { border-color:#fff; }
.btn-white { background:#fff; color:var(--content); }
.btn-white:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-lg { padding:15px 30px; font-size:1rem; }

/* ─── Hero full-bleed with inner columns ─────────────── */
.hero-wrap { padding: 0; max-width: 100%; }

.hero-full {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  background: radial-gradient(ellipse at top right,
    rgb(0, 220, 200) 0%,
    rgb(0, 100, 220) 35%,
    rgb(10, 20, 140) 65%,
    rgb(5, 5, 60) 100%
  );
}

/* Crosshatch pattern overlay */
.hero-full__overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,  rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}

/* Meteor canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Decorative year text */
.hero-deco-year {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 22vw, 320px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* Inner two-column layout */
.hero-full__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: stretch;
}

/* Left: text — aligns with navbar container */
.hero-full__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding-left: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  padding-right: clamp(24px, 3vw, 48px);
  padding-top: calc(var(--nav-h) - 28px);
  padding-bottom: 100px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgb(0,220,180);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0,220,180,0.6);
}

.hero-full__h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}
.hero-full__h1 em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.7);
}

.hero-full__desc {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 46ch;
}

.hero-full__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform .22s, box-shadow .22s, background .2s;
}
.hero-btn svg { width: 16px; height: 16px; }
.hero-btn:hover { transform: translateY(-2px); }
.hero-btn--accent { background: #fff; color: #0a0a0a; box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.hero-btn--accent:hover { background: rgba(255,255,255,0.88); }
.hero-btn--outline { background: rgba(255,255,255,0.10); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); backdrop-filter: blur(6px); }
.hero-btn--outline:hover { background: rgba(255,255,255,0.18); }

/* Right: photo panel */
.hero-photo-panel {
  position: relative;
  overflow: hidden;
}
.hero-photo-panel picture,
.hero-photo-panel > img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-photo-panel__mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgb(5,5,60) 0%, transparent 35%),
    linear-gradient(to top, rgba(5,5,60,0.7) 0%, transparent 40%);
  pointer-events: none;
}
.hero-photo-card {
  position: absolute;
  bottom: 120px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 16px 18px;
  color: #fff;
}
.hero-photo-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hero-photo-card__header svg { opacity: 0.6; flex-shrink: 0; }
.hero-photo-card__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  flex: 1;
}
.hero-photo-card__badge {
  background: #f97316;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-card__events-wrap {
  overflow: hidden;
  /* height set dynamically by JS to show exactly 2 events */
}
.hero-photo-card__events-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: transform;
}
.hero-photo-card__event {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.hero-photo-card__event-date {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero-photo-card__event-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}
.hero-photo-card__cta {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.12);
  transition: color .2s;
}
.hero-photo-card__cta:hover { color: #fff; }

/* Stats band */
.hero-stats-band {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats-band__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  gap: 4px;
}
.hero-stats-band__num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stats-band__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-stats-band__div {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

@media (max-width: 760px) {
  .hero-full__inner { grid-template-columns: 1fr; }
  .hero-photo-panel { display: none; }
  .hero-deco-year { display: none; }
  .hero-stats-band__label { display: none; }
}

/* LEFT PANEL */
.hero-left {
  background: #daf34a;
  border-radius: 28px;
  padding: clamp(28px,4vw,48px) clamp(28px,4vw,48px) clamp(32px,4vw,52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Radial burst — slowly rotating rays */
.hero-left::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 0deg at 50% 55%,
    rgba(255,255,255,0.0)   0deg,
    rgba(255,255,255,0.22)  8deg,
    rgba(255,255,255,0.0)   16deg,
    rgba(255,255,255,0.0)   30deg,
    rgba(255,255,255,0.18)  38deg,
    rgba(255,255,255,0.0)   46deg,
    rgba(255,255,255,0.0)   62deg,
    rgba(255,255,255,0.20)  70deg,
    rgba(255,255,255,0.0)   78deg,
    rgba(255,255,255,0.0)   96deg,
    rgba(255,255,255,0.16)  104deg,
    rgba(255,255,255,0.0)   112deg,
    rgba(255,255,255,0.0)   128deg,
    rgba(255,255,255,0.22)  136deg,
    rgba(255,255,255,0.0)   144deg,
    rgba(255,255,255,0.0)   162deg,
    rgba(255,255,255,0.18)  170deg,
    rgba(255,255,255,0.0)   178deg,
    rgba(255,255,255,0.0)   196deg,
    rgba(255,255,255,0.20)  204deg,
    rgba(255,255,255,0.0)   212deg,
    rgba(255,255,255,0.0)   228deg,
    rgba(255,255,255,0.16)  236deg,
    rgba(255,255,255,0.0)   244deg,
    rgba(255,255,255,0.0)   260deg,
    rgba(255,255,255,0.22)  268deg,
    rgba(255,255,255,0.0)   276deg,
    rgba(255,255,255,0.0)   294deg,
    rgba(255,255,255,0.18)  302deg,
    rgba(255,255,255,0.0)   310deg,
    rgba(255,255,255,0.0)   328deg,
    rgba(255,255,255,0.20)  336deg,
    rgba(255,255,255,0.0)   344deg,
    rgba(255,255,255,0.0)   360deg
  );
  animation: burstSpin 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Soft radial vignette to fade rays toward edges */
.hero-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 65% at 50% 55%,
    transparent 30%,
    rgba(218,243,74,0.55) 70%,
    rgba(218,243,74,0.90) 100%
  );
  pointer-events: none;
  z-index: 0;
}

@keyframes quoteShimmer {
  0%   { background-position: 0% 200%; }
  100% { background-position: 0% -100%; }
}

@keyframes burstSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Ensure content sits above layers */
.hero-left > * { position: relative; z-index: 1; }

.hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(0,0,0,0.55);
}
.hero-mark svg {
  width: 20px; height: 20px;
  color: rgba(0,0,0,0.70);
}

.hero-left h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin: 0;
}

/* Inline circular arrow icon inside headline */
.hero-h1-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 5vw, 62px);
  height: clamp(44px, 5vw, 62px);
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.25);
  vertical-align: middle;
  margin: 0 4px;
  position: relative;
  top: -4px;
}
.hero-h1-icon svg {
  width: clamp(20px, 2.4vw, 28px);
  height: clamp(20px, 2.4vw, 28px);
}

.hero-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Subscribe form */
.subscribe-form {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.55);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  border: 1.5px solid rgba(0,0,0,0.10);
}
.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font: inherit;
  font-size: 0.9rem;
  color: #0a0a0a;
  min-width: 0;
}
.subscribe-form input::placeholder { color: rgba(0,0,0,0.40); }
.subscribe-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.subscribe-form button:hover { background: var(--accent); transform: scale(1.02); }
.subscribe-form button svg { width:15px; height:15px; }

/* Avatar stack + member count */
.hero-members {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack img,
.avatar-stack .av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #daf34a;
  margin-left: -10px;
  object-fit: cover;
}
.avatar-stack .av {
  background: #c8e040;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a0a0a;
}
.avatar-stack :first-child { margin-left: 0; }
.hero-members-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  max-width: 18ch;
  line-height: 1.4;
}
.hero-members-text strong { color: #0a0a0a; }

/* RIGHT PANEL */
.hero-right {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}
.hero-right__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

/* All floating elements */
.hero-float {
  position: absolute;
}

/* Speaker card — top left */
.hero-speaker-card {
  top: 22px; left: 22px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.hero-speaker-card__photo {
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, #d0dff7, #edf7ff);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}
.hero-speaker-card__info { flex: 1; }
.hero-speaker-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  margin-bottom: 6px;
}
.hero-speaker-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #0a0a0a;
  line-height: 1.25;
}
.hero-speaker-card__arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #daf34a;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  align-self: flex-start;
}
.hero-speaker-card__arrow svg { width:16px; height:16px; }

/* Top-right icon button */
.hero-icon-btn {
  top: 22px; right: 22px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s;
}
.hero-icon-btn:hover { background: rgba(255,255,255,0.35); }
.hero-icon-btn svg { width:18px; height:18px; color:#fff; }

/* Track pills floating on photo */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(218,243,74,0.60);
  color: #daf34a;
  font-size: 0.83rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.hero-pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #daf34a;
  flex-shrink: 0;
}

/* Join card — bottom left */
.hero-join-card {
  bottom: 22px; left: 22px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.hero-join-card__av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-050), var(--base));
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.hero-join-card__text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.3;
}

/* Social + description — bottom right */
.hero-social-block {
  bottom: 22px; right: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.hero-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(218,243,74,0.15);
  border: 1.5px solid rgba(218,243,74,0.40);
  display: grid;
  place-items: center;
}
.hero-social-icon svg { width:15px; height:15px; color:#daf34a; }
.hero-social-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(218,243,74,0.80);
}
.hero-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.70);
  text-align: right;
  max-width: 22ch;
  line-height: 1.5;
}

/* Countdown strip (reuse in hero-left) */
.countdown-strip {
  display: flex;
  gap: 0;
  background: rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  align-self: flex-start;
}
.countdown-strip__unit {
  padding: 10px 16px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.10);
}
.countdown-strip__unit:last-child { border-right: none; }
.countdown-strip__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: #0a0a0a;
  line-height: 1;
}
.countdown-strip__label {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.40);
  margin-top: 4px;
}
.countdown-label-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.40);
  margin-bottom: 6px;
}

/* Responsive hero */
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .hero-right { min-height: 460px; }
  .hero-speaker-card { min-width: 180px; }
}
@media (max-width: 500px) {
  .hero-wrap { padding: 10px 12px 16px; }
  .hero-left { border-radius: 20px; }
  .hero-right { border-radius: 20px; min-height: 380px; }
}

/* ─── Partner strip ──────────────────────────────────── */
.partner-strip {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  height: 80px;
  overflow: hidden;
  background: #fff;
}

.partner-strip__left {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  flex-shrink: 0;
  width: 300px;
}
.partner-strip__left svg { flex-shrink: 0; color: var(--content); }
.partner-strip__left span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--content);
  line-height: 1.4;
}

.partner-strip__divider {
  width: 1px;
  height: 44px;
  background: var(--line-strong);
  flex-shrink: 0;
}

.partner-strip__marquee-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.partner-strip__marquee {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.partner-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 40px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--content);
  white-space: nowrap;
  border-right: 1px solid var(--line);
}
.partner-item svg { color: var(--content); flex-shrink: 0; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Stats ──────────────────────────────────────────── */
.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat {
  padding: clamp(32px,4vw,52px) clamp(16px,2vw,32px);
  position: relative;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem,5vw,3.8rem);
  color: var(--content);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat__num span {
  color: var(--accent);
}
.stat__label {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--content-55);
  font-weight: 500;
}

/* ─── Who we are ────────────────────────────────────── */
.who-section {
  padding-block: clamp(60px, 8vw, 100px);
}
.who-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.who-left { flex: 1; }
.who-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--content-70);
  margin-bottom: 28px;
}
.who-eyebrow__icon {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: var(--accent);
  flex-shrink: 0;
}
.who-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--content);
}
.who-heading--muted { color: var(--content-40); }
.who-gradient-box {
  margin-top: 32px;
  height: 120px;
  border-radius: 0;
  background: linear-gradient(
    135deg,
    rgb(0, 220, 200) 0%,
    rgb(0, 100, 220) 30%,
    rgb(10, 20, 140) 65%,
    rgb(5, 5, 60) 100%
  );
  background-size: 300% 300%;
  animation: who-gradient-shift 6s ease-in-out infinite;
}
@keyframes who-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.who-right { flex-shrink: 0; padding-bottom: 6px; }
.who-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--content);
  border-bottom: 2px dashed var(--accent);
  padding-bottom: 6px;
  transition: color .2s;
}
.who-link:hover { color: var(--accent); }
@media (max-width: 760px) {
  .who-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── Who we are — numbers strip ────────────────────── */
.who-numbers {
  margin-top: clamp(48px, 6vw, 72px);
}
.who-numbers__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--content-70);
  margin-bottom: 36px;
}
.who-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.who-stat {
  padding-right: 32px;
  border-right: none;
  padding-left: 32px;
}
.who-stat:first-child { padding-left: 0; }
.who-stat:last-child { border-right: none; }
.who-stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--content);
  margin-bottom: 16px;
}
.who-stat__divider {
  height: 0;
  border-top: 1px dotted var(--line-strong);
  margin-bottom: 16px;
  border-top: 1px dotted var(--line-strong);
}
.who-stat__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--content);
  margin-bottom: 8px;
}
.who-stat__desc {
  font-size: 0.875rem;
  color: var(--content-55);
  line-height: 1.6;
}
@media (max-width: 860px) {
  .who-numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .who-stat:nth-child(2) { border-right: none; }
  .who-stat:nth-child(3) { padding-left: 0; }
}
@media (max-width: 500px) {
  .who-numbers__grid { grid-template-columns: 1fr; }
  .who-stat { border-right: none; padding-left: 0; border-bottom: 1px dotted var(--line-strong); padding-bottom: 24px; }
  .who-stat:last-child { border-bottom: none; }
}

/* ─── Leadership Messages (Munari style) ────────────────── */
.leaders-section {
  background: #f4f5f6;
  padding-block: clamp(56px, 8vw, 96px);
}

.leaders-munari {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.leaders-munari__eyebrow { margin-bottom: clamp(20px, 2.5vw, 32px); }

/* Big quote */
.leaders-munari__quote {
  font-family: var(--font-display);
  font-size: 57px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #111 0%, #111 25%, rgb(0,80,200) 45%, rgb(0,80,200) 55%, #111 75%, #111 100%);
  background-size: 100% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.1em;
  overflow: visible;
  animation: quoteShimmer 10s linear infinite;
  margin: 0 0 clamp(32px, 4vw, 52px);
  font-style: normal;
  max-width: 30ch;
}

/* Two-column: left content | right photo */
.leaders-munari__columns {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: clamp(20px, 2.5vw, 32px);
}

.leaders-munari__left {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
  padding-top: 0;
  margin-top: 0;
}
.leaders-munari__photo {
  margin-top: 0;
}

/* Name + role + position in one horizontal row */
.leaders-munari__namerow {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

.leaders-munari__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--content);
  margin: 0;
}

.leaders-munari__bottom { display: none; }

.leaders-munari__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.leaders-munari__meta-label {
  font-size: 0.75rem;
  color: var(--content-55);
  margin-top: 12px;
}
.leaders-munari__meta-label:first-child { margin-top: 0; }
.leaders-munari__meta-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--content);
  line-height: 1.5;
}

.leaders-munari__body {
  font-size: 1.05rem;
  color: var(--content-55);
  line-height: 1.85;
}
.leaders-munari__cta {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.leaders-munari__cta:hover { text-decoration: underline; }

.leaders-munari__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.2);
  transform-origin: top center;
  display: block;
}
.leaders-munari__photo {
  width: 260px;
  height: 320px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: start;
}

@media (max-width: 760px) {
  .leaders-munari__bottom { grid-template-columns: 1fr; }
  .leaders-munari__photo { aspect-ratio: 4/3; }
}

/* ─── Congress Schedule ──────────────────────────────── */
.sched-section {
  background: #fff;
  padding-block: clamp(56px, 8vw, 96px);
}
.sched-header .who-eyebrow {
  margin-bottom: 12px;
}
.sched-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.sched-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}
/* ─── Event List (redesign) ──────────────────────────── */
.ev-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 60px);
  flex-wrap: wrap;
  gap: 16px;
}
.ev-count-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,80,200,0.07);
  border: 1px solid rgba(0,80,200,0.15);
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.ev-list { display: flex; flex-direction: column; }

.ev-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  padding-block: clamp(32px, 4vw, 48px);
  padding-right: 20px;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
  cursor: default;
}
.ev-item[hidden] { display: none !important; }
.ev-item:first-child { border-top: 1px solid var(--line); }
.ev-item:hover { background: #fff; }
.ev-item:hover .ev-date__day { color: var(--accent); }
.ev-item:hover .ev-cta { gap: 10px; }

/* Date block */
.ev-date {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
  padding-right: 32px;
  padding-left: 20px;
  flex-shrink: 0;
  align-items: center;
  text-align: center;
}
.ev-date__weekday {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--content-45);
  margin-bottom: 2px;
}
.ev-date__day {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--content);
  transition: color .25s;
}
.ev-date__day--tba {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  color: var(--content-55);
}
.ev-date__month {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--content-55);
  margin-top: 6px;
}

/* Content body */
.ev-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 32px;
  border-left: 1.5px solid var(--line);
}
.ev-body__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ev-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 700;
  color: var(--content);
  margin: 0;
  line-height: 1.35;
  flex: 1;
}
.ev-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.ev-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.ev-chip--person  { background: #dce8ff; color: #1a4fc4; border: none; }
.ev-chip--online  { background: #d4f5e7; color: #0a7a52; border: none; }
.ev-chip--hybrid  { background: #e8dcff; color: #5b30c8; border: none; }
.ev-chip--loc     { background: #ebebeb; color: #555; border: none; font-weight: 600; letter-spacing: 0; }

.ev-desc {
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--content-55);
  margin: 0;
  max-width: 68ch;
}
.ev-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}
.ev-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--content-45);
}
.ev-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap .2s;
}
.ev-cta:hover { gap: 10px; }

.ev-footer-row {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: left;
}

/* ===== CONGRESS PRESIDENT ===== */
/* ===== CONGRESS PRESIDENT — editorial quote + portrait ===== */
.pres-section {
  background: #f4f5f6;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-block: clamp(56px, 7vw, 88px);
}
.pres-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Two-zone: text left, portrait right */
.pres-layout {
  display: grid;
  grid-template-columns: 1fr clamp(300px, 30vw, 400px);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

/* Left: text content */
.pres-content {
  display: flex;
  flex-direction: column;
}
.pres-content__eyebrow {
  margin-bottom: 28px;
}
.pres-quote-accent {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, #00d4aa, #0084ff, #0050c8, #06063a);
  background-size: 300% 100%;
  border-radius: 2px;
  margin-bottom: 28px;
  animation: accent-gradient-flow 3s ease-in-out infinite;
}
@keyframes accent-gradient-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.pres-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.03em;
  margin: 0 0 24px 0;
}
.pres-quote .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  animation: quote-color-wave 4s ease-in-out infinite;
  animation-play-state: paused;
}
.pres-quote.pres-quote--visible .word {
  opacity: 1;
  transform: translateY(0);
  animation-play-state: running;
}
@keyframes quote-color-wave {
  0%, 100% { color: var(--content); }
  45%, 55% { color: #0050c8; }
}
.pres-subtext {
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.8;
  color: var(--content-55);
  margin: 0;
}

/* Thin divider */
.pres-rule {
  height: 1px;
  background: var(--line);
  margin-block: 28px;
}

/* Byline row */
.pres-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pres-byline__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.pres-byline__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--content);
  display: block;
}
.pres-byline__role {
  font-size: 0.85rem;
  color: var(--content-55);
  display: block;
}
.pres-byline__creds {
  font-size: 0.75rem;
  color: var(--content-45);
  display: block;
  margin-top: 2px;
}
.pres-byline__cta {
  flex-shrink: 0;
}

/* Right: portrait */
.pres-portrait {
  height: clamp(420px, 52vh, 540px);
  background: #dce6f0;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.pres-portrait picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.pres-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 900px) {
  .pres-section {
    min-height: 0;
    align-items: stretch;
    padding-block: clamp(48px, 8vw, 72px);
  }
  .pres-layout {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 48px);
  }
  .pres-portrait {
    width: min(100%, 360px);
    height: clamp(280px, 72vw, 420px);
    margin-inline: auto;
  }
  .pres-quote-accent {
    width: 48px;
    margin-bottom: 20px;
  }
  .pres-rule {
    margin-block: 22px;
  }
}

@media (max-width: 520px) {
  .pres-content__eyebrow {
    margin-bottom: 20px;
  }
  .pres-quote {
    font-size: clamp(1.15rem, 5.2vw, 1.45rem);
    line-height: 1.4;
    margin-bottom: 18px;
  }
  .pres-subtext {
    font-size: 0.92rem;
    line-height: 1.75;
  }
  .pres-byline {
    gap: 12px;
  }
  .pres-byline__name {
    font-size: 0.98rem;
  }
  .pres-byline__role {
    font-size: 0.82rem;
  }
  .pres-byline__creds {
    font-size: 0.72rem;
    line-height: 1.5;
  }
  .pres-portrait {
    height: clamp(260px, 68vw, 360px);
  }
}

/* ===== TESTIMONIALS ===== */
.testi-section {
  background: linear-gradient(160deg, #e8f0fe 0%, #f5f8ff 40%, #eef3ff 100%);
  padding-block: clamp(64px, 9vw, 100px);
  overflow: hidden;
}
.testi-header {
  margin-bottom: clamp(40px, 5vw, 60px);
  text-align: center;
}
.testi-header .who-eyebrow {
  justify-content: center;
  margin-bottom: 12px;
}
.testi-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--content);
  margin: 0;
}

/* Marquee rows */
.testi-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  margin-bottom: 16px;
}
.testi-marquee:last-child { margin-bottom: 0; }

.testi-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.testi-marquee__track--left  { animation: marqLeft  38s linear infinite; }
.testi-marquee__track--right { animation: marqRight 44s linear infinite; }
.testi-marquee__track:hover  { animation-play-state: paused; }

@keyframes marqLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marqRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* Card */
.testi-card {
  width: 340px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: none;
}
.testi-card--blue {
  background: linear-gradient(140deg, #0d2260, #0a1a4a);
  box-shadow: 0 4px 24px rgba(10,26,74,0.25);
}
.testi-card--blue::before {
  color: rgba(255,255,255,0.06);
}

/* Stars */
.testi-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testi-card__stars span {
  font-size: 0.85rem;
  color: #f5a623;
}
.testi-card--blue .testi-card__stars span {
  color: #ffc94d;
}

.testi-card__quote {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--content);
  margin: 0 0 20px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.testi-card--blue .testi-card__quote {
  color: rgba(255,255,255,0.82);
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.testi-card--blue .testi-card__author {
  border-top-color: rgba(255,255,255,0.1);
}
.testi-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(100,160,255), rgb(0,90,210));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.testi-card--blue .testi-card__avatar {
  background: rgba(255,255,255,0.15);
}
.testi-card__author > div > strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--content);
}
.testi-card--blue .testi-card__author > div > strong { color: #fff; }
.testi-card__author > div > span {
  display: block;
  font-size: 0.7rem;
  color: var(--content-55);
  margin-top: 1px;
}
.testi-card--blue .testi-card__author > div > span { color: rgba(255,255,255,0.4); }

/* ===== CTA ===== */
.cta-section {
  background: #fff;
  padding-block: clamp(40px, 6vw, 72px);
}
.cta-card {
  border-radius: 24px;
  background: radial-gradient(ellipse at top right,
    rgb(0, 220, 200) 0%,
    rgb(0, 100, 220) 35%,
    rgb(10, 20, 140) 65%,
    rgb(5, 5, 60) 100%
  );
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 80px);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-card__overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,  rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
  border-radius: 24px;
}
.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 820px;
  margin-inline: auto;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 6px 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}
.cta-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
  max-width: 460px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0a1a6e;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cta-btn-primary:hover { opacity: 0.9; }
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.cta-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.sched-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--content-55);
}
.sched-item__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--content-55);
  transition: all 0.2s;
}
.sched-item:hover .sched-item__arrow {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,100,220,0.05);
}
@media (max-width: 600px) {
  .sched-header { flex-direction: column; gap: 16px; }
  .sched-item { flex-wrap: wrap; }
  .sched-item__arrow { display: none; }
}

/* ─── Why Attend Cards ───────────────────────────────── */
.why-cards-section {
  background: #fff;
  padding-block: clamp(56px, 8vw, 96px);
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(36px, 5vw, 56px);
}
.why-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}
.why-card--blue {
  background: linear-gradient(160deg, rgb(0,90,200) 0%, rgb(5,5,90) 100%);
  color: #fff;
}
.why-card--image { color: #fff; }
.why-card--accent {
  background: rgb(0,220,180);
  color: #0a0a2e;
}
.why-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.why-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 45%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
}
.why-card__top {
  position: relative;
  z-index: 2;
}
.why-card__icon { opacity: 0.9; display: block; }
.why-card__badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card__badge--dark {
  background: rgba(0,0,0,0.15);
  color: #0a0a2e;
}
.why-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  margin: 0;
  color: inherit;
}
.why-card__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.8;
  color: inherit;
}
@media (max-width: 768px) {
  .why-cards { grid-template-columns: 1fr; }
  .why-card { min-height: 300px; }
}

/* ─── Two-column editorial layout ───────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,88px);
  align-items: center;
}
.split--reverse .split__visual { order: -1; }
.split__content { }
.split__content h2 { margin: 16px 0 22px; }
.split__content p + p { margin-top:14px; }
.split__visual { position: relative; }

.split__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}

/* Feature list in split layout */
.feature-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.feature-item:last-child { border-bottom: 1px solid var(--line); }
.feature-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 3px;
  flex-shrink: 0;
  width: 28px;
}
.feature-body h4 { margin-bottom: 5px; font-size:1rem; }
.feature-body p { font-size:0.9rem; }

/* ─── Audience chips row ─────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.audience-item {
  background: var(--surface);
  padding: clamp(28px,3vw,44px) clamp(22px,2.5vw,36px);
  transition: background .25s;
}
.audience-item:hover { background: var(--base); }
.audience-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--content-40);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.audience-item h3 { font-size:1.25rem; margin-bottom:10px; }

/* ─── Programme days ─────────────────────────────────── */
.days-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.day-col {
  padding: clamp(28px,3vw,44px) clamp(22px,2.5vw,36px);
  border-right: 1px solid var(--line);
  position: relative;
}
.day-col:last-child { border-right: none; }
.day-col::before {
  content: attr(data-day);
  position: absolute;
  bottom: clamp(28px,3vw,44px);
  right: clamp(22px,2.5vw,36px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5rem;
  color: var(--line-strong);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.day-col__date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.day-col h3 { margin-bottom: 12px; }
.day-col p { font-size:0.92rem; }

/* ─── Speakers ───────────────────────────────────────── */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(18px,2vw,28px);
}
.speaker {}
.speaker__photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(160deg, #d0dff7, var(--base));
  margin-bottom: 14px;
  position: relative;
}
.speaker__initials {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--accent);
  opacity: 0.4;
}
.speaker__tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(7,17,30,0.75);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.speaker h4 { font-size:1rem; }
.speaker__role { font-size:0.85rem; color:var(--content-55); margin-top:3px; }

/* ─── Partners / logos ───────────────────────────────── */
.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(32px,5vw,72px);
  align-items: center;
  justify-content: center;
}
.logos-row span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--content-40);
  white-space: nowrap;
}

/* ─── CTA block ──────────────────────────────────────── */
.cta-block {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(52px,7vw,88px) clamp(40px,6vw,72px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px,4vw,64px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,73,219,0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-block h2 { color: #fff; margin-top:10px; }
.cta-block p { color: var(--ink-text); margin-top:12px; }
.cta-block__actions { display:flex; flex-direction:column; gap:12px; flex-shrink:0; align-items:flex-start; }

.deadline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}
.deadline strong { color: rgba(255,255,255,0.85); }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--ink-text);
  padding-block: clamp(64px,8vw,100px) 36px;
  border-top: 1px solid var(--ink-line);
}

/* Newsletter banner */
.footer__newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 5vw, 56px);
  margin-bottom: clamp(48px, 6vw, 72px);
  background: linear-gradient(135deg, rgba(0,80,200,0.25) 0%, rgba(0,180,160,0.15) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__newsletter-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(0,200,180);
  margin-bottom: 6px;
}
.footer__newsletter-text p {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.footer__newsletter-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.footer__newsletter-form input {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.88rem;
  width: 260px;
  outline: none;
}
.footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer__newsletter-form button {
  padding: 11px 24px;
  border-radius: 999px;
  border: none;
  background: rgb(0,80,200);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.footer__newsletter-form button:hover { background: #0050c8; }

/* Event info badges */
.footer__event-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
}
.footer__event-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.footer__event-badge svg { flex-shrink: 0; opacity: 0.7; }

/* Tag */
.footer__tag {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0,200,180,0.15);
  border: 1px solid rgba(0,200,180,0.3);
  color: rgb(0,200,180);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: clamp(32px,4vw,56px);
  padding-bottom: clamp(40px,5vw,64px);
  border-bottom: 1px solid var(--ink-line);
}
.footer .brand__badge { background: rgba(255,255,255,0.10); }
.footer .brand__name { color:#fff; }
.footer .brand__sub { color:rgba(255,255,255,0.35); }
.footer__about { margin-top:20px; font-size:0.88rem; color:rgba(255,255,255,0.45); line-height:1.75; max-width:30ch; }
.footer__col .footer__heading,
.footer__col p.footer__heading {
  font-family: var(--font-text);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 20px;
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color .2s;
}
.footer__col a:hover { color: #fff; }

.social { display:flex; gap:8px; margin-top:24px; }
.social a {
  width:36px; height:36px; border-radius:6px;
  background: rgba(255,255,255,0.07);
  display:grid; place-items:center;
  color: rgba(255,255,255,0.45);
  transition: background .2s, color .2s;
}
.social a:hover { background:var(--accent); color:#fff; }
.social svg { width:16px; height:16px; }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #fff;
}
.footer__bottom p { color: rgba(255,255,255,0.55); }
.footer__bottom a { color:inherit; }
.footer__bottom a:hover { color:rgba(255,255,255,0.60); }

/* ─── Interior pages ─────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding-block: clamp(64px,9vw,110px) clamp(48px,6vw,80px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,73,219,0.15) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  pointer-events: none;
}
.page-hero__inner { position:relative; max-width:800px; }
.page-hero h1 { color:#fff; margin: 16px 0 0; font-size:clamp(2.6rem,6vw,4.2rem); }
.breadcrumb { font-size:0.82rem; color:rgba(255,255,255,0.35); display:flex; gap:8px; align-items:center; }
.breadcrumb a:hover { color:rgba(255,255,255,0.70); }

/* ─── Agenda / tabs ──────────────────────────────────── */
.tabs { display:inline-flex; gap:2px; padding:4px; background:var(--base); border-radius:var(--r-sm); border:1px solid var(--line); flex-wrap:wrap; }
.tab { padding:9px 18px; border-radius:var(--r-sm); font-weight:600; font-size:0.88rem; color:var(--content-55); transition:.2s; }
.tab.active { background:#fff; color:var(--content); box-shadow:var(--shadow-sm); }
.agenda { display:none; }
.agenda.active { display:flex; flex-direction:column; gap:1px; animation:fadeUp .4s ease both; }
.agenda__row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 22px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.agenda__row:first-child { border-top:1px solid var(--line); }
.agenda__row:hover { background:var(--base); }
.agenda__time { font-family:var(--font-display); font-weight:700; color:var(--accent); font-size:0.92rem; }
.agenda__title { font-weight:600; font-size:0.95rem; }
.agenda__desc { color:var(--content-55); font-size:0.85rem; margin-top:3px; }
.agenda__track {
  font-size: 0.68rem; font-weight:600; padding:4px 10px;
  border-radius:3px; background:var(--base); color:var(--content-55);
  border:1px solid var(--line); white-space:nowrap;
}

/* ─── Pricing ────────────────────────────────────────── */
.price {
  background: var(--surface); border:1px solid var(--line);
  border-radius:var(--r-lg); padding:32px;
  display:flex; flex-direction:column;
  transition: border-color .25s, box-shadow .25s;
}
.price:hover { border-color:var(--line-strong); box-shadow:var(--shadow-md); }
.price--featured { border-color:var(--accent); }
.price__badge {
  align-self: flex-start;
  font-size:0.68rem; font-weight:600; letter-spacing:.08em;
  text-transform:uppercase; color:var(--accent); background:var(--accent-050);
  padding:4px 10px; border-radius:3px; margin-bottom:20px;
}
.price__name { font-weight:600; color:var(--content-55); text-transform:uppercase; letter-spacing:.1em; font-size:0.72rem; }
.price__amount { font-family:var(--font-display); font-weight:700; font-size:2.8rem; margin:12px 0 4px; letter-spacing:-0.04em; }
.price__amount small { font-size:1rem; font-weight:500; color:var(--content-55); }
.price__list { margin:20px 0 26px; display:flex; flex-direction:column; gap:10px; }
.price__list li { display:flex; gap:9px; font-size:0.92rem; color:var(--content-70); }
.price__list svg { width:16px; height:16px; color:var(--accent); flex-shrink:0; margin-top:3px; }
.price .btn { margin-top:auto; }

/* ─── Form ───────────────────────────────────────────── */
.form { display:grid; gap:18px; }
.field { display:flex; flex-direction:column; gap:7px; }
.field label { font-size:0.82rem; font-weight:600; letter-spacing:-0.005em; }
.field input,.field select,.field textarea {
  font:inherit; padding:12px 14px; border:1.5px solid var(--line-strong);
  border-radius:var(--r-sm); background:var(--surface); color:var(--content);
  transition:border-color .2s, box-shadow .2s;
}
.field input:focus,.field select:focus,.field textarea:focus {
  outline:none; border-color:var(--accent); box-shadow:0 0 0 4px var(--accent-050);
}
.field--row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }

/* ─── Accordion ──────────────────────────────────────── */
.acc { border-bottom:1px solid var(--line); }
.acc__q { width:100%; display:flex; justify-content:space-between; align-items:center; gap:16px; padding:20px 0; text-align:left; font-weight:600; font-size:1rem; }
.acc__q .icon { width:24px; height:24px; border-radius:4px; background:var(--base); display:grid; place-items:center; flex-shrink:0; transition:.3s; color:var(--content-55); }
.acc.open .acc__q .icon { background:var(--accent); color:#fff; transform:rotate(45deg); }
.acc__a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.acc__a p { padding:0 0 20px; }

/* ─── Map ────────────────────────────────────────────── */
.map { aspect-ratio:16/9; border-radius:var(--r-lg); background:var(--base); border:1px solid var(--line); display:grid; place-items:center; color:var(--content-40); font-weight:500; position:relative; overflow:hidden; }
.map::before { content:""; position:absolute; inset:0; background-image:linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px); background-size:40px 40px; }

/* ─── Committee ──────────────────────────────────────── */
.member { display:flex; gap:16px; align-items:center; padding:16px 0; border-bottom:1px solid var(--line); }
.member:first-child { border-top:1px solid var(--line); }
.member__avatar { width:48px; height:48px; border-radius:50%; background:var(--base); color:var(--accent); display:grid; place-items:center; font-family:var(--font-display); font-weight:700; font-size:0.9rem; flex-shrink:0; border:1px solid var(--line); }
.member__role { font-size:0.82rem; color:var(--content-55); }

/* ─── Prose ──────────────────────────────────────────── */
.prose p { margin-bottom:16px; }
.prose h3 { margin:28px 0 10px; }
.prose ul.ticks { display:flex; flex-direction:column; gap:10px; margin:8px 0 18px; }
.prose ul.ticks li { display:flex; gap:12px; color:var(--content-70); font-size:0.95rem; }
.prose ul.ticks svg { width:18px; color:var(--accent); flex-shrink:0; margin-top:3px; }

/* ─── Reveal ─────────────────────────────────────────── */
[data-reveal] { opacity:0; transform:translateY(20px); transition:opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1); }
[data-reveal].in { opacity:1; transform:none; }
[data-reveal][data-delay="1"] { transition-delay:.07s; }
[data-reveal][data-delay="2"] { transition-delay:.14s; }
[data-reveal][data-delay="3"] { transition-delay:.21s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:none} }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .speakers-grid { grid-template-columns:repeat(2,1fr); }
  .cta-block { grid-template-columns:1fr; }
}
@media (max-width: 900px) {
  .split { grid-template-columns:1fr; }
  .split--reverse .split__visual { order:0; }
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .stat { border-bottom:1px solid var(--line); }
  .stat:nth-child(2) { border-right:none; }
  .stat:nth-child(3) { border-bottom:none; }
  .stat:nth-child(4) { border-right:none; border-bottom:none; }
  .days-grid { grid-template-columns:1fr; }
  .day-col { border-right:none; border-bottom:1px solid var(--line); }
  .day-col:last-child { border-bottom:none; }
  .audience-grid { grid-template-columns:1fr; }
  .footer__grid { grid-template-columns:1fr 1fr; gap:32px; }
  .hero h1 { font-size:clamp(2.8rem,8vw,5rem); }
}
@media (max-width: 680px) {
  .nav__links {
    position:fixed; inset:var(--nav-h) 0 auto 0; flex-direction:column; align-items:stretch;
    background:var(--surface); border-bottom:1px solid var(--line); padding:12px var(--gutter) 24px;
    gap:2px; transform:translateY(-120%); opacity:0; pointer-events:none;
    transition:transform .3s cubic-bezier(.2,.8,.2,1), opacity .25s;
    box-shadow:var(--shadow-md);
  }
  body.nav-open .nav__links { transform:none; opacity:1; pointer-events:auto; }
  .nav__links a { padding:12px 10px; font-size:1rem; }
  .nav__toggle { display:flex; }
  .nav__cta .btn:not(.nav__toggle) { display:none; }
  .speakers-grid { grid-template-columns:repeat(2,1fr); }
  .footer__grid { grid-template-columns:1fr; }
  .stats-inner { grid-template-columns:1fr 1fr; }
  .agenda__row { grid-template-columns:1fr; gap:6px; }
  .agenda__track { align-self:flex-start; }
  .countdown-strip { flex-wrap:wrap; }
  .hero__bottom { flex-direction:column; align-items:flex-start; }
  .field--row { grid-template-columns:1fr; }
}
@media (prefers-reduced-motion:reduce) {
  *{animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto;}
  [data-reveal]{opacity:1;transform:none;}
}

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 80, 200, 0.35);
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}
.back-to-top:hover { background: var(--accent-600); transform: translateY(-2px); }
.back-to-top:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.back-to-top[hidden] { display: none; }

/* ── Interactive focus polish ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.gallery-cat-btn:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: -2px;
}

/* ── Utility empty state ── */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--content-55);
}
.empty-state svg { margin: 0 auto 16px; opacity: 0.35; display: block; }
