:root {
  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --ink: #111827;
  --ink-2: #243145;
  --muted: #667085;
  --paper: #fff8ee;
  --paper-2: #f6f1e8;
  --line: rgba(17, 24, 39, 0.12);
  --coral: #d45b49;
  --coral-dark: #ad3e32;
  --emerald: #0f766e;
  --gold: #f1c36d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 28, 42, 0.16);
  --radius: 8px;
  --max: 1180px;
  --purple-dark: #1d0b35;
  --cream: #faf7f1;
  --night: #07111f;
  --navy: #0b2b40;
  --shadow-strong: 0 35px 90px rgba(0, 0, 0, 0.34);
}

.chrome-injected main,
.chrome-injected .legal-page,
.chrome-injected .auth-shell,
.chrome-injected .dashboard-shell {
  padding-top: 150px;
}

.chrome-injected .legal-page > .brand {
  display: none;
}

.injected-header .site-nav {
  justify-content: center;
}

.injected-header .site-nav a {
  color: inherit;
  font-weight: 900;
}

.directory-hero {
  min-height: 62vh;
  padding: 170px clamp(18px, 5vw, 72px) 70px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(11, 16, 25, 0.94), rgba(15, 118, 110, 0.82)), url("assets/summit-hero.jpg") center / cover;
  display: grid;
  align-items: end;
}

.directory-hero-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.directory-hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  max-width: 920px;
}

.directory-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.directory-stat-panel {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.directory-stat-panel strong {
  display: block;
  font-family: Georgia, serif;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.9;
}

.speaker-directory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.speaker-filter-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(20px, 3vw, 30px);
}

.speaker-filter-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.65fr);
  gap: 20px;
  align-items: end;
}

.speaker-filter-heading h2,
.speaker-filter-heading p {
  margin: 0;
}

.speaker-filter-heading p {
  color: var(--muted);
  line-height: 1.65;
}

.filter-stack {
  display: grid;
  gap: 10px;
}

.filter-row {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: center;
}

.filter-stack button,
.filter-stack a {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 16px;
  font-weight: 900;
}

.view-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.view-toggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.view-toggle button.active {
  background: var(--ink);
  color: var(--white);
}

.filter-stack button.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.speaker-search {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.35fr);
  gap: 10px;
  margin: 18px 0;
}

.speaker-search input,
.speaker-search select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

.roster-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 18px;
  margin-bottom: 18px;
}

.roster-toolbar strong {
  color: var(--ink);
}

.speaker-roster {
  display: grid;
  gap: 18px;
}

.speaker-roster.grid-view {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.speaker-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.speaker-row img {
  width: 160px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.speaker-roster.grid-view .speaker-row {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.speaker-roster.grid-view .speaker-row img,
.speaker-roster.grid-view .speaker-avatar-fallback {
  width: 100%;
  height: 230px;
}

.speaker-roster.grid-view .speaker-row .button {
  justify-self: start;
}

.speaker-row .tags,
.directory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.speaker-row .tags span,
.directory-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--emerald);
}

.speaker-row[hidden] {
  display: none;
}

.speaker-avatar-fallback {
  width: 160px;
  height: 150px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ink), var(--emerald));
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-weight: 900;
}

.roster-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 34px;
  color: var(--muted);
}

.roster-load,
.scale-directory-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.scale-directory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.scale-directory-controls {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.scale-directory-controls {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  align-items: end;
}

.scale-directory-controls > p {
  margin: 0;
}

.scale-directory-controls input,
.scale-directory-controls select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

.scale-directory-list {
  display: grid;
  gap: 14px;
}

.scale-directory-list.grid-view {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scale-directory-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}

.scale-directory-list.grid-view .scale-directory-card {
  grid-template-columns: 1fr;
}

.scale-directory-card h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.05;
  margin: 6px 0 10px;
}

.scale-directory-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.scale-directory-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.scale-directory-meta span,
.scale-directory-badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--emerald);
  background: var(--paper);
  font-size: 0.75rem;
  font-weight: 900;
}

.scale-directory-badge {
  white-space: nowrap;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.scale-directory-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 32px;
  color: var(--muted);
}

.pagination-button {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.pagination-button.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.pagination-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.pagination-ellipsis {
  min-width: 32px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.program-map {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.program-map-days {
  display: grid;
  gap: 14px;
}

.program-map-days article,
.room-ledger article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.room-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.media-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.media-command .press-card {
  min-height: 420px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-command .press-card p {
  color: rgba(255, 255, 255, 0.74);
}

.story-grid,
.partner-market,
.vc-corridor,
.startup-board {
  display: grid;
  gap: 18px;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid article,
.partner-market article,
.vc-corridor article,
.startup-board article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(22px, 3vw, 34px);
}

.partner-market {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vc-corridor {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.startup-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.directory-media-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.directory-media-strip img,
.directory-media-strip video {
  width: 100%;
  min-height: 360px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .directory-hero-inner,
  .speaker-directory,
  .scale-directory,
  .program-map,
  .media-command,
  .directory-media-strip,
  .vc-corridor {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .partner-market,
  .startup-board,
  .room-ledger,
  .speaker-filter-heading,
  .speaker-search,
  .speaker-roster.grid-view,
  .scale-directory-controls,
  .scale-directory-list.grid-view {
    grid-template-columns: 1fr;
  }

  .filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speaker-row {
    grid-template-columns: 1fr;
  }

  .speaker-row img {
    width: 100%;
    height: 260px;
  }
}

@media (max-width: 560px) {
  .filter-row {
    grid-template-columns: 1fr;
  }

  .view-toggle {
    width: 100%;
  }

  .view-toggle button {
    flex: 1;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.anchor-target {
  display: block;
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 38px;
  padding: 8px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(9, 14, 24, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.site-header.is-scrolled .announcement-bar,
.site-header.nav-active .announcement-bar {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-bottom-color: var(--line);
}

.announcement-bar p {
  margin: 0;
}

.announcement-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.announcement-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #f4c06a;
  font-weight: 900;
}

.site-header.is-scrolled .announcement-bar a,
.site-header.nav-active .announcement-bar a {
  color: var(--coral);
}

.nav-row {
  display: grid;
  grid-template-columns: minmax(180px, auto) 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: 14px clamp(18px, 4vw, 54px);
  transition: padding 180ms ease;
}

.site-header.is-scrolled .nav-row,
.site-header.nav-active .nav-row {
  padding-block: 11px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.72;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a,
.mega-trigger {
  opacity: 0.84;
}

.site-nav a:hover,
.mega-trigger:hover {
  opacity: 1;
}

.nav-item {
  position: relative;
}

.mega-trigger,
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.mega-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(860px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 260px;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

.nav-item:first-child .mega-menu {
  left: 0;
  transform: translate(0, 6px);
}

.nav-item:first-child:hover .mega-menu,
.nav-item:first-child:focus-within .mega-menu,
.nav-item:first-child.open .mega-menu {
  transform: translate(0, 0);
}

.nav-item:nth-last-child(-n + 3) .mega-menu {
  right: 0;
  left: auto;
  transform: translate(0, 6px);
}

.nav-item:nth-last-child(-n + 3):hover .mega-menu,
.nav-item:nth-last-child(-n + 3):focus-within .mega-menu,
.nav-item:nth-last-child(-n + 3).open .mega-menu {
  transform: translate(0, 0);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu span {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: var(--radius);
  opacity: 1;
}

.mega-menu a:hover {
  background: var(--paper-2);
}

.mega-menu strong,
.mega-menu small {
  display: block;
}

.mega-menu strong {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.mega-menu small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.mega-visual {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.96), rgba(15, 118, 110, 0.82)),
    var(--ink);
}

.mega-visual img {
  width: calc(100% + 36px);
  height: 116px;
  margin: -18px -18px 18px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.mega-visual strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.mega-visual small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.mega-stat {
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(244, 192, 106, 0.32), transparent 34%),
    linear-gradient(145deg, #111827, #173b3a);
}

.mega-stat strong {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 4rem;
  line-height: 0.9;
}

.mega-stat span {
  margin: 5px 0 8px;
  color: #f4c06a;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.speaker-visual,
.partner-visual,
.impact-visual,
.venue-visual {
  justify-content: space-between;
}

.mini-speakers {
  display: flex;
  margin-bottom: 28px;
}

.mini-speakers span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0;
}

.mini-speakers span:first-child {
  margin-left: 0;
}

.partner-logos {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.partner-logos span {
  min-height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.impact-visual {
  background:
    linear-gradient(145deg, rgba(201, 154, 69, 0.94), rgba(159, 62, 49, 0.92)),
    var(--coral);
}

.venue-visual {
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.96), rgba(36, 49, 69, 0.82)),
    var(--ink);
}

.nav-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.login-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
}

.volunteer-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(244, 192, 106, 0.72);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(244, 192, 106, 0.1);
  font-size: 0.82rem;
  font-weight: 900;
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.content-body {
  position: relative;
  background: var(--paper);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(9, 14, 24, 0.92) 0%, rgba(9, 14, 24, 0.78) 34%, rgba(9, 14, 24, 0.28) 72%, rgba(9, 14, 24, 0.52) 100%),
    linear-gradient(0deg, rgba(9, 14, 24, 0.78), rgba(9, 14, 24, 0.08) 48%);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.9) contrast(1.02);
}

.hero-media video {
  position: relative;
  z-index: 1;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0 116px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.hero-copy {
  max-width: 820px;
}

.event-meta {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-lede {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  color: inherit;
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.08);
}

.section .button-secondary {
  background: transparent;
}

.hero-proof {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.hero-proof div + div {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.91rem;
}

.countdown-band {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 26px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.label,
.section-kicker {
  display: block;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-band strong {
  display: block;
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 74px);
  gap: 8px;
}

.countdown span {
  min-height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.countdown strong {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.3rem;
}

.countdown small {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
}

.countdown-band a {
  color: var(--emerald);
  font-weight: 900;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  margin-top: 14px;
  margin-bottom: 44px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.split-heading p,
.transformation-copy p,
.sponsor-copy p,
.final-cta p {
  color: var(--ink-2);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome-grid article {
  min-height: 270px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.outcome-grid span {
  color: var(--gold);
  font-weight: 900;
}

.outcome-grid h3,
.persona-list h3,
.access-grid h3 {
  margin: 22px 0 10px;
  font-size: 1.18rem;
}

.outcome-grid p,
.speaker-grid p,
.persona-list p,
.access-grid p,
.ticket-grid li,
.sponsor-panel li,
.faq p,
.journey p {
  color: var(--muted);
}

.role-profile {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr) minmax(260px, 0.95fr);
  gap: 34px;
  align-items: stretch;
}

.role-profile-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.16);
}

.role-profile-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  opacity: 0.94;
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.01);
}

.role-profile-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.72)),
    linear-gradient(90deg, rgba(17, 24, 39, 0.24), rgba(17, 24, 39, 0));
}

.role-profile-visual span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.05;
}

.role-profile-copy,
.role-profile-outcomes {
  padding: 8px 0;
}

.role-profile-copy h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.role-profile-copy p,
.role-profile-outcomes li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.role-profile-copy strong {
  display: block;
  margin: 22px 0;
  padding-left: 18px;
  border-left: 4px solid var(--coral);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
}

.role-track {
  color: var(--ink) !important;
  font-weight: 850;
}

.role-profile-outcomes h4 {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.role-profile-outcomes ul {
  margin: 0 0 28px;
  padding-left: 20px;
}

.transformation {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.transformation-copy {
  max-width: 520px;
}

.transformation-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.journey {
  display: grid;
  gap: 14px;
}

.journey div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.journey small {
  color: #f1bf72;
  font-weight: 900;
  text-transform: uppercase;
}

.journey strong {
  display: block;
  margin: 4px 0 8px;
  font-size: 1.36rem;
}

.marketplace {
  padding-bottom: clamp(48px, 6vw, 84px);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.market-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
}

.market-grid h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.market-grid p {
  color: var(--muted);
  font-size: 0.94rem;
}

.pathway-hub {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pathway-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.pathway-map article {
  min-height: 310px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.pathway-map article:last-child {
  border-right: 0;
}

.pathway-map span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(15, 118, 110, 0.1);
  color: var(--emerald);
  font-weight: 900;
}

.pathway-map h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.pathway-map p {
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.pathway-map a {
  font-weight: 900;
  color: var(--coral);
  border-bottom: 2px solid rgba(201, 87, 67, 0.3);
  width: fit-content;
}

.pathway-page .trust-hero {
  min-height: auto;
}

.pathway-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.pathway-timeline article {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.pathway-timeline article:last-child {
  border-right: 0;
}

.pathway-timeline span {
  color: var(--coral);
  display: block;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.pathway-timeline strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.pathway-timeline p {
  margin: 0;
  color: var(--muted);
}

.stakeholder-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.stakeholder-brief.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.stakeholder-copy,
.stakeholder-solution {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.08);
}

.stakeholder-copy h2,
.stakeholder-solution h2 {
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.stakeholder-copy p,
.stakeholder-solution p {
  color: var(--muted);
  margin-bottom: 18px;
}

.stakeholder-lens {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.stakeholder-lens article {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.stakeholder-lens span,
.solution-list span,
.visual-caption span {
  display: block;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stakeholder-lens strong,
.solution-list strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 4px;
}

.stakeholder-lens p {
  margin: 0;
  font-size: 0.95rem;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.solution-list i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-style: normal;
  color: var(--emerald);
  background: rgba(15, 118, 110, 0.1);
  font-weight: 900;
}

.stakeholder-visual {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.stakeholder-visual img,
.stakeholder-visual video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.78;
}

.visual-caption {
  position: absolute;
  inset: auto 22px 22px;
  padding: 22px;
  background: rgba(17, 24, 39, 0.78);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.visual-caption strong {
  display: block;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1.05;
  margin-bottom: 8px;
}

.visual-caption p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.exchange-section {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.exchange-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.exchange-grid article {
  padding: clamp(26px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.exchange-grid article:last-child {
  border-right: 0;
}

.exchange-grid h3 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 0.98;
  margin: 8px 0 18px;
}

.exchange-grid ul,
.showcase-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.media-proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.media-proof-grid .feature-media,
.media-proof-grid article,
.media-proof-grid figure {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  position: relative;
  margin: 0;
}

.media-proof-grid img,
.media-proof-grid video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.82;
}

.media-proof-grid article,
.media-proof-copy {
  background: var(--white);
  padding: clamp(24px, 4vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-proof-grid figure figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--white);
  background: rgba(11, 16, 25, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 700;
  line-height: 1.45;
}

.media-proof-grid article h3 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
  margin: 8px 0 14px;
}

.people-room {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.people-room article {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.people-room article:last-child {
  border-right: 0;
}

.people-room strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.people-room p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.prep-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.prep-board > article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.08);
}

.prep-board .cta-card {
  background: var(--ink);
  color: var(--white);
}

.prep-board .cta-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-band-dark {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section-band-dark p,
.section-band-dark li {
  color: rgba(255, 255, 255, 0.72);
}

.section-band-dark .section-kicker {
  color: var(--gold);
}

.closing-cta {
  text-align: center;
  background: var(--paper);
}

.closing-cta h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.closing-cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.participation-flow {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.45fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
}

.participation-feature {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(19, 34, 56, 0.1), rgba(19, 34, 56, 0.88)),
    url("assets/role-employers-hr.svg") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.participation-feature span,
.participation-lanes span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.participation-feature h3 {
  max-width: 520px;
  margin: 16px 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.participation-feature p {
  max-width: 560px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.participation-lanes {
  display: grid;
  gap: 18px;
}

.participation-lanes article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.participation-lanes h3 {
  grid-column: 1;
  margin: 8px 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.participation-lanes p {
  grid-column: 1;
  color: var(--muted);
  line-height: 1.62;
}

.participation-lanes article > div {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 10px;
  min-width: 170px;
}

.participation-lanes a {
  display: inline-flex;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.summit-mandate {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 16, 25, 0.96), rgba(19, 92, 88, 0.86)),
    var(--ink);
}

.summit-mandate .section-kicker {
  color: #f4c06a;
}

.summit-mandate h2 {
  color: var(--white);
}

.summit-mandate-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.summit-mandate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.summit-mandate-board {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.summit-mandate-board article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.summit-mandate-board article:last-child {
  border-bottom: 0;
}

.summit-mandate-board span {
  color: #f4c06a;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.summit-mandate-board h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.summit-mandate-board p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.edge {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 92px);
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(201, 154, 69, 0.14), rgba(201, 154, 69, 0)),
    var(--paper-2);
}

.edge-copy {
  max-width: 520px;
}

.edge-copy p {
  color: var(--ink-2);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.edge-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.edge-list article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.edge-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--emerald);
  font-size: 1.08rem;
}

.edge-list span {
  color: var(--muted);
}

.destination-section {
  width: 100%;
  max-width: none;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.destination-lead {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
}

.destination-copy {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(230, 244, 255, 0.72), rgba(255, 255, 255, 0.95)),
    var(--white);
}

.destination-copy p {
  color: var(--ink-2);
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
}

.destination-proof-row {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.destination-proof-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.destination-proof-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
}

.destination-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.destination-showcase {
  display: grid;
  gap: 14px;
}

.destination-identity-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.destination-identity-strip article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 244, 0.76)),
    var(--white);
}

.destination-identity-strip article::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--coral), var(--emerald), #f4c06a);
  opacity: 0.88;
}

.identity-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.identity-mark svg {
  width: 34px;
  height: 34px;
  display: block;
}

.canada-flag {
  border-radius: 14px;
}

.canada-flag svg {
  width: 42px;
  height: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.ontario-mark svg,
.brampton-mark svg {
  fill: none;
  stroke: var(--emerald);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brampton-mark svg {
  stroke: var(--coral);
}

.destination-identity-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.destination-identity-strip small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.destination-reel {
  position: relative;
  min-height: clamp(470px, 42vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.destination-reel-media {
  position: absolute;
  inset: 0;
}

.destination-welcome-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}

.destination-reel-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: destinationReel 18s infinite;
  filter: saturate(1.06) contrast(1.04);
}

.destination-welcome-video + .destination-reel-media {
  opacity: 0;
}

.destination-reel-media img:nth-child(2) {
  animation-delay: 6s;
}

.destination-reel-media img:nth-child(3) {
  animation-delay: 12s;
}

.destination-reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 14, 24, 0.12), rgba(9, 14, 24, 0.86)),
    linear-gradient(90deg, rgba(9, 14, 24, 0.76), rgba(9, 14, 24, 0.08));
}

.destination-reel-overlay {
  position: absolute;
  left: clamp(22px, 4vw, 42px);
  right: clamp(22px, 4vw, 42px);
  bottom: clamp(72px, 7vw, 96px);
  z-index: 1;
  max-width: 660px;
  color: var(--white);
}

.destination-reel-overlay span {
  display: block;
  margin-bottom: 14px;
  color: #f4c06a;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-reel-overlay h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.98;
}

.destination-reel-overlay p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.destination-reel-status {
  position: absolute;
  left: clamp(22px, 4vw, 42px);
  right: clamp(22px, 4vw, 42px);
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-reel-status span {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.destination-reel-status span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #f4c06a;
  transform-origin: left;
  animation: destinationProgress 18s linear infinite;
}

.destination-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.destination-media-grid figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.destination-media-grid img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.destination-media-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.02), rgba(9, 14, 24, 0.72));
}

.destination-media-grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
}

.destination-media-grid strong {
  display: block;
  margin-bottom: 5px;
  color: #f4c06a;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-media-grid span {
  display: block;
  max-width: 320px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

@keyframes destinationReel {
  0% {
    opacity: 0;
    transform: scale(1.08) translateX(0);
  }
  7%,
  31% {
    opacity: 1;
  }
  38%,
  100% {
    opacity: 0;
    transform: scale(1.16) translateX(-2%);
  }
}

@keyframes destinationProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .destination-reel-media img,
  .destination-reel-status span::before {
    animation: none;
  }

  .destination-reel-media img:first-child {
    opacity: 1;
  }
}

.destination-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  counter-reset: destination;
}

.destination-rail article {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(19, 92, 88, 0.09), rgba(255, 255, 255, 0)),
    var(--paper);
}

.destination-rail article::before {
  counter-increment: destination;
  content: "0" counter(destination);
  display: block;
  margin-bottom: 28px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.destination-rail span {
  display: block;
  margin-bottom: 8px;
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-rail h3 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.destination-rail p {
  margin: 0;
  color: var(--muted);
}

.agenda-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.agenda-tabs button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.91rem;
  font-weight: 850;
}

.agenda-tabs .active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.program-architecture {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.9fr);
  gap: 1px;
  margin: 34px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.program-spine,
.program-track-stack article,
.program-buildout,
.program-days article {
  background: var(--white);
}

.program-spine {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border-left: 6px solid var(--coral);
}

.program-spine span,
.program-track-stack span,
.program-buildout span,
.program-days time {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-spine h3,
.program-track-stack h3,
.program-buildout h3,
.program-days h3 {
  margin: 10px 0;
  font-size: 1.18rem;
}

.program-spine p,
.program-track-stack p,
.program-track-stack li,
.program-buildout li,
.program-days p {
  color: var(--muted);
  line-height: 1.58;
}

.program-slot {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
}

.program-slot.confirmed {
  background: rgba(15, 118, 110, 0.08);
  color: var(--emerald);
}

.program-slot.open {
  background: rgba(199, 91, 63, 0.08);
  color: var(--coral);
}

.program-track-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.program-track-stack article {
  padding: 26px;
}

.program-track-stack ul,
.program-buildout ol {
  margin: 18px 0 0;
  padding-left: 20px;
}

.program-buildout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.4fr);
  gap: 34px;
  margin: 34px 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.program-days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.program-days article {
  padding: 26px;
}

.agenda-section .program-architecture,
.agenda-section .program-buildout,
.agenda-section .program-days,
.agenda-section > .market-grid {
  display: none !important;
}

.agenda-filter,
.speaker-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 26px 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.agenda-filter span,
.speaker-filter span {
  color: var(--ink);
  font-weight: 900;
}

.agenda-filter div,
.speaker-filter div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.agenda-filter div {
  width: 100%;
  justify-content: stretch;
}

.agenda-filter button {
  flex: 1 1 140px;
}

.speaker-filter div {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.agenda-filter button,
.speaker-filter button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
}

.speaker-filter button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
}

.speaker-filter button:last-child {
  border-right: 0;
}

.agenda-filter button.active,
.speaker-filter button.active {
  color: var(--white);
  border-color: var(--coral);
  background: var(--coral);
}

.agenda-panel {
  display: none;
  border-top: 1px solid var(--line);
}

.agenda-panel.active {
  display: block;
}

.agenda-panel article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.agenda-panel article[hidden] {
  display: none;
}

.agenda-panel time {
  color: var(--coral);
  font-weight: 900;
}

.agenda-panel h3 {
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.agenda-panel p {
  max-width: 780px;
  color: var(--muted);
}

.speakers {
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(15, 118, 110, 0)),
    var(--paper);
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.speaker-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.08);
}

.speaker-grid article[hidden] {
  display: none;
}

.speaker-initials {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.speaker-topic {
  margin-bottom: 8px;
  color: var(--coral) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.speaker-grid h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.speaker-role {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--coral);
  background: rgba(199, 91, 63, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.personas {
  display: block;
}

.persona-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.persona-list article {
  min-height: 190px;
  padding: 26px;
  background: var(--paper);
}

.research-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.research-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.research-tracks h3,
.submission-info h3 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.68rem;
}

.track-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  margin-bottom: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.track-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.track-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.track-card h4 {
  margin: 0 0 8px;
  font-size: 1.14rem;
}

.track-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.submission-info ul {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.submission-info li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  line-height: 1.45;
}

.submission-info li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--gold);
  font-size: 1.1rem;
}

.dates-box {
  padding: 22px;
  border-radius: var(--radius);
  border-left: 4px solid var(--emerald);
  background: rgba(15, 118, 110, 0.05);
  margin-bottom: 30px;
}

.dates-box h4 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  color: var(--emerald);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dates-box p {
  margin: 0 0 8px;
  font-size: 0.94rem;
}

.dates-box p:last-child {
  margin-bottom: 0;
}

.dates-box strong {
  color: var(--ink);
}

.research-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tickets {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--paper-2);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.pricing-tabs button {
  min-height: 46px;
  padding: 10px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 850;
  transition: all 180ms ease;
}

.pricing-tabs .active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.12);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
  animation: fadeIn 300ms ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ticket-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.ticket-grid .featured-ticket {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-12px);
}

.ticket-grid h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.price {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
}

.ticket-grid ul,
.sponsor-panel ul {
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.ticket-grid li,
.sponsor-panel li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

.ticket-grid li::before,
.sponsor-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
}

.featured-ticket li,
.featured-ticket .price {
  color: rgba(255, 255, 255, 0.78);
}

.sponsors {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
}

.sponsor-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-section {
  border-top: 1px solid var(--line);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.media-grid article {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.08);
}

.media-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(244, 192, 106, 0.28), transparent 34%),
    linear-gradient(145deg, #111827, #173b3a) !important;
}

.media-feature span {
  display: block;
  margin-bottom: 14px;
  color: #f4c06a;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-grid h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.media-feature p {
  color: rgba(255, 255, 255, 0.74);
}

.media-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.media-grid li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 13px;
  color: var(--muted);
}

.media-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.logo-space {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.logo-space span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px dashed rgba(17, 24, 39, 0.24);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.accessibility {
  border-top: 1px solid var(--line);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.access-grid article {
  padding: 26px;
  border-left: 4px solid var(--emerald);
  background: var(--white);
}

.logistics {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.logistics-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.logistics-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.04);
}

.logistics-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.logistics-grid h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: var(--ink);
}

.logistics-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq {
  max-width: 920px;
}

.faq h2 {
  margin-bottom: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.voice-search-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 232, 0.88)),
    var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.voice-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.voice-answer-grid article {
  min-height: 240px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background: var(--white);
}

.voice-answer-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.voice-answer-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.18rem;
}

.voice-answer-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.08rem;
  font-weight: 900;
}

summary::marker {
  color: var(--coral);
}

details p {
  max-width: 760px;
  padding-bottom: 22px;
}

.final-cta {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 90px;
  padding: clamp(42px, 7vw, 76px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 154, 69, 0.35), transparent 32%),
    linear-gradient(135deg, #111827, #173b3a);
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 16px;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.subscribe-section {
  width: 100%;
  margin: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px) max(18px, calc((100vw - var(--max)) / 2));
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(19, 92, 88, 0.08), rgba(201, 154, 69, 0.1)),
    var(--paper);
  border-top: 1px solid var(--line);
}

.subscribe-copy h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.subscribe-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
}

.subscribe-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.subscribe-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.subscribe-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.subscribe-form input {
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
}

.subscribe-form input::placeholder {
  color: rgba(91, 107, 132, 0.72);
}

.subscribe-form input:focus {
  outline: 2px solid rgba(244, 192, 106, 0.9);
  outline-offset: 2px;
  border-radius: 999px;
}

.subscribe-form button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.subscribe-form small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  padding: 72px clamp(18px, 4vw, 54px) 30px;
  color: rgba(255, 255, 255, 0.72);
  background: #0b1019;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.6fr);
  gap: 28px;
  align-items: start;
}

.checkout-form,
.checkout-summary,
.dashboard-profile-card,
.dashboard-content article,
.dashboard-workplan {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.checkout-form,
.checkout-summary,
.dashboard-profile-card,
.dashboard-workplan {
  padding: clamp(22px, 4vw, 38px);
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.checkout-grid.compact {
  grid-template-columns: 1fr 1fr;
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form select {
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.payment-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.payment-panel p,
.checkout-summary p,
.checkout-form small {
  color: var(--muted);
}

.checkout-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0;
  border: 1px solid var(--line);
  background: #fff;
}

.checkout-trust-strip article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.checkout-trust-strip article:last-child {
  border-right: 0;
}

.checkout-trust-strip span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-weight: 950;
}

.checkout-trust-strip strong,
.checkout-role-grid strong {
  color: var(--ink);
  font-size: 1rem;
}

.checkout-trust-strip small,
.checkout-role-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.checkout-summary {
  position: sticky;
  top: 150px;
}

.checkout-summary span,
.dashboard-profile-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-summary h2 {
  margin-top: 12px;
}

.checkout-summary ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-role-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 28px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.checkout-role-panel h2,
.dashboard-support h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 0.98;
}

.checkout-role-grid,
.dashboard-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}

.checkout-role-grid article,
.dashboard-support-grid a {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-role-grid article:nth-child(2n),
.dashboard-support-grid a:nth-child(2n) {
  border-right: 0;
}

.checkout-role-grid article:nth-last-child(-n + 2),
.dashboard-support-grid a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: stretch;
}

.dashboard-profile-card {
  display: grid;
  align-content: center;
  gap: 12px;
}

.dashboard-profile-card strong {
  color: var(--ink);
  font-size: 1.4rem;
}

.dashboard-profile-card small {
  color: var(--muted);
}

.dashboard-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.dashboard-role-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.dashboard-role-tabs button {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink-2);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
}

.dashboard-role-tabs button:last-child {
  border-right: 0;
}

.dashboard-role-tabs button.active {
  color: var(--white);
  background: var(--ink);
}

.dashboard-content {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.dashboard-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dashboard-content article {
  min-height: 150px;
  padding: 22px;
}

.dashboard-content article span {
  display: block;
  margin-bottom: 12px;
  color: var(--emerald);
  font-weight: 950;
}

.dashboard-content article p,
.dashboard-workplan li {
  color: var(--muted);
}

.dashboard-workplan ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.dashboard-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.dashboard-journey article {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  box-shadow: none;
}

.dashboard-journey article:last-child {
  border-right: 0;
}

.dashboard-journey span {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-journey p {
  color: rgba(255, 255, 255, 0.74);
}

.dashboard-support {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 28px;
}

.dashboard-support-grid strong {
  color: var(--emerald);
  font-size: 1.15rem;
}

.dashboard-support-grid span {
  color: var(--muted);
}

.legal-page {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 88px) 0;
}

.legal-page .brand {
  margin-bottom: 52px;
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-page h2 {
  margin: 34px 0 10px;
  color: var(--ink);
}

.legal-page p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.trust-page {
  width: min(1120px, calc(100% - 36px));
}

.trust-hero {
  padding: clamp(36px, 6vw, 70px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 232, 0.92));
}

.trust-hero h1 {
  max-width: 980px;
  margin: 0 0 20px;
}

.trust-hero p {
  max-width: 860px;
}

.conduct-hero {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(15, 118, 110, 0.9));
  color: #fff;
}

.conduct-hero p,
.conduct-hero .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.privacy-hero {
  background: linear-gradient(135deg, rgba(235, 248, 247, 0.95), rgba(255, 253, 248, 0.96));
}

.refund-hero {
  background: linear-gradient(135deg, rgba(255, 246, 228, 0.98), rgba(255, 255, 255, 0.96));
}

.terms-hero {
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.76), rgba(255, 253, 248, 0.96));
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-grid,
.policy-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-top: 0;
  background: #fff;
}

.trust-grid article,
.policy-timeline article {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child,
.policy-timeline article:last-child {
  border-right: 0;
}

.trust-grid span,
.policy-timeline span {
  display: block;
  margin-bottom: 16px;
  color: var(--coral);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.policy-timeline strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.policy-body {
  max-width: 860px;
  padding: clamp(34px, 6vw, 64px) 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(5, minmax(120px, 1fr));
  gap: clamp(24px, 4vw, 46px);
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 14px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand > strong {
  display: block;
  color: #f4c06a;
  font-size: 0.92rem;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  font-weight: 750;
}

.footer-column a:hover {
  color: var(--white);
}

.newsroom-page {
  padding-top: 170px;
  background: var(--paper);
}

.newsroom-page a {
  text-decoration: none;
}

.newsroom-hero,
.newsroom-controls,
.newsroom-top-stories,
.newsroom-layout,
.newsroom-archive,
.newsroom-subscribe {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.newsroom-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: end;
  padding: clamp(54px, 8vw, 96px) 0 34px;
  border-bottom: 1px solid var(--line);
}

.newsroom-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 8.4rem);
  line-height: 0.9;
}

.newsroom-hero p {
  max-width: 840px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.newsroom-brief {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.newsroom-brief span,
.newsroom-section-heading .section-kicker,
.newsroom-lead-card span,
.newsroom-side-stack span,
.news-row span,
.archive-grid span {
  display: block;
  color: var(--coral);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.newsroom-brief strong {
  display: block;
  margin: 12px 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.05;
}

.newsroom-brief p,
.newsroom-sidebar p,
.news-row p,
.newsroom-side-stack p,
.newsroom-lead-card p,
.newsroom-section-heading p,
.newsroom-subscribe small {
  color: var(--muted);
}

.newsroom-brief a,
.news-row a,
.newsroom-side-stack a,
.newsroom-sidebar a:not(.button) {
  color: var(--ink);
  font-weight: 900;
}

.newsroom-controls {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 22px 0;
}

.newsroom-search {
  display: grid;
  gap: 8px;
}

.newsroom-search label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsroom-search input {
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.newsroom-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: end;
  justify-content: flex-end;
}

.newsroom-categories button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.newsroom-categories button.active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.newsroom-top-stories {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  margin-top: 16px;
}

.newsroom-lead-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.newsroom-lead-card img,
.news-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsroom-lead-card > div {
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 52px);
}

.newsroom-lead-card h2 {
  margin: 14px 0;
  font-size: clamp(2.2rem, 4.4vw, 5.2rem);
  line-height: 0.94;
}

.newsroom-side-stack {
  display: grid;
  gap: 18px;
}

.newsroom-side-stack article,
.newsroom-sidebar section {
  display: grid;
  align-content: end;
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.newsroom-side-stack h3,
.news-row h3 {
  margin: 12px 0;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.03;
}

.newsroom-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.32fr);
  gap: 28px;
  margin-top: 56px;
  align-items: start;
}

.newsroom-section-heading {
  margin-bottom: 20px;
}

.newsroom-section-heading h2 {
  margin: 6px 0 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.95;
}

.newsroom-main-feed {
  display: grid;
  gap: 1px;
}

.news-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 0;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.news-row + .news-row {
  border-top: 0;
}

.news-row > div {
  padding: 26px;
}

.newsroom-sidebar {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 16px;
}

.newsroom-sidebar section {
  min-height: auto;
  align-content: start;
}

.newsroom-sidebar h2 {
  margin: 0 0 16px;
  font-size: 1.3rem;
}

.newsroom-sidebar a:not(.button) {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.newsroom-archive {
  padding-top: 70px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}

.archive-grid article {
  min-height: 240px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.archive-grid article:last-child {
  border-right: 0;
}

.archive-grid strong {
  display: block;
  margin-top: 28px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.newsroom-subscribe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: 32px;
  align-items: end;
  margin-top: 70px;
  padding: clamp(32px, 6vw, 56px);
  border: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.newsroom-subscribe h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 0.96;
}

.newsroom-subscribe form {
  display: grid;
  gap: 12px;
}

.newsroom-subscribe label {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.newsroom-subscribe form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsroom-subscribe input {
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.news-item[hidden] {
  display: none;
}

.article-page {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(32px, 8vw, 88px) 24px;
}

.article-page .brand {
  margin-bottom: clamp(44px, 8vw, 84px);
}

.article-page h1 {
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.92;
  margin: 0 0 28px;
}

.article-page h2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  margin-top: 48px;
}

.article-page p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.72;
}

.article-lede {
  color: var(--ink) !important;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem) !important;
  line-height: 1.45 !important;
}

.article-takeaway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 46px 0;
  border: 1px solid var(--line);
  background: #fff;
}

.article-takeaway-grid article {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.article-takeaway-grid article:last-child {
  border-right: 0;
}

.article-takeaway-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.article-action-panel {
  margin-top: 50px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(246, 241, 232, 0.92), rgba(255, 255, 255, 0.96));
}

.article-action-panel h2 {
  margin-top: 0;
}

.footer-bottom {
  max-width: var(--max);
  margin: 44px auto 0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

@media (max-width: 980px) {
  .announcement-bar {
    justify-content: space-between;
    gap: 12px;
    font-size: 0.76rem;
  }

  .nav-row {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .nav-toggle {
    justify-self: end;
    grid-column: 2;
    display: grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav,
  .login-link {
    display: none;
  }

  .nav-actions {
    grid-column: 3;
  }

  .header-cta {
    padding: 11px 14px;
  }

  .newsroom-hero,
  .newsroom-controls,
  .newsroom-top-stories,
  .newsroom-lead-card,
  .newsroom-layout,
  .newsroom-subscribe,
  .checkout-role-panel,
  .dashboard-support {
    grid-template-columns: 1fr;
  }

  .newsroom-categories {
    justify-content: flex-start;
  }

  .newsroom-sidebar {
    position: static;
  }

  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-trust-strip,
  .dashboard-journey,
  .trust-grid,
  .policy-timeline,
  .article-takeaway-grid {
    grid-template-columns: 1fr;
  }

  .checkout-trust-strip article,
  .trust-grid article,
  .policy-timeline article,
  .dashboard-journey article,
  .article-takeaway-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dashboard-journey article {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .checkout-trust-strip article:last-child,
  .trust-grid article:last-child,
  .policy-timeline article:last-child,
  .dashboard-journey article:last-child,
  .article-takeaway-grid article:last-child {
    border-bottom: 0;
  }

  .site-header.nav-active .site-nav {
    position: fixed;
    inset: 108px 18px auto;
    display: grid;
    gap: 8px;
    max-height: calc(100vh - 126px);
    overflow: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    color: var(--ink);
  }

  .site-header.nav-active .site-nav a,
  .site-header.nav-active .mega-trigger {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 14px;
    color: var(--ink);
    text-align: left;
  }

  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 4px;
    display: none;
    padding: 10px 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item.open .mega-menu {
    display: grid;
  }

  .mega-menu a {
    padding: 12px 14px;
    background: var(--paper);
  }

  .mega-menu span {
    margin: 8px 14px;
  }

  .hero {
    position: relative;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    z-index: auto;
  }

  .hero-media {
    position: absolute;
    z-index: 0;
  }

  .content-body {
    margin-top: 0;
    box-shadow: none;
  }

  .hero-content,
  .split-heading,
  .transformation,
  .edge,
  .summit-mandate,
  .personas,
  .sponsors,
  .subscribe-section,
  .destination-section,
  .research-grid,
  .logistics-grid,
  .program-architecture,
  .program-buildout,
  .participation-flow,
  .stakeholder-brief,
  .stakeholder-brief.reverse,
  .pathway-map,
  .pathway-timeline,
  .exchange-grid,
  .media-proof-grid,
  .people-room,
  .prep-board,
  .role-profile {
    grid-template-columns: 1fr;
  }

  .destination-lead {
    grid-template-columns: 1fr;
  }

  .destination-copy {
    padding: 28px;
  }

  .participation-feature {
    min-height: 360px;
  }

  .role-profile-visual,
  .role-profile-visual img {
    min-height: 280px;
  }

  .pathway-map article,
  .pathway-timeline article,
  .exchange-grid article,
  .people-room article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pathway-map article:last-child,
  .pathway-timeline article:last-child,
  .exchange-grid article:last-child,
  .people-room article:last-child {
    border-bottom: 0;
  }

  .destination-media-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .destination-rail {
    grid-template-columns: 1fr;
  }

  .destination-rail article {
    min-height: auto;
  }

  .speaker-filter div {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: var(--radius);
  }

  .speaker-filter button {
    white-space: normal;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .voice-answer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkout-shell,
  .dashboard-hero {
    grid-template-columns: 1fr;
  }

  .dashboard-role-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkout-role-grid,
  .dashboard-support-grid {
    grid-template-columns: 1fr;
  }

  .checkout-role-grid article,
  .dashboard-support-grid a {
    border-right: 0;
  }

  .checkout-role-grid article:nth-last-child(-n + 2),
  .dashboard-support-grid a:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .checkout-role-grid article:last-child,
  .dashboard-support-grid a:last-child {
    border-bottom: 0;
  }

  .checkout-summary {
    position: static;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-content {
    padding-top: 160px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .hero-proof div + div {
    margin: 0;
    padding: 0;
    border-top: 0;
  }

  .countdown-band {
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(60px, 1fr));
  }

  .outcome-grid,
  .market-grid,
  .speaker-grid,
  .ticket-grid,
  .access-grid,
  .program-track-stack,
  .program-days,
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ticket-grid .featured-ticket {
    transform: none;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .newsroom-page {
    padding-top: 142px;
  }

  .news-row {
    grid-template-columns: 1fr;
  }

  .news-row img {
    height: 230px;
  }

  .archive-grid,
  .newsroom-subscribe form > div {
    grid-template-columns: 1fr;
  }

  .archive-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .archive-grid article:last-child {
    border-bottom: 0;
  }

  .hero-proof,
  .outcome-grid,
  .market-grid,
  .speaker-grid,
  .persona-list,
  .edge-list,
  .ticket-grid,
  .access-grid,
  .media-grid,
  .program-track-stack,
  .program-days,
  .logo-space {
    grid-template-columns: 1fr;
  }

  .role-profile-visual,
  .role-profile-visual img {
    min-height: 230px;
  }

  .speaker-filter div {
    grid-template-columns: 1fr 1fr;
  }

  .participation-lanes article {
    grid-template-columns: 1fr;
  }

  .participation-lanes article > div {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
  }

  .summit-mandate-board article {
    grid-template-columns: 1fr;
  }

  .destination-rail article {
    padding: 22px;
  }

  .destination-media-grid {
    grid-template-columns: 1fr;
  }

  .destination-identity-strip {
    grid-template-columns: 1fr;
  }

  .destination-reel {
    min-height: 520px;
  }

  .destination-reel-status {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .destination-media-grid figure {
    min-height: 240px;
  }

  .destination-rail article::before {
    position: static;
    display: block;
    margin-bottom: 14px;
  }

  .countdown-band {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    width: min(100% - 28px, var(--max));
  }

  .agenda-panel article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .final-cta {
    width: min(100% - 28px, var(--max));
    margin-bottom: 44px;
    padding: 34px 22px;
  }

  .subscribe-section {
    padding: 34px 18px;
  }

  .subscribe-form div {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .subscribe-form button {
    width: 100%;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-grid,
  .dashboard-card-grid,
  .voice-answer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-role-tabs {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Premium consolidated homepage treatment */
.premium-home {
  background:
    radial-gradient(circle at 18% 0%, rgba(201, 154, 69, 0.1), transparent 34%),
    linear-gradient(180deg, #070b13 0%, #fff8ee 48%);
}

.premium-home .site-header {
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.28);
}

.premium-home .site-header.is-scrolled,
.premium-home .site-header.nav-active {
  text-shadow: none;
}

.premium-home .announcement-bar {
  min-height: 44px;
  background:
    linear-gradient(90deg, rgba(7, 11, 19, 0.98), rgba(14, 38, 44, 0.94), rgba(7, 11, 19, 0.98));
  border-bottom-color: rgba(244, 192, 106, 0.24);
}

.premium-home .nav-row {
  padding-top: 18px;
  padding-bottom: 18px;
}

.premium-home .brand-mark {
  width: 50px;
  height: 50px;
  border-width: 1.5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.premium-home .brand strong {
  font-size: 1.05rem;
}

.premium-home .site-nav {
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.premium-home .site-header.is-scrolled .site-nav,
.premium-home .site-header.nav-active .site-nav {
  border-color: rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.68);
}

.premium-home .mega-trigger,
.premium-home .nav-link {
  min-height: 38px;
  padding-inline: 13px;
}

.premium-home .nav-actions {
  gap: 8px;
}

.premium-home .login-link,
.premium-home .volunteer-link,
.premium-home .header-cta {
  min-height: 46px;
  padding-inline: 18px;
  box-shadow: 0 10px 28px rgba(7, 11, 19, 0.12);
}

.premium-home .header-cta {
  background: linear-gradient(135deg, #d35c48, #a93f31);
}

.premium-home .live-ticker-bar {
  position: absolute;
  top: 126px;
  left: 50%;
  z-index: 4;
  width: min(var(--max), calc(100% - 36px));
  transform: translateX(-50%);
  border: 1px solid rgba(244, 192, 106, 0.22);
  border-radius: 999px;
  background: rgba(7, 11, 19, 0.66) !important;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.premium-home .live-ticker-bar > span {
  border-radius: 999px !important;
  background: rgba(201, 87, 67, 0.22) !important;
}

.premium-home .hero {
  min-height: 108vh;
  min-height: 108svh;
  isolation: isolate;
}

.premium-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 38%, rgba(244, 192, 106, 0.14), transparent 30%),
    radial-gradient(circle at 84% 62%, rgba(15, 118, 110, 0.2), transparent 34%);
  mix-blend-mode: screen;
}

.premium-home .hero-media::after {
  background:
    linear-gradient(90deg, rgba(5, 8, 15, 0.96) 0%, rgba(8, 15, 25, 0.86) 40%, rgba(9, 14, 24, 0.46) 72%, rgba(5, 8, 15, 0.76) 100%),
    linear-gradient(0deg, rgba(5, 8, 15, 0.92) 0%, rgba(5, 8, 15, 0.18) 48%, rgba(5, 8, 15, 0.7) 100%);
}

.premium-home .hero-media video,
.premium-home .hero-media img {
  object-position: 62% center;
  filter: saturate(0.9) contrast(1.12) brightness(0.86);
  transform: scale(1.025);
}

.premium-home .hero-content {
  grid-template-columns: 1fr;
  align-content: end;
  padding-top: clamp(210px, 22vh, 280px);
  padding-bottom: clamp(42px, 8vh, 92px);
  gap: clamp(34px, 6vh, 62px);
}

.premium-home .hero-copy {
  max-width: 1080px;
}

.premium-home .event-meta {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(244, 192, 106, 0.26);
  border-radius: 999px;
  color: #f4c06a;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: clamp(0.82rem, 1.1vw, 0.98rem);
}

.premium-home h1 {
  max-width: 1120px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(3.25rem, 7.2vw, 7.4rem);
  line-height: 0.88;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
}

.premium-home .hero-lede {
  max-width: 890px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.12rem, 1.85vw, 1.5rem);
  line-height: 1.58;
}

.premium-home .hero-actions {
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.premium-home .hero-actions .button {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 999px;
  font-size: 0.94rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.premium-home .hero-actions .button-primary {
  min-width: 190px;
  background: linear-gradient(135deg, #d8614d, #a93f31);
}

.premium-home .hero-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.premium-home .hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.075));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.premium-home .hero-proof div {
  min-height: 148px;
  padding: clamp(22px, 3vw, 34px);
}

.premium-home .hero-proof div + div {
  margin: 0;
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.premium-home .hero-proof strong {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.premium-home .hero-proof span {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  line-height: 1.55;
}

.premium-home .content-body {
  background:
    linear-gradient(180deg, #fff8ee 0%, #f6f1e8 34%, #fff8ee 74%);
}

.premium-home .countdown-band {
  margin-top: -48px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(135deg, #ffffff, #faf4e9);
  box-shadow: 0 26px 80px rgba(17, 24, 39, 0.18);
}

.premium-home .countdown span {
  border-color: rgba(17, 24, 39, 0.08);
  background: #fff;
}

.summit-track-strip {
  width: 100%;
  max-width: none;
  padding: clamp(62px, 8vw, 104px) max(18px, calc((100vw - var(--max)) / 2));
  text-align: center;
  background:
    linear-gradient(180deg, #fff8ee, #ffffff);
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}

.summit-track-strip h2 {
  max-width: 900px;
  margin: 10px auto 14px;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
}

.summit-track-strip p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.track-strip-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.1);
  box-shadow: 0 20px 70px rgba(17, 24, 39, 0.08);
}

.track-strip-grid a {
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 20px 14px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 180ms ease, background 180ms ease;
}

.track-strip-grid a:hover {
  transform: translateY(-2px);
  background: #f8efe5;
}

.track-strip-grid img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.9;
}

.track-strip-grid strong {
  max-width: 130px;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.2;
}

.track-strip-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.premium-home .section {
  padding-top: clamp(84px, 10vw, 148px);
  padding-bottom: clamp(84px, 10vw, 148px);
}

.premium-home .section-kicker {
  color: #b54d3d;
  letter-spacing: 0.11em;
}

.premium-home h2 {
  color: #0d1728;
  font-family: var(--serif);
  font-size: clamp(2.0rem, 3.8vw, 2.9rem);
  line-height: 1.15;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

.premium-home .split-heading p,
.premium-home .transformation-copy p,
.premium-home .edge-copy p,
.premium-home .destination-copy p {
  color: #435069;
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
  line-height: 1.72;
}

.premium-home #conversation-matters {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 0 !important;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(244, 236, 222, 0.78)),
    radial-gradient(circle at 82% 12%, rgba(15, 118, 110, 0.12), transparent 38%);
}

.premium-home #conversation-matters .directory-stat-panel {
  background: #0b1020 !important;
  color: #fff;
  border-color: rgba(244, 192, 106, 0.18) !important;
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.22);
}

.premium-home #conversation-matters .directory-stat-panel .section-kicker {
  color: #f4c06a !important;
}

.premium-home #conversation-matters .directory-stat-panel strong {
  color: #f4c06a !important;
}

.premium-home #conversation-matters .directory-stat-panel small {
  color: rgba(255, 255, 255, 0.68) !important;
}

.premium-home .intro-section {
  position: relative;
}

.premium-home .outcomes-image-container {
  height: clamp(300px, 37vw, 470px) !important;
  border-radius: 12px !important;
  box-shadow: 0 30px 90px rgba(17, 24, 39, 0.18) !important;
}

.premium-home .outcomes-image-container img {
  filter: saturate(0.98) contrast(1.05);
}

.premium-home .outcome-grid {
  gap: 14px;
  border: 0;
}

.premium-home .outcome-grid article {
  min-height: 255px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.08);
}

.premium-home .summit-mandate {
  background:
    radial-gradient(circle at 88% 14%, rgba(244, 192, 106, 0.18), transparent 32%),
    linear-gradient(135deg, #070b13 0%, #102d30 54%, #07101b 100%);
}

.premium-home .summit-mandate-board {
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.premium-home .summit-mandate-board article {
  min-height: 164px;
  align-items: center;
}

.premium-home .transformation {
  background:
    linear-gradient(135deg, rgba(7, 11, 19, 0.98), rgba(21, 64, 63, 0.96)),
    url("assets/track_pipeline.jpg") right center / min(52vw, 720px) auto no-repeat;
}

.premium-home .journey div {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.premium-home .marketplace {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: #fff8ee;
}

.premium-home .participation-feature {
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(7, 11, 19, 0.16), rgba(7, 11, 19, 0.9)),
    url("assets/summit-hero.jpg") center / cover;
  box-shadow: 0 30px 90px rgba(17, 24, 39, 0.18);
}

.premium-home .participation-lanes article {
  border-radius: 12px;
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 16px 46px rgba(17, 24, 39, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.premium-home .participation-lanes article:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 68px rgba(17, 24, 39, 0.12);
}

.premium-home .pathway-hub {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, #f6f1e8, #fff8ee);
}

.premium-home .pathway-map {
  gap: 12px;
  border: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.premium-home .pathway-map article {
  min-height: 330px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.08);
}

.premium-home .edge {
  color: #fff;
  background:
    radial-gradient(circle at 16% 12%, rgba(244, 192, 106, 0.18), transparent 28%),
    linear-gradient(135deg, #111827, #07312f 72%, #0a111d);
}

.premium-home .edge h2,
.premium-home .edge-copy p {
  color: #fff;
}

.premium-home .edge-copy p {
  opacity: 0.78;
}

.premium-home .edge-list {
  gap: 16px;
}

.premium-home .edge-list article {
  min-height: 210px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.premium-home .edge-list strong {
  color: #f4c06a;
  font-size: 1.18rem;
}

.premium-home .edge-list span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.premium-home .destination-section {
  background:
    linear-gradient(180deg, #fff8ee, #edf7f8 72%, #fff8ee);
}

.premium-home .destination-lead {
  align-items: stretch;
}

.premium-home .destination-copy {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.premium-home .destination-reel,
.premium-home .destination-media-grid figure {
  border-radius: 12px;
  box-shadow: 0 24px 78px rgba(17, 24, 39, 0.14);
}

.premium-home .agenda-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: #fff8ee;
}

.premium-home .agenda-filter,
.premium-home .speaker-filter {
  border-radius: 12px;
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.07);
}

.premium-home .speakers {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, #f6f1e8, #fff8ee);
}

.premium-home .tickets {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 90% 8%, rgba(201, 87, 67, 0.12), transparent 32%),
    #fff8ee;
}

.premium-home .subscribe-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 80px auto 0;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(7, 11, 19, 0.96), rgba(15, 76, 75, 0.92)),
    url("assets/track_governance.jpg") right center / 520px auto no-repeat;
  box-shadow: 0 32px 100px rgba(17, 24, 39, 0.24);
  color: #ffffff;
}

.premium-home .subscribe-copy h2 {
  color: #ffffff;
}

.premium-home .subscribe-copy p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.premium-home .subscribe-form {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(12px);
  box-shadow: none !important;
}

.premium-home .subscribe-form label {
  color: #f4c06a !important;
}

.premium-home .subscribe-form small {
  color: rgba(255, 255, 255, 0.7) !important;
}

.premium-home .subscribe-form div {
  background: #ffffff !important;
}

.premium-home .subscribe-form input {
  color: #111827 !important;
}

.premium-home .site-footer {
  margin-top: -64px;
  padding-top: 132px;
}

@media (max-width: 980px) {
  .premium-home .live-ticker-bar {
    top: 122px;
  }

  .premium-home .hero-content {
    padding-top: 190px;
  }

  .premium-home .site-nav {
    padding: 14px;
    border-radius: var(--radius);
  }

  .premium-home .hero-proof,
  .premium-home .pathway-map,
  .track-strip-grid {
    grid-template-columns: 1fr;
  }

  .premium-home .hero-proof div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 640px) {
  .premium-home .announcement-links,
  .premium-home .live-ticker-bar {
    display: none;
  }

  .premium-home .nav-row {
    padding-inline: 14px;
  }

  .premium-home .nav-actions .login-link,
  .premium-home .nav-actions .volunteer-link {
    display: none;
  }

  .premium-home .hero {
    min-height: 100svh;
  }

  .premium-home .hero-content {
    padding-top: 148px;
  }

  .premium-home h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .premium-home .event-meta {
    border-radius: 8px;
  }

  .premium-home .countdown-band {
    margin-top: 0;
  }

  .premium-home .section,
  .premium-home #conversation-matters,
  .summit-track-strip,
  .premium-home .summit-mandate,
  .premium-home .transformation,
  .premium-home .marketplace,
  .premium-home .pathway-hub,
  .premium-home .edge,
  .premium-home .destination-section,
  .premium-home .agenda-section,
  .premium-home .speakers,
  .premium-home .tickets {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .premium-home .subscribe-section {
    width: min(100% - 28px, var(--max));
    margin-top: 36px;
  }
}

/* Reference design bits: controlled refinements only */
.premium-home .summit-track-strip {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(56px, 7vw, 92px);
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
}

.premium-home .summit-track-strip h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
}

.premium-home .summit-track-strip p {
  max-width: 700px;
  font-size: 1rem;
}

.premium-home .track-strip-grid {
  max-width: 1160px;
  margin-inline: auto;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.premium-home .track-strip-grid a {
  min-height: 116px;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.premium-home .track-strip-grid a:hover {
  background: rgba(201, 87, 67, 0.07);
  transform: translateY(-1px);
}

.premium-home .track-strip-grid img {
  width: 30px;
  height: 30px;
  filter: grayscale(1) contrast(1.2);
}

.premium-home .track-strip-grid strong {
  color: #0d1728;
  font-size: 0.82rem;
}

.premium-home .destination-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 20%, rgba(36, 118, 135, 0.28), transparent 36%),
    linear-gradient(135deg, #07111f 0%, #0b3348 62%, #07111f 100%);
}

.premium-home .destination-copy {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.premium-home .destination-section .section-kicker,
.premium-home .destination-media-grid strong,
.premium-home .destination-rail span {
  color: #f4c06a;
}

.premium-home .destination-copy h2,
.premium-home .destination-copy p,
.premium-home .destination-identity-strip strong,
.premium-home .destination-identity-strip small,
.premium-home .destination-rail h3,
.premium-home .destination-rail p {
  color: #ffffff;
}

.premium-home .destination-copy p,
.premium-home .destination-identity-strip small,
.premium-home .destination-rail p {
  opacity: 0.76;
}

.premium-home .destination-lead {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
}

.premium-home .destination-reel,
.premium-home .destination-media-grid figure,
.premium-home .destination-rail article,
.premium-home .destination-identity-strip article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.premium-home .destination-showcase {
  margin-top: 28px;
}

.premium-home .destination-media-grid {
  gap: 16px;
}

.premium-home .destination-media-grid figure {
  border-radius: 10px;
}

.premium-home .destination-media-grid figcaption {
  background: linear-gradient(180deg, transparent 0%, rgba(7, 17, 31, 0.9) 100%);
}

.premium-home .destination-proof-row span {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.premium-home .agenda-section {
  background: #fffaf2;
}

.premium-home .agenda-section .split-heading {
  align-items: end;
}

.premium-home .agenda-section .split-heading h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
}

.premium-home .agenda-filter {
  box-shadow: none;
  border-color: rgba(17, 24, 39, 0.08);
}

.premium-home .agenda-tabs button {
  border-radius: 8px;
}

.premium-home .agenda-panel.active {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.premium-home .agenda-panel article {
  padding: 24px 28px;
}

@media (max-width: 980px) {
  .premium-home .destination-lead {
    grid-template-columns: 1fr;
  }

  .premium-home .track-strip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .premium-home .track-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Consolidated brand layer tokens are now merged in the primary :root block */

.premium-home {
  background:
    radial-gradient(circle at 18% 0%, rgba(241, 195, 109, 0.13), transparent 32%),
    linear-gradient(180deg, var(--night) 0%, var(--paper) 44%, var(--paper-2) 72%, var(--paper) 100%);
  color: var(--ink);
}

.premium-home .site-header {
  color: var(--white);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.premium-home .site-header.is-scrolled,
.premium-home .site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 248, 238, 0.94);
  border-bottom-color: var(--line);
}

.premium-home .announcement-bar {
  min-height: 38px;
  color: rgba(255, 255, 255, 0.78);
  background: #050b14;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 850;
}

.premium-home .announcement-bar strong,
.premium-home .announcement-bar a,
.premium-home .volunteer-link {
  color: var(--gold);
}

.premium-home .brand-mark {
  width: 52px;
  height: 52px;
  font-weight: 950;
}

.premium-home .brand strong {
  font-size: 1.05rem;
  font-weight: 950;
}

.premium-home .site-nav {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.premium-home .mega-trigger,
.premium-home .nav-link,
.premium-home .login-link,
.premium-home .volunteer-link,
.premium-home .header-cta,
.premium-home .button {
  font-weight: 950;
}

.premium-home .header-cta,
.premium-home .button-primary,
.premium-home .hero-actions .button-primary {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, #df6a54, var(--coral-dark));
  box-shadow: 0 16px 42px rgba(212, 91, 73, 0.28);
}

.premium-home .login-link,
.premium-home .volunteer-link,
.premium-home .button-secondary,
.premium-home .hero-actions .button-secondary {
  border-color: rgba(241, 195, 109, 0.55);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.premium-home .mega-menu {
  border-color: rgba(17, 24, 39, 0.1);
  border-radius: 12px;
  background: rgba(255, 248, 238, 0.98);
  box-shadow: var(--shadow);
}

.premium-home .mega-menu span,
.premium-home .section-kicker {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.premium-home .mega-visual,
.premium-home .mega-stat {
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 118, 110, 0.25), transparent 34%),
    linear-gradient(135deg, var(--night), #0b3348 64%, var(--night));
}

.premium-home .hero {
  min-height: 100svh;
  color: var(--white);
  background: var(--night);
}

.premium-home .hero::before {
  background: none;
}

.premium-home .hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.97), rgba(7, 17, 31, 0.72) 45%, rgba(7, 17, 31, 0.25) 76%, rgba(7, 17, 31, 0.78)),
    linear-gradient(0deg, rgba(7, 17, 31, 0.96), transparent 54%, rgba(7, 17, 31, 0.68));
}

.premium-home .hero-media video,
.premium-home .hero-media img {
  filter: saturate(0.95) brightness(0.62) contrast(1.12);
}

.premium-home .hero-content {
  padding-top: clamp(168px, 19vh, 230px);
  padding-bottom: clamp(34px, 7vh, 84px);
  gap: clamp(30px, 5vw, 64px);
  align-content: end;
}

.premium-home .event-meta {
  border-color: rgba(241, 195, 109, 0.28);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.premium-home h1 {
  max-width: 1060px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3.35rem, 7vw, 7.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
}

.premium-home .hero-lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.premium-home .hero-proof {
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.premium-home .hero-proof strong {
  font-family: var(--serif);
  font-weight: 800;
}

.premium-home .content-body {
  background:
    linear-gradient(180deg, var(--paper) 0%, #ffffff 22%, var(--paper-2) 48%, var(--paper) 76%);
}

.premium-home .section {
  padding-top: clamp(70px, 9vw, 126px);
  padding-bottom: clamp(70px, 9vw, 126px);
}

.premium-home h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 5.1rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.premium-home h3 {
  font-weight: 950;
}

.premium-home .split-heading p,
.premium-home .intro-section p,
.premium-home .edge-copy p,
.premium-home .destination-copy p,
.premium-home .research-section p,
.premium-home .media-section p,
.premium-home .accessibility p,
.premium-home .faq p {
  color: var(--muted);
  line-height: 1.65;
}

.premium-home .countdown-band,
.premium-home .dynamic-panel,
.premium-home .agenda-filter,
.premium-home .speaker-filter,
.premium-home .ticket-grid article,
.premium-home .market-grid,
.premium-home .summit-mandate-board,
.premium-home .role-navigator-container,
.premium-home .subscribe-section {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.premium-home .outcome-grid article,
.premium-home .market-grid article,
.premium-home .pathway-map article,
.premium-home .edge-list article,
.premium-home .speaker-grid article,
.premium-home .ticket-grid article {
  border-color: rgba(17, 24, 39, 0.1);
  border-radius: 14px;
}

.premium-home .summit-mandate,
.premium-home .transformation,
.premium-home .edge,
.premium-home .speakers,
.premium-home .destination-section {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 118, 110, 0.25), transparent 34%),
    linear-gradient(135deg, var(--night), #0b3348 64%, var(--night));
}

.premium-home .summit-mandate h2,
.premium-home .transformation h2,
.premium-home .edge h2,
.premium-home .speakers h2,
.premium-home .destination-section h2,
.premium-home .summit-mandate p,
.premium-home .transformation p,
.premium-home .edge p,
.premium-home .speakers p,
.premium-home .destination-section p {
  color: var(--white);
}

.premium-home .summit-mandate p,
.premium-home .transformation p,
.premium-home .edge p,
.premium-home .speakers p,
.premium-home .destination-section p {
  opacity: 0.76;
}

.premium-home .agenda-panel.active,
.premium-home .speaker-grid article,
.premium-home .ticket-grid article,
.premium-home .market-grid article {
  background: rgba(255, 255, 255, 0.92);
}

.premium-home .agenda-filter button,
.premium-home .speaker-filter button,
.premium-home .agenda-tabs button,
.premium-home .role-tab {
  border-radius: 999px;
  font-weight: 950;
}

.premium-home .agenda-filter button.active,
.premium-home .speaker-filter button.active,
.premium-home .agenda-tabs .active,
.premium-home .role-tab.active {
  color: var(--white);
  border-color: var(--coral);
  background: var(--coral);
}

.premium-home .subscribe-section {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(15, 76, 75, 0.92)),
    url("assets/track_governance.jpg") right center / 520px auto no-repeat;
}

.premium-home .site-footer {
  background: #050b14;
}

@media (max-width: 980px) {
  .premium-home h1 {
    font-size: clamp(3.1rem, 12vw, 5.8rem);
  }

  .premium-home h2 {
    font-size: clamp(2.15rem, 8vw, 4rem);
  }
}

@media (max-width: 640px) {
  .premium-home h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .premium-home .hero-actions .button {
    width: 100%;
  }
}

/* Redesigned index sections */
.premium-home .role-switchboard {
  display: grid;
  gap: 34px;
  background: linear-gradient(180deg, #fffaf2 0%, #fff 100%);
}

.role-switchboard-copy {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.role-switchboard-copy p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.role-switchboard-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.1);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.role-switchboard-grid a {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: #fff;
  transition: transform 180ms ease, background 180ms ease;
}

.role-switchboard-grid a:hover {
  background: #fff8ee;
  transform: translateY(-2px);
}

.role-switchboard-grid img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.role-switchboard-grid span,
.intake-list span,
.journey-timeline span,
.community-table span,
.research-process span,
.partner-deliverables span,
.newsroom-briefs span,
.awards-categories span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-switchboard-grid strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.role-switchboard-grid small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.mission-command {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 84% 12%, rgba(15, 118, 110, 0.16), transparent 34%),
    linear-gradient(135deg, #fff8ee, #ffffff);
}

.mission-panel {
  display: grid;
  align-content: center;
}

.mission-panel p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.72;
}

.mission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.mission-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 18%, rgba(241, 195, 109, 0.18), transparent 34%),
    linear-gradient(135deg, var(--night), #0b3348);
  box-shadow: var(--shadow-strong);
}

.mission-metrics article {
  min-height: 180px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-metrics strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
}

.mission-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.intake-switchyard {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: #fff8ee;
}

.intake-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
}

.intake-hero {
  min-height: 100%;
  display: grid;
  align-content: end;
  padding: 32px;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.18), rgba(7, 17, 31, 0.9)),
    url("assets/summit-hero.jpg") center / cover;
  box-shadow: var(--shadow-strong);
}

.intake-hero span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intake-hero h3 {
  max-width: 420px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 0.96;
}

.intake-hero p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.intake-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.intake-list a,
.journey-timeline a,
.community-table article,
.research-process article,
.partner-deliverables article,
.newsroom-briefs article,
.awards-categories article {
  padding: 24px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.07);
}

.intake-list strong,
.journey-timeline strong,
.community-table strong,
.research-process strong,
.partner-deliverables strong,
.newsroom-briefs strong,
.awards-categories strong {
  display: block;
  margin: 8px 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.intake-list small,
.journey-timeline small,
.community-table small,
.research-process small,
.partner-deliverables small {
  color: var(--muted);
  line-height: 1.5;
}

.journey-hub {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, #f6f1e8, #fff8ee);
}

.journey-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.journey-timeline {
  display: grid;
  gap: 12px;
  position: relative;
}

.journey-timeline a {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
}

.community-matrix {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 195, 109, 0.2), transparent 28%),
    linear-gradient(135deg, var(--night), #0b3348 66%, var(--night));
}

.community-matrix h2,
.community-matrix p {
  color: #fff;
}

.community-lead p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.community-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.community-table article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.community-table strong,
.community-table small {
  color: #fff;
}

.community-table small {
  opacity: 0.72;
}

.research-studio {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 24px;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
}

.research-studio-lead {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: 34px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(241, 195, 109, 0.22), transparent 34%),
    linear-gradient(135deg, var(--night), #0b3348);
}

.research-studio-lead h2,
.research-studio-lead p {
  color: #fff;
}

.research-studio-lead p {
  opacity: 0.78;
  line-height: 1.7;
}

.research-studio-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.research-visual-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--night);
}

.research-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: brightness(0.78);
}

.research-visual-card span,
.research-visual-card strong {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
}

.research-visual-card span {
  bottom: 98px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.research-visual-card strong {
  bottom: 24px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.25;
}

.research-process {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ticket-decision-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.58fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.partner-deck {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 24px;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 118, 110, 0.25), transparent 34%),
    linear-gradient(135deg, var(--night), #0b3348 64%, var(--night));
}

.partner-deck h2,
.partner-deck p {
  color: #fff;
}

.partner-deck p {
  opacity: 0.76;
  line-height: 1.7;
}

.partner-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-deliverables article,
.partner-deliverables .logo-space {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.partner-deliverables strong,
.partner-deliverables small {
  color: #fff;
}

.partner-deliverables small {
  opacity: 0.72;
}

.partner-deliverables .logo-space {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
}

.partner-deliverables .logo-space span {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.newsroom {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, #fff8ee, #ffffff);
}

.newsroom-main {
  padding: 34px;
  border-left: 6px solid var(--coral);
  background: #fff;
  box-shadow: var(--shadow);
}

.newsroom-main p {
  color: var(--muted);
  line-height: 1.7;
}

.newsroom-briefs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.awards-stage {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.95), rgba(7, 17, 31, 0.68)),
    url("assets/outcome_visual.jpg") center / cover;
}

.awards-stage h2,
.awards-stage p {
  color: #fff;
}

.awards-stage p {
  opacity: 0.78;
  line-height: 1.7;
}

.awards-categories {
  display: grid;
  gap: 10px;
}

.awards-categories article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.awards-categories strong {
  color: #fff;
}

.subscribe-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.subscribe-editorial .subscribe-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
}

@media (max-width: 980px) {
  .role-switchboard-grid,
  .mission-command,
  .intake-board,
  .journey-hub,
  .community-matrix,
  .research-studio,
  .ticket-decision-head,
  .partner-deck,
  .newsroom,
  .awards-stage,
  .subscribe-editorial {
    grid-template-columns: 1fr;
  }

  .role-switchboard-grid,
  .research-studio-board,
  .research-process,
  .partner-deliverables .logo-space {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .role-switchboard-grid,
  .mission-metrics,
  .intake-list,
  .journey-timeline a,
  .community-table,
  .research-studio-board,
  .research-process,
  .partner-deliverables,
  .partner-deliverables .logo-space,
  .newsroom-briefs,
  .awards-categories article {
    grid-template-columns: 1fr;
  }
}

/* Hero and section correction pass */
.premium-home .hero {
  min-height: 100vh;
  min-height: 100svh;
}

.premium-home .hero-content {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(54px, 7vh, 84px) 0 clamp(20px, 4vh, 34px);
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  grid-template-areas:
    "copy countdown";
  align-content: end;
  gap: clamp(18px, 3vh, 28px) clamp(24px, 5vw, 68px);
}

.premium-home .hero-copy {
  grid-area: copy;
}

.premium-home .hero-proof {
  grid-area: proof;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
}

.premium-home .hero-proof div + div {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.premium-home .hero-proof div {
  min-width: 0;
  padding: 20px;
}

.premium-home .hero-proof strong {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.premium-home .hero-proof span {
  font-size: 0.86rem;
  line-height: 1.42;
}

.premium-home .hero-countdown-card {
  grid-area: countdown;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(7, 17, 31, 0.26);
}

.premium-home .hero-countdown-card .label {
  color: var(--gold);
}

.premium-home .hero-countdown-card > div:first-child strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.premium-home .hero-countdown-card .countdown {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-home .hero-countdown-card .countdown span {
  min-height: 64px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.premium-home .hero-countdown-card .countdown strong {
  color: #fff;
}

.premium-home .hero-countdown-card .countdown small {
  color: rgba(255, 255, 255, 0.7);
}

.premium-home .hero-countdown-card a {
  width: fit-content;
  white-space: nowrap;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

.premium-home .hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.premium-home .hero-lede {
  max-width: 720px;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.55;
}

.premium-home .mission-command {
  background:
    radial-gradient(circle at 84% 12%, rgba(15, 118, 110, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #f7faf9);
}

.premium-home .destination-lead {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
}

.premium-home .destination-copy,
.premium-home .destination-reel {
  height: 100%;
}

.premium-home .destination-reel {
  min-height: 0;
}

.premium-home .speaker-grid article {
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.premium-home .speaker-grid h3,
.premium-home .speaker-grid p,
.premium-home .speaker-grid .speaker-topic,
.premium-home .speaker-grid .speaker-role {
  position: relative;
  z-index: 1;
}

.premium-home .speaker-grid p:not(.speaker-topic) {
  color: var(--ink-2);
  line-height: 1.55;
}

.premium-home .speaker-grid .speaker-role {
  margin-top: auto;
}

.premium-home .ticket-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.premium-home .ticket-grid .button {
  margin-top: auto;
}

.premium-home .ticket-grid .featured-ticket h3,
.premium-home .ticket-grid .featured-ticket .price,
.premium-home .ticket-grid .featured-ticket li,
.premium-home .ticket-grid .featured-ticket span {
  color: #fff !important;
}

.premium-home .ticket-grid .featured-ticket .button {
  color: #fff;
}

.premium-home .newsroom {
  align-items: stretch;
}

.premium-home .newsroom-main {
  display: grid;
  align-content: center;
}

.premium-home .newsroom-briefs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-home .newsroom-briefs article {
  min-height: 0;
  padding: 18px;
}

.premium-home .newsroom-briefs strong {
  font-size: 0.96rem;
  line-height: 1.35;
}

.premium-home .subscribe-editorial {
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(11, 51, 72, 0.9)),
    var(--night);
  color: #fff;
}

.premium-home .subscribe-editorial .subscribe-copy h2,
.premium-home .subscribe-editorial .subscribe-copy p {
  color: #fff;
}

.premium-home .subscribe-editorial .subscribe-copy p {
  opacity: 0.78;
}

.premium-home .subscribe-editorial .subscribe-form {
  padding: clamp(18px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.premium-home .subscribe-editorial .subscribe-form div {
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 10px;
  border-color: rgba(255, 255, 255, 0.18);
}

.premium-home .subscribe-editorial .subscribe-form input {
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
}

.premium-home .subscribe-editorial .subscribe-form small {
  color: rgba(255, 255, 255, 0.72);
}

.pathway-selector {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 0 max(18px, calc((100vw - var(--max)) / 2));
}

.pathway-selector-lead {
  padding: 30px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 12%, rgba(241, 195, 109, 0.2), transparent 34%),
    linear-gradient(135deg, var(--night), #0b3348);
}

.pathway-selector-lead h3 {
  margin: 12px 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1;
}

.pathway-selector-lead p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.pathway-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pathway-selector-grid a {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.06);
}

.pathway-selector-grid strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.pathway-selector-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .premium-home .hero-content,
  .premium-home .hero-countdown-card,
  .pathway-selector {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "countdown";
  }

  .premium-home .hero-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
  }

  .premium-home .hero-proof div + div {
    margin: 0;
    padding: 20px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .premium-home .newsroom-briefs,
  .pathway-selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .premium-home .hero-content {
    align-content: center;
    padding-top: 92px;
  }

  .premium-home .hero-actions {
    gap: 8px;
  }

  .premium-home .hero-actions .button {
    width: 100%;
  }

  .premium-home .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-home .hero-proof div + div {
    border-left: 0;
    padding: 20px;
  }

  .premium-home .hero-countdown-card .countdown,
  .premium-home .newsroom-briefs,
  .pathway-selector-grid {
    grid-template-columns: 1fr;
  }

  .premium-home .subscribe-editorial {
    grid-template-columns: 1fr;
  }

  .premium-home .subscribe-editorial .subscribe-form div {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
}

/* Final hero viewport fit: keep the entire first-screen story visible */
.premium-home .hero {
  min-height: clamp(620px, calc(100svh - 188px), 820px);
  height: clamp(620px, calc(100svh - 188px), 820px);
}

.premium-home .hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.86) 0%, rgba(7, 17, 31, 0.58) 42%, rgba(7, 17, 31, 0.18) 76%, rgba(7, 17, 31, 0.34) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.5), rgba(7, 17, 31, 0.04) 55%);
}

.premium-home .hero-content {
  min-height: 100%;
  height: 100%;
  width: min(1640px, calc(100% - 56px));
  padding: clamp(34px, 5vh, 62px) 0 clamp(24px, 4vh, 48px);
  grid-template-columns: minmax(0, 1fr) clamp(230px, 22vw, 340px);
  grid-template-areas: "copy countdown";
  align-items: center;
  align-content: center;
}

.premium-home .hero-copy {
  align-self: center;
  max-width: min(820px, 62vw);
}

.premium-home .event-meta {
  width: fit-content;
  max-width: 100%;
  margin-bottom: clamp(16px, 2.4vh, 24px);
  padding: 10px 16px;
  border: 1px solid rgba(244, 192, 106, 0.35);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.34);
  color: rgba(244, 192, 106, 0.9);
}

.premium-home .hero h1 {
  max-width: 780px;
  margin-bottom: clamp(18px, 2.4vh, 24px);
  font-size: clamp(3.1rem, 4.75vw, 5.45rem);
  line-height: 0.96;
}

.premium-home .hero-lede {
  max-width: 760px;
  font-size: clamp(1.04rem, 1.25vw, 1.22rem);
  line-height: 1.5;
}

.premium-home .hero-actions {
  max-width: 820px;
  margin-top: clamp(20px, 3vh, 32px);
}

.premium-home .hero-actions .button {
  min-height: 48px;
  padding-inline: clamp(18px, 2vw, 28px);
}

.premium-home .hero-countdown-card {
  align-self: stretch;
  justify-self: end;
  width: 100%;
  min-height: 0;
  display: grid;
  align-content: center;
  gap: clamp(14px, 2.2vh, 22px);
  padding: clamp(18px, 2.8vw, 30px);
  opacity: 0.68;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(12px);
}

.premium-home .hero-countdown-card:hover {
  opacity: 0.86;
}

.premium-home .hero-countdown-card .countdown {
  grid-template-columns: 1fr;
  gap: 10px;
}

.premium-home .hero-countdown-card .countdown span {
  min-height: clamp(58px, 9vh, 82px);
  background: rgba(255, 255, 255, 0.075);
}

.premium-home .hero-countdown-card .countdown strong {
  font-size: clamp(1.28rem, 2.4vw, 2rem);
}

.premium-home .hero-countdown-card a {
  margin-top: 4px;
}

@media (max-width: 1180px) {
  .premium-home .hero {
    min-height: auto;
    height: auto;
  }

  .premium-home .hero-content {
    min-height: calc(100svh - 160px);
    height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "countdown";
    align-content: center;
  }

  .premium-home .hero-copy {
    max-width: 860px;
  }

  .premium-home .hero-countdown-card {
    justify-self: start;
    width: min(100%, 860px);
    opacity: 0.72;
  }

  .premium-home .hero-countdown-card .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .premium-home .hero-content {
    width: min(100% - 32px, 1640px);
    min-height: calc(100svh - 136px);
    padding-block: 28px;
  }

  .premium-home .event-meta {
    font-size: 0.78rem;
    white-space: normal;
  }

  .premium-home .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .premium-home .hero-countdown-card .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Visual QA cleanup: restore contrast, proportion, and readable section rhythm */
.premium-home .ticket-grid {
  align-items: stretch;
}

.premium-home .ticket-grid article {
  min-height: clamp(420px, 34vw, 560px);
  padding: clamp(26px, 3vw, 42px);
  border-color: rgba(7, 17, 31, 0.12);
  background: #fff;
}

.premium-home .ticket-grid .featured-ticket {
  color: #fff !important;
  background:
    radial-gradient(circle at 82% 10%, rgba(244, 192, 106, 0.18), transparent 34%),
    linear-gradient(150deg, #07111f, #0b3348) !important;
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.22);
  transform: none;
}

.premium-home .ticket-grid .featured-ticket h3,
.premium-home .ticket-grid .featured-ticket p,
.premium-home .ticket-grid .featured-ticket li,
.premium-home .ticket-grid .featured-ticket span,
.premium-home .ticket-grid .featured-ticket .price {
  color: #fff !important;
}

.premium-home .ticket-grid .featured-ticket li::before {
  background: var(--gold);
}

.premium-home .ticket-grid .featured-ticket .button-primary {
  background: var(--coral);
  color: #fff !important;
}

.premium-home .newsroom {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
  background: #fff8ee;
}

.premium-home .newsroom-main {
  min-height: auto;
  padding: clamp(26px, 3.2vw, 42px);
  border-left: 5px solid var(--coral);
}

.premium-home .newsroom-main h2 {
  max-width: 620px;
  font-size: clamp(2.35rem, 4.2vw, 4.7rem);
  line-height: 0.98;
}

.premium-home .newsroom-briefs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.premium-home .newsroom-briefs article {
  min-height: 190px;
  display: grid;
  align-content: start;
  padding: clamp(20px, 2.2vw, 28px);
}

.premium-home .newsroom-briefs strong {
  max-width: 320px;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.28;
}

.premium-home .speakers-video {
  max-width: min(920px, calc(100% - 36px)) !important;
  margin-top: 48px !important;
  padding: 34px !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px;
  background: #fff !important;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.1);
}

.premium-home .speakers-video h3 {
  color: var(--ink) !important;
  font-size: clamp(1.45rem, 2.5vw, 2.4rem) !important;
}

.premium-home .speakers-video p {
  color: var(--muted) !important;
}

.premium-home .journey-hub {
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  align-items: start;
  background: linear-gradient(180deg, #fff8ee, #ffffff);
}

.premium-home .journey-copy {
  position: sticky;
  top: 140px;
}

.premium-home .journey-copy h2 {
  max-width: 520px;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  line-height: 0.98;
}

.premium-home .journey-copy p {
  max-width: 520px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.premium-home .journey-timeline {
  gap: 14px;
}

.premium-home .journey-timeline a {
  min-height: 124px;
  grid-template-columns: minmax(150px, 0.3fr) 1fr;
  padding: clamp(22px, 2.2vw, 30px);
  border-radius: 16px;
}

.premium-home .journey-timeline strong {
  margin: 0;
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
}

.premium-home .journey-timeline small {
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .premium-home .newsroom,
  .premium-home .journey-hub {
    grid-template-columns: 1fr;
  }

  .premium-home .journey-copy {
    position: static;
  }

  .premium-home .ticket-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .premium-home .newsroom-briefs,
  .premium-home .journey-timeline a {
    grid-template-columns: 1fr;
  }
}

/* Pictorial and icon system: controlled visuals without breaking layout */
.premium-home .section,
.premium-home .summit-track-strip,
.premium-home .countdown-band,
.premium-home .destination-section,
.premium-home .agenda-section,
.premium-home .research-section,
.premium-home .tickets,
.premium-home .media-section,
.premium-home .subscribe-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.premium-home .section > *,
.premium-home .summit-track-strip > *,
.premium-home .destination-section > *,
.premium-home .agenda-section > *,
.premium-home .research-section > *,
.premium-home .tickets > *,
.premium-home .media-section > *,
.premium-home .subscribe-section > * {
  position: relative;
  z-index: 1;
}

.premium-home .role-switchboard::before,
.premium-home .mission-command::after,
.premium-home .summit-mandate::after,
.premium-home .transformation::before,
.premium-home .edge::before,
.premium-home .community-matrix::after,
.premium-home .agenda-section::before,
.premium-home .tickets::before,
.premium-home .partner-deck::after,
.premium-home .newsroom::before,
.premium-home .accessibility::before,
.premium-home .logistics::after,
.premium-home .faq::before,
.premium-home #engagement-hub::after,
.premium-home .subscribe-editorial::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 90px rgba(7, 17, 31, 0.1);
}

.premium-home .role-switchboard::before {
  right: max(18px, calc((100vw - var(--max)) / 2));
  top: 34px;
  width: min(28vw, 390px);
  height: 220px;
  opacity: 0.12;
  background-image: url("assets/outcome_visual.jpg");
  filter: saturate(1.05);
}

.premium-home .mission-command::after {
  right: 4vw;
  bottom: 26px;
  width: min(30vw, 420px);
  height: 280px;
  opacity: 0.11;
  background-image: url("assets/track_governance.jpg");
}

.premium-home .summit-mandate::after {
  right: max(18px, calc((100vw - var(--max)) / 2));
  top: 58px;
  width: min(26vw, 360px);
  height: 260px;
  opacity: 0.16;
  background-image: url("assets/track_pipeline.jpg");
}

.premium-home .transformation::before {
  left: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 38px;
  width: min(30vw, 410px);
  height: 250px;
  opacity: 0.16;
  background-image: url("assets/track_health.jpg");
}

.premium-home .edge::before {
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 46px;
  width: min(28vw, 390px);
  height: 260px;
  opacity: 0.14;
  background-image: url("assets/summit-hero.jpg");
}

.premium-home .community-matrix::after {
  right: -80px;
  top: 40px;
  width: min(34vw, 520px);
  height: 360px;
  opacity: 0.18;
  background-image: url("assets/outcome_visual.jpg");
  mix-blend-mode: screen;
}

.premium-home .agenda-section::before {
  right: max(18px, calc((100vw - var(--max)) / 2));
  top: 34px;
  width: min(24vw, 330px);
  height: 210px;
  opacity: 0.12;
  background-image: url("assets/track_pipeline.jpg");
}

.premium-home .tickets::before {
  left: max(18px, calc((100vw - var(--max)) / 2));
  top: 44px;
  width: min(24vw, 340px);
  height: 230px;
  opacity: 0.11;
  background-image: url("assets/track_governance.jpg");
}

.premium-home .partner-deck::after {
  right: 4vw;
  bottom: 28px;
  width: min(28vw, 420px);
  height: 300px;
  opacity: 0.2;
  background-image: url("assets/outcome_visual.jpg");
  mix-blend-mode: screen;
}

.premium-home .newsroom::before {
  left: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 40px;
  width: min(24vw, 340px);
  height: 230px;
  opacity: 0.1;
  background-image: url("assets/summit-hero.jpg");
}

.premium-home .accessibility::before {
  right: max(18px, calc((100vw - var(--max)) / 2));
  top: 36px;
  width: min(22vw, 310px);
  height: 210px;
  opacity: 0.12;
  background-image: url("assets/track_health.jpg");
}

.premium-home .logistics::after {
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  width: min(26vw, 360px);
  height: 230px;
  opacity: 0.14;
  background-image: url("assets/summit-hero.jpg");
}

.premium-home .faq::before {
  left: max(18px, calc((100vw - var(--max)) / 2));
  top: 34px;
  width: min(20vw, 280px);
  height: 190px;
  opacity: 0.1;
  background-image: url("assets/track_pipeline.jpg");
}

.premium-home #engagement-hub::after {
  right: max(18px, calc((100vw - var(--max)) / 2));
  top: 50px;
  width: min(28vw, 390px);
  height: 250px;
  opacity: 0.13;
  background-image: url("assets/outcome_visual.jpg");
}

.premium-home .subscribe-editorial::after {
  right: -70px;
  top: 50%;
  width: min(32vw, 520px);
  height: 380px;
  opacity: 0.16;
  transform: translateY(-50%);
  background-image: url("assets/summit-hero.jpg");
  mix-blend-mode: screen;
}

.premium-home .intake-list a,
.premium-home .journey-timeline a,
.premium-home .community-table article,
.premium-home .research-process article,
.premium-home .partner-deliverables article,
.premium-home .newsroom-briefs article,
.premium-home .awards-categories article {
  position: relative;
}

.premium-home .agenda-panel article {
  position: relative;
}

.premium-home .access-grid article,
.premium-home .faq details {
  position: relative;
}

@media (max-width: 980px) {
  .premium-home .role-switchboard::before,
  .premium-home .mission-command::after,
  .premium-home .summit-mandate::after,
  .premium-home .transformation::before,
  .premium-home .edge::before,
  .premium-home .agenda-section::before,
  .premium-home .tickets::before,
  .premium-home .newsroom::before,
  .premium-home .accessibility::before,
  .premium-home .logistics::after,
  .premium-home .faq::before,
  .premium-home #engagement-hub::after {
    width: 220px;
    height: 150px;
    opacity: 0.07;
  }
}

@media (max-width: 680px) {
  .premium-home .role-switchboard::before,
  .premium-home .mission-command::after,
  .premium-home .summit-mandate::after,
  .premium-home .transformation::before,
  .premium-home .edge::before,
  .premium-home .community-matrix::after,
  .premium-home .agenda-section::before,
  .premium-home .tickets::before,
  .premium-home .partner-deck::after,
  .premium-home .newsroom::before,
  .premium-home .accessibility::before,
  .premium-home .logistics::after,
  .premium-home .faq::before,
  .premium-home #engagement-hub::after,
  .premium-home .subscribe-editorial::after {
    display: none;
  }
}

/* ==========================================
   PREMIUM TRUST & LEGAL PAGES ENHANCEMENTS
   ========================================== */
.legal-page {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(29, 11, 53, 0.03) 0%, rgba(11, 44, 53, 0.02) 90%);
  border-radius: 24px;
  padding: 60px clamp(24px, 5vw, 64px);
  box-shadow: 0 20px 80px rgba(8, 19, 38, 0.05);
  margin-block: 40px;
}

.legal-page .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.25s ease;
}

.legal-page .brand:hover {
  opacity: 0.85;
}

.trust-hero {
  border: 1px solid rgba(8, 19, 38, 0.08);
  border-radius: 20px;
  padding: clamp(36px, 6vw, 64px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 241, 232, 0.95));
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  margin-bottom: 48px;
}

.trust-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--purple-dark, #1d0b35);
  margin-top: 12px;
}

.trust-hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
}

.stakeholder-brief {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}

.stakeholder-copy h2 {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--purple-dark, #1d0b35);
}

.stakeholder-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stakeholder-visual:hover {
  transform: translateY(-4px);
}

.stakeholder-visual img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.visual-caption {
  padding: 16px 20px;
  background: rgba(29, 11, 53, 0.9);
  color: white;
  backdrop-filter: blur(8px);
}

.visual-caption span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  border: none;
  background: transparent;
  margin-bottom: 56px;
}

.trust-grid article {
  background: white;
  border: 1px solid rgba(8, 19, 38, 0.08);
  border-radius: 16px;
  padding: 28px;
  min-height: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
}

.trust-grid article:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(29, 11, 53, 0.04);
}

.trust-grid span {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--coral, #cf5848);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.policy-body {
  background: white;
  border: 1px solid rgba(8, 19, 38, 0.08);
  border-radius: 20px;
  padding: 40px clamp(20px, 5vw, 48px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.policy-body h2 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--purple-dark, #1d0b35);
  border-bottom: 2px solid rgba(217, 164, 65, 0.2);
  padding-bottom: 8px;
  margin-top: 32px;
}

.policy-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.policy-body a {
  color: var(--purple-dark);
  text-decoration: underline;
  font-weight: bold;
}

.policy-body a:hover {
  color: var(--coral);
}
