:root {
  --ink: #0a0a0a;
  --orange: #ff6f1f;
  --cream: #f7f2ea;
  --paper: #ffffff;
  --muted: #555;
  --line: #0a0a0a;
  --paper-texture: repeating-linear-gradient(45deg, rgba(10,10,10,0.018) 0 1px, transparent 1px 12px);
}

/* Handwritten accent — applied to specific heading words */
.hand {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.5px;
  /* Slightly larger than Anton to compensate for Caveat's shorter cap height */
  font-size: 1.18em;
  line-height: inherit;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Archivo", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper-texture), var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: var(--orange); color: #fff; }

.container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand strong,
.brand small {
  display: block;
  line-height: 1;
}
.brand strong {
  font-family: "Anton", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}
.brand small {
  margin-top: 5px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a,
.site-nav button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.site-nav a:hover,
.site-nav button:hover {
  background: var(--ink);
  color: #fff;
}
.site-nav a.active {
  background: var(--orange);
  color: #fff;
}
.site-nav .call-link {
  border: 1.5px dashed var(--ink);
}
.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 5px 0 var(--ink);
}
.menu-toggle {
  display: none;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 54px;
}
.page-hero {
  padding: 78px 0 46px;
  background: var(--paper-texture), #fff;
  border-bottom: 1.5px solid var(--ink);
}
.page-hero h1 {
  max-width: 1180px;
  margin-bottom: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    var(--paper-texture),
    radial-gradient(circle at 82% 14%, rgba(255, 111, 31, 0.18), transparent 31%),
    radial-gradient(circle at 10% 92%, rgba(255, 111, 31, 0.1), transparent 28%),
    #fff;
}
.hero::after {
  content: "";
  position: absolute;
  top: 116px;
  right: -72px;
  width: 360px;
  height: 360px;
  border: 1.5px dashed rgba(255, 111, 31, 0.5);
  border-radius: 999px;
  pointer-events: none;
  animation: spin-slow 58s linear infinite;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 58px;
  align-items: center;
}
.eyebrow,
.label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: #fff;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 111, 31, 0.18);
}
h1,
h2,
h3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
h1 {
  margin: 24px 0 24px;
  font-size: clamp(62px, 8.8vw, 142px);
  line-height: 0.86;
}
h1 mark {
  position: relative;
  background: transparent;
  color: var(--orange);
  display: inline-block;
}
h1 mark .move-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  width: 100%;
  height: 18px;
  overflow: visible;
}
h1 mark .move-underline path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linecap: round;
}
.hero-copy p {
  max-width: 740px;
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
}
.hero-side {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.hero-event-logo {
  width: min(340px, 70%);
  height: auto;
  object-fit: contain;
  margin-top: 18px;
  transform-origin: 50% 82%;
  animation: logo-pop-float 5.8s ease-in-out infinite;
  filter: drop-shadow(10px 12px 0 rgba(10,10,10,0.16));
}
.hero-actions,
.center-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}
.hero-copy .hero-actions {
  flex-wrap: nowrap;
  margin-top: 30px;
}
.hero-copy .hero-actions .btn {
  min-width: 230px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 14px 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover {
  transform: translate(-2px, -2px);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 5px 5px 0 var(--orange);
}
.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--orange);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-orange {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn.full { width: 100%; }

.countdown-card {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 10px 10px 0 var(--orange);
}
.ticket-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px dashed var(--ink);
  padding-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 18px 0;
}
.countdown div {
  background: var(--ink);
  color: #fff;
  padding: 12px 6px;
  text-align: center;
}
.countdown strong {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown span {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ticket-meta {
  border-top: 2px dashed var(--ink);
  padding-top: 12px;
  margin-bottom: 18px;
}
.ticket-meta p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.45;
}
.ticket-meta b {
  color: var(--ink);
  text-transform: uppercase;
}
.ticket-meta .room-highlight {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding: 0 2px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  box-shadow: none;
}
.ticket-meta .room-highlight span {
  position: relative;
  z-index: 1;
}
.ticket-meta .room-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 12px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 18' preserveAspectRatio='none'%3E%3Cpath d='M1 10 C 18 4 36 15 55 9 S 91 5 112 10 S 151 14 172 8 S 211 4 239 10 L239 18 L1 18 Z' fill='%23ff6f1f'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
  transform: rotate(-0.8deg);
  z-index: 0;
}

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-block: 2px solid var(--ink);
  padding: 20px 0;
}
.ticker div {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 34s linear infinite;
}
.ticker span {
  padding: 0 30px;
  font-family: "Anton", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
}
.ticker b {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes float-bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}
@keyframes logo-pop-float {
  0%, 100% { transform: translateY(0) rotate(-1deg) scale(1); }
  45% { transform: translateY(-10px) rotate(1.5deg) scale(1.035); }
  70% { transform: translateY(-4px) rotate(-0.5deg) scale(1.01); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-event-logo,
  .hero::after,
  .ticker div {
    animation: none;
  }
}

.section {
  padding: 112px 0;
  background: var(--paper-texture), #fff;
}
.split-grid,
.profile-grid,
.pulse-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: start;
}
.section h2 {
  margin: 12px 0 0;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.92;
}
.copy-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.copy-stack p,
.head-note,
.pulse-grid p {
  margin: 0;
  color: #333;
  font-size: 18px;
  line-height: 1.55;
}
.stat-grid,
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}
.stat-grid div,
.metrics-row div {
  min-height: 150px;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat-grid strong,
.metrics-row strong {
  font-family: "Anton", sans-serif;
  font-size: clamp(50px, 6vw, 86px);
  line-height: 0.9;
}
.stat-grid span,
.metrics-row span {
  font-weight: 900;
  text-transform: uppercase;
}
.stats-2026 h2 span,
.stat-grid.loud strong span,
.pitch-section h2 span {
  color: var(--orange);
}
.stat-grid.loud div {
  min-height: 280px;
  padding: 48px 32px;
  transition: background 0.25s ease, color 0.25s ease;
}
.stat-grid.loud div:hover {
  background: var(--ink);
  color: #fff;
}
.stat-grid.loud em {
  color: var(--orange);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 2px;
}
.stat-grid.loud strong {
  font-size: clamp(78px, 9vw, 128px);
}
.stat-grid.loud small {
  font-size: 18px;
  font-weight: 800;
  text-transform: none;
}
.dark {
  background: var(--ink);
  color: #fff;
}
.dark .label {
  color: var(--orange);
}
.dark .head-note,
.dark .copy-stack p {
  color: rgba(255,255,255,0.7);
}
.pitch-section {
  position: relative;
  overflow: hidden;
  padding-block: 140px;
}
.pitch-section::before,
.pitch-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  pointer-events: none;
}
.pitch-section::before {
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
}
.pitch-section::after {
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
}
.pitch-section .container {
  position: relative;
  z-index: 1;
}
.no-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.no-grid article {
  min-height: 210px;
  padding: 32px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}
.no-grid strong,
.no-grid span {
  display: block;
  font-family: "Anton", sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}
.no-grid strong {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 90px;
}
.no-grid span {
  font-size: 32px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 36px;
  margin-bottom: 48px;
}
.metrics-row {
  margin-bottom: 34px;
}
.metrics-row div {
  background: var(--orange);
  color: var(--ink);
}
.profile-grid article {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 30px;
}
.profile-grid h3 {
  margin: 0 0 24px;
  font-size: 34px;
}
.bar {
  display: grid;
  grid-template-columns: minmax(105px, 155px) minmax(0, 1fr) 52px;
  gap: 14px;
  align-items: center;
  margin: 12px 0;
}
.bar span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.bar i {
  position: relative;
  display: block;
  height: 24px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
}
.bar i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: var(--orange);
  border-right: 1.5px solid var(--ink);
}
.bar b {
  font-family: "Anton", sans-serif;
  font-size: 24px;
  text-align: right;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.agenda-list article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 150px;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  background: #fff;
}
.agenda-list article:nth-child(5),
.agenda-list article:nth-child(7) {
  background: var(--cream);
}
.agenda-list time {
  font-family: "Anton", sans-serif;
  font-size: 34px;
}
.agenda-list h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.05;
}
.agenda-list p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.45;
}
.agenda-list span {
  justify-self: end;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.agenda-section {
  background: var(--paper-texture), #fff;
}
.agenda-section .agenda-list article {
  border-radius: 16px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.agenda-section .agenda-list article:hover {
  transform: translateX(6px);
  background: var(--orange);
  color: var(--ink);
}
.agenda-section .agenda-list article:hover p,
.agenda-section .agenda-list article:hover span {
  color: var(--ink);
}

.sand {
  background: var(--cream);
}
.speaker-grid,
.tier-grid,
.audience-grid,
.past-speaker-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}
.speaker-grid article,
.tier-grid article,
.audience-grid article,
.past-speaker-grid article {
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.speaker-grid article:hover,
.past-speaker-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 7px 7px 0 var(--orange);
  border-color: var(--ink);
}
.speaker-grid b {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--ink));
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 26px;
}
.speaker-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  /* No face detection available (would need a new dependency/API) — biasing the crop toward the
     top rather than dead-center helps most torso/half-body source photos keep the face in frame,
     but isn't a substitute for uploading a pre-cropped, roughly-square photo. */
  object-position: center 20%;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
  margin-bottom: 18px;
  filter: grayscale(10%) contrast(1.04);
}
.speaker-grid article:has(.speaker-photo),
.past-speaker-grid article:has(.speaker-photo) {
  justify-content: flex-start;
}
.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.audience-grid b {
  color: var(--orange);
  font-family: "Anton", sans-serif;
  font-size: 48px;
  line-height: 0.9;
}
.speaker-grid h3,
.tier-grid h3,
.audience-grid h3,
.past-speaker-grid h3 {
  margin: 22px 0 10px;
  font-size: 26px;
  line-height: 1.05;
}
.speaker-grid p,
.tier-grid p,
.audience-grid p,
.past-speaker-grid p {
  color: var(--muted);
  line-height: 1.45;
}
.past-speaker-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.past-speaker-grid article {
  min-height: 160px;
}
.past-speaker-grid h3 {
  margin-top: 0;
  font-size: 21px;
}
.center-actions {
  justify-content: center;
}
.sponsors {
  background: #fff;
}
.tier-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.tier-grid article:first-child {
  background: var(--ink);
  color: #fff;
}
.tier-grid article:nth-child(2) {
  background: var(--orange);
}
.tier-grid small {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.tier-grid article:nth-child(2) small,
.tier-grid article:first-child small {
  color: inherit;
}
.tier-grid button,
.tier-grid a {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 12px 14px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}
.tier-grid article:first-child button,
.tier-grid article:first-child a {
  background: var(--orange);
  color: var(--ink);
}
.partner-category {
  margin-top: 34px;
}
.partner-category h3 {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 30px;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.partner-grid.dense {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.partner-grid span {
  min-height: 224px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
}
.partner-grid .logo-card,
.partner-logo-wall .logo-card {
  padding: 24px 22px 20px;
  gap: 18px;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 9px 9px 0 rgba(255, 106, 26, 0.95);
  overflow: hidden;
}
.partner-grid .logo-mark,
.partner-logo-wall .logo-mark {
  width: min(100%, 210px);
  height: 128px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.28);
  border-radius: 4px;
  background: #fff;
}
.partner-grid .logo-mark img,
.partner-logo-wall .logo-mark img {
  width: 94%;
  height: 88%;
  object-fit: contain;
}
.partner-grid .logo-card em,
.partner-logo-wall .logo-card em {
  font-style: normal;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* SITE-11: affordance for sponsor/exhibitor cards that have profile content to show. */
.logo-card--clickable {
  cursor: pointer;
  transition: transform 0.12s ease;
}
.logo-card--clickable:hover,
.logo-card--clickable:focus-visible {
  transform: translateY(-3px);
}
.logo-card--clickable:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.partner-logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  border: 0;
  background: transparent;
}
.partner-logo-wall span {
  min-height: 218px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
}
.venue-card {
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
  padding: 34px;
  box-shadow: 12px 12px 0 var(--orange);
}
.venue-card h3 {
  margin: 12px 0 26px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
}
.venue-card .stat-grid div {
  min-height: 170px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 0;
  padding: 22px;
}
.venue-card .stat-grid strong {
  color: #fff;
  font-size: clamp(46px, 5vw, 76px);
}
.venue-card .stat-grid span {
  color: #fff;
  line-height: 1.1;
}

.final-cta {
  background: var(--orange);
  color: var(--ink);
}
.reel-section {
  padding: 96px 0 108px;
  background: var(--paper-texture), #fff;
  text-align: center;
}
.reel-section .container {
  width: min(1240px, calc(100% - 64px));
}
.reel-section h2 {
  max-width: none;
  margin: 0 0 38px;
  font-size: clamp(48px, 5.8vw, 94px);
  white-space: nowrap;
}
.reel-section h2 mark {
  position: relative;
  display: inline-block;
  background: transparent;
  color: var(--orange);
}
.reel-section h2 mark::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -4px;
  height: 6px;
  background: var(--ink);
  transform: rotate(-1deg);
}
.reel-section .label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Anton", sans-serif;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.95;
  letter-spacing: 0;
}
.reel-card {
  aspect-ratio: 16 / 9;
  max-height: 560px;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(255, 111, 31, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(36,16,10,0.62), rgba(10,10,10,0.68) 58%, rgba(58,22,9,0.72)),
    url("https://i.ytimg.com/vi/uif0ObCnUh8/hqdefault.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 9px 9px 0 var(--orange);
}
.play-button {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 6px 6px 0 #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.play-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 #fff;
}
.play-button span {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid var(--ink);
}
.featured-speakers {
  margin-top: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 64px;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  padding: 0;
}
.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  text-transform: uppercase;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.55;
}
.about-intro {
  padding-bottom: 86px;
}
.about-intro .split-grid {
  align-items: center;
}
.about-intro h2 {
  max-width: 520px;
  font-size: clamp(48px, 6vw, 88px);
}
.audience-section .audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.audience-section h2 span {
  color: var(--orange);
}
.rewind-section .metrics-row {
  border-color: var(--orange);
  background: var(--orange);
}
.speaker-feature .speaker-grid {
  margin-top: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.speaker-cast .section-head {
  align-items: center;
}
.speaker-cast h2 {
  white-space: nowrap;
}
.pitch-session-cta {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.pitch-session-cta .hero-actions,
.deal-cta .hero-actions {
  justify-content: center;
}
.sponsor-intro .split-grid {
  align-items: center;
}
.sponsor-intro h2 {
  max-width: 560px;
}
.page-hero h1 span {
  color: var(--orange);
}
.sponsor-intro .copy-stack {
  align-items: flex-start;
}
.sponsor-tiers .tier-grid article {
  min-height: 360px;
}
.deal-cta {
  text-align: center;
}
.deal-cta .container {
  display: grid;
  justify-items: center;
}
.deal-cta h2 {
  text-align: center;
}
.pulse-grid {
  position: relative;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 44px;
  padding: 48px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 111, 31, 0.24), transparent 32%),
    var(--paper-texture),
    #fff;
  box-shadow: 12px 12px 0 var(--orange);
}
.pulse-band {
  padding: 92px 0 104px;
  background: var(--paper-texture), #fff;
  color: var(--ink);
}
.pulse-band .label {
  color: var(--orange);
}
.pulse-band h2 {
  max-width: 760px;
  font-size: clamp(56px, 7.2vw, 118px);
}
.pulse-band p {
  max-width: 560px;
}
.pulse-card {
  justify-self: end;
  width: min(100%, 360px);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  box-shadow: 8px 8px 0 var(--orange);
}
.pulse-card span {
  width: fit-content;
  padding: 8px 12px;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.pulse-card strong {
  font-family: "Anton", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.96;
  text-transform: uppercase;
}
.pulse-grid .btn {
  justify-self: start;
}
.final-cta {
  padding: 120px 0;
}
.final-cta h2 {
  max-width: 1120px;
  margin: 20px 0 0;
  font-size: clamp(68px, 10vw, 164px);
  line-height: 0.88;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.awards-hero {
  text-align: center;
}
.awards-lockup {
  display: grid;
  place-items: center;
  max-width: 320px;
  margin: 0 auto 30px;
  padding: 28px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 12px 12px 0 var(--orange);
}
.awards-lockup img {
  width: 100%;
  height: auto;
  max-width: 260px;
}
.standfirst {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 700;
  line-height: 1.4;
}
.awards-hero .head-note {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
}
.callout-box {
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--cream);
  padding: 22px 26px;
  box-shadow: 9px 9px 0 var(--orange);
}
.callout-box p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}
.callout-box strong {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.mingora-credit {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.mingora-credit p {
  color: var(--ink);
  margin: 0;
}
.pillar-lead {
  margin: 30px 0 0;
  font-weight: 800;
  font-size: 17px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 0;
}
.pillar-grid article {
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  padding: 22px;
}
.pillar-grid h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.15;
}
.pillar-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.closing-line {
  margin: 26px 0 0;
  max-width: 900px;
  color: var(--muted);
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
}
.segment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.segment-list li {
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.mingora-logo-wall {
  max-width: 260px;
  margin-top: 8px;
}
.mingora-logo-wall .logo-mark {
  position: relative;
}
.mingora-logo-wall .logo-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.winner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}
.winner-grid article {
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}
.winner-grid p.winner-category {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.winner-grid h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.1;
}
.winner-grid p.winner-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.footer {
  background: var(--ink);
  color: #fff;
  background: var(--ink);
  color: #fff;
  padding: 88px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr) minmax(0, 0.8fr);
  gap: 18px;
  align-items: stretch;
}
.footer-brand,
.footer-panel {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  padding: 28px;
}
.footer img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 4px;
}
.footer h2 {
  margin: 22px 0 0;
  font-size: 54px;
  line-height: 0.98;
}
.footer h2 span,
.footer h3 {
  color: var(--orange);
}
.footer h3 {
  margin: 0 0 16px;
  font-family: "Anton", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}
.footer p {
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}
.footer a {
  color: var(--orange);
}
.footer b {
  color: #fff;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.social-links a {
  position: relative;
  min-width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1.5px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0;
  font-weight: 900;
  text-transform: uppercase;
}
.social-links a::before,
.social-links a::after {
  content: "";
  display: block;
}
.social-links a[aria-label="Instagram"]::before {
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 7px;
}
.social-links a[aria-label="Instagram"]::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 999px;
}
.social-links a[aria-label="LinkedIn"]::before {
  content: "in";
  font-size: 16px;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}
.social-links a[aria-label="YouTube"]::before {
  width: 22px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 5px;
}
.social-links a[aria-label="YouTube"]::after {
  position: absolute;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}
.social-links a[aria-label="Website"]::before {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 999px;
}
.social-links a[aria-label="Website"]::after {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 -1px currentColor, 0 6px 0 -1px currentColor;
}
.social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.footer-bottom {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.pitch-session-cta .container {
  text-align: center;
}
.pitch-session-cta h2 {
  margin-left: auto;
  margin-right: auto;
}
.pitch-session-cta .hero-actions {
  justify-content: center;
}

.modal {
  width: min(760px, calc(100% - 28px));
  border: 0;
  padding: 0;
  background: transparent;
}
.modal::backdrop {
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  margin: 24px auto;
  padding: 42px 40px 40px;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 24px;
  box-shadow: 12px 12px 0 var(--orange);
  overflow: hidden;
}
.modal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: var(--orange);
  border-bottom: 2px solid var(--ink);
}
.modal-card h2 {
  margin: 10px 0 10px;
  font-size: clamp(48px, 6vw, 64px);
  line-height: 0.95;
}
.modal-card > .label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
}
.modal-intro {
  max-width: 610px;
  margin: 0 0 20px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}
.close {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}
.type-tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  margin: 22px 0;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
}
.type-tabs button {
  flex: 1;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.type-tabs button.active {
  background: var(--ink);
  color: #fff;
  box-shadow: inset 0 -4px 0 var(--orange);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  padding: 18px;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
input,
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 2px 0 rgba(10,10,10,0.08);
}
input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 111, 31, 0.24);
}
textarea { resize: vertical; }
.span-2 { grid-column: 1 / -1; }
.consent {
  flex-direction: row;
  align-items: flex-start;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}
.consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}
.form-message {
  min-height: 22px;
  margin: 16px 0 0;
  font-weight: 800;
}
.form-message.error { color: #b00020; }
.form-message.success { color: #146c2e; }

.modal-actions {
  padding-top: 12px;
  border-top: 2px dashed var(--ink);
}

.pulse-options {
  display: grid;
  gap: 16px;
}
fieldset {
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  margin: 0;
  padding: 14px;
}
legend {
  padding: 0 6px;
  font-weight: 900;
  text-transform: uppercase;
}
fieldset label {
  margin: 0;
  flex-direction: row;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}
fieldset input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
fieldset legend {
  width: auto;
}
fieldset label span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 9px 14px;
  background: #fff;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
fieldset label:hover span {
  transform: translateY(-2px);
}
fieldset input:checked + span {
  background: var(--ink);
  color: #fff;
  box-shadow: inset 0 -4px 0 var(--orange);
}
.pulse-modal {
  width: min(940px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  overflow: hidden;
}
.pulse-modal .modal-card {
  margin: 14px auto;
  max-height: calc(100dvh - 34px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}
.pulse-modal .pulse-options {
  gap: 12px;
}
.pulse-modal fieldset {
  background: #fff;
}
.pulse-results {
  display: none;
  margin-top: 18px;
  padding: 24px;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  background: var(--cream);
}
.pulse-results[hidden] {
  display: none !important;
}
.pulse-submitted .pulse-questionnaire,
.pulse-submitted .pulse-submit {
  display: none !important;
}
.pulse-submitted .pulse-results {
  display: block;
}
.pulse-submit {
  margin: 28px 0 20px;
}
.pulse-thanks {
  text-align: center;
  margin-bottom: 22px;
}
.pulse-check {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
}
.pulse-thanks h3 {
  margin: 8px 0;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 0.86;
}
.pulse-thanks p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.pulse-results h4 {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pulse-result-actions {
  justify-content: center;
  border-top: 0;
}
fieldset input[type="checkbox"] {
  position: static;
  opacity: 1;
  pointer-events: auto;
  accent-color: var(--orange);
}
.video-modal {
  width: min(1080px, calc(100% - 32px));
}
.video-card {
  position: relative;
  margin: 24px auto;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--orange);
  overflow: hidden;
}
.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.video-close {
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--orange);
  color: var(--ink);
}

@media (max-width: 1100px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border-bottom: 1.5px solid var(--ink);
  }
  .site-nav.open { display: flex; }
  .site-nav a,
  .site-nav button {
    text-align: left;
  }
  .hero-grid,
  .split-grid,
  .profile-grid,
  .pulse-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .countdown-card { max-width: 520px; }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .speaker-grid,
  .speaker-feature .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tier-grid,
  .audience-grid,
  .past-speaker-grid,
  .partner-grid,
  .partner-grid.dense,
  .partner-logo-wall,
  .pillar-grid,
  .winner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .audience-section .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-side {
    min-height: auto;
  }
  .no-grid {
    grid-template-columns: 1fr;
  }
  .pulse-grid .btn { justify-self: start; }
  .pulse-card {
    justify-self: start;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container { width: min(100% - 32px, 1440px); }
  .site-header { padding: 8px 14px; }
  .brand img { width: 52px; height: 52px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 9px; letter-spacing: 1px; }
  .hero { padding: 44px 0 40px; }
  h1 { font-size: clamp(58px, 19vw, 86px); }
  .hero-copy p { font-size: 17px; }
  .hero-copy .hero-actions {
    flex-wrap: wrap;
  }
  .hero-actions,
  .modal-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .btn { width: 100%; }
  .countdown-card { padding: 17px; }
  .countdown { gap: 5px; }
  .countdown div { padding: 9px 3px; }
  .section { padding: 72px 0; }
  .section h2 { font-size: clamp(42px, 13vw, 70px); }
  .stat-grid,
  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-grid.loud div {
    min-height: 210px;
    padding: 28px 20px;
  }
  .stat-grid.loud strong {
    font-size: 68px;
  }
  .agenda-list article {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .agenda-list span { justify-self: start; }
  .speaker-grid,
  .speaker-feature .speaker-grid,
  .tier-grid,
  .audience-grid,
  .past-speaker-grid,
  .partner-grid,
  .partner-grid.dense,
  .partner-logo-wall,
  .audience-section .audience-grid,
  .form-grid,
  .pillar-grid,
  .winner-grid {
    grid-template-columns: 1fr;
  }
  .reel-card { min-height: 240px; }
  .reel-section .container {
    width: min(100% - 32px, 1240px);
  }
  .reel-section h2 {
    white-space: normal;
  }
  .play-button {
    width: 82px;
    height: 82px;
  }
  .play-button span {
    border-top-width: 16px;
    border-bottom-width: 16px;
    border-left-width: 24px;
  }
  .speaker-cast h2 { white-space: normal; }
  .span-2 { grid-column: auto; }
  .type-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
  }
  .pulse-grid {
    padding: 24px;
  }
  .pulse-card {
    min-height: 220px;
    padding: 22px;
  }
  fieldset label span {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 12px;
  }
  .footer-brand,
  .footer-panel {
    padding: 22px;
  }
  .footer h2 {
    font-size: 42px;
  }
  .modal-card {
    padding: 26px 18px;
    box-shadow: 6px 6px 0 var(--orange);
  }
  .modal-card h2 { font-size: 42px; }
  .bar {
    grid-template-columns: 1fr 52px;
  }
  .bar span {
    grid-column: 1 / -1;
  }
}

/* ── pulse-submit.css (merged 2026-07-10) ─────────────────────────────────── */
.pulse-thanks {
  background: #fffaf2;
  border: 2px solid #111;
  border-radius: 14px;
  box-shadow: 10px 10px 0 #ff6a1a;
  color: #111;
  margin: 0 auto;
  max-width: 760px;
  padding: clamp(22px, 4vw, 42px);
  position: relative;
  text-align: center;
}

.pulse-close-inline {
  align-items: center;
  background: #111;
  border: 2px solid #111;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 14px;
  text-transform: uppercase;
  top: 14px;
  width: 36px;
}

.pulse-check {
  align-items: center;
  background: #ff6a1a;
  border-radius: 50%;
  color: #111;
  display: inline-flex;
  font-size: 44px;
  font-weight: 900;
  height: 78px;
  justify-content: center;
  line-height: 1;
  width: 78px;
}

.pulse-kicker {
  color: #ff6a1a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  margin: 18px 0 8px;
  text-transform: uppercase;
}

.pulse-thanks h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: 0;
  line-height: .82;
  margin: 0;
  text-transform: uppercase;
}

.pulse-live-copy {
  margin: 18px auto 24px;
  max-width: 560px;
}

.pulse-graph-box {
  background: #fffaf2;
  border: 2px solid #111;
  border-radius: 12px;
  padding: clamp(18px, 3vw, 26px);
  text-align: left;
}

.pulse-graph-box h3 {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.pulse-bar-row {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(120px, 170px) 1fr 58px;
  margin: 14px 0;
}

.pulse-bar-row strong {
  font-size: 13px;
  font-weight: 900;
}

.pulse-bar-row span {
  background: #fff;
  border: 2px solid #111;
  border-radius: 3px;
  display: block;
  height: 22px;
  overflow: hidden;
}

.pulse-bar-row i {
  background: #ff6a1a;
  display: block;
  height: 100%;
}

.pulse-bar-row b {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 30px;
}

.pulse-result-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

.pulse-result-actions button {
  border: 2px solid #111;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 15px 26px;
  text-transform: uppercase;
}

.pulse-register-now {
  background: #ff6a1a;
  color: #111;
}

.pulse-result-actions .secondary {
  background: #fff;
  color: #111;
  position: static;
  width: auto;
}

.pulse-save-warning {
  color: #9a3b00;
  font-size: 13px;
  font-weight: 800;
  margin: 16px auto 0;
  max-width: 560px;
}

@media (max-width: 640px) {
  .pulse-bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pulse-bar-row b {
    font-size: 24px;
  }
}

/* ── form-polish.css (merged 2026-07-10) ──────────────────────────────────── */
[hidden] { display: none !important; }

dialog[open] {
  box-sizing: border-box;
  max-width: min(680px, calc(100vw - 24px));
  max-height: min(92dvh, 880px);
  border: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

dialog.pulse-modal[open] {
  max-width: min(820px, calc(100vw - 24px));
  overflow-y: auto !important;
}

dialog.pulse-modal[open] > form.modal-card {
  overflow: visible !important;
  max-height: none !important;
}

dialog[open] > form.modal-card {
  box-sizing: border-box;
  margin: 0;
  max-height: min(92dvh, 880px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #111 #f0ede8;
  padding: clamp(32px, 4vw, 52px) clamp(24px, 4vw, 48px) clamp(28px, 3vw, 40px);
}

dialog[open] > form.modal-card::-webkit-scrollbar { width: 7px; }
dialog[open] > form.modal-card::-webkit-scrollbar-track { background: #f0ede8; }
dialog[open] > form.modal-card::-webkit-scrollbar-thumb {
  background: #111;
  border-radius: 4px;
}

/* SITE-11: sponsor/exhibitor profile popup. Own scoped card rather than reusing
   form.modal-card's selector, since this modal has no form. */
dialog.sponsor-modal[open] {
  max-width: min(560px, calc(100vw - 24px));
  max-height: min(88dvh, 720px);
}
.sponsor-modal-card {
  box-sizing: border-box;
  margin: 0;
  max-height: min(88dvh, 720px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #111 #f0ede8;
  padding: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 40px) clamp(28px, 3vw, 36px);
}
.sponsor-modal-card::-webkit-scrollbar { width: 7px; }
.sponsor-modal-card::-webkit-scrollbar-track { background: #f0ede8; }
.sponsor-modal-card::-webkit-scrollbar-thumb { background: #111; border-radius: 4px; }
.sponsor-modal-card .close {
  position: sticky;
  float: right;
  top: 0;
  margin: -8px -8px 0 0;
  z-index: 10;
}
.sponsor-modal-logo {
  width: min(100%, 200px);
  height: 110px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  background: #fff;
  margin: 0 0 20px;
  clear: both;
}
.sponsor-modal-logo img {
  width: 94%;
  height: 88%;
  object-fit: contain;
}
.sponsor-modal-card h2 {
  margin: 0 0 6px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 0.98;
}
.sponsor-modal-tier {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
}
.sponsor-modal-desc {
  margin: 0 0 16px;
  color: var(--ink);
  line-height: 1.5;
  white-space: pre-wrap;
}
.sponsor-modal-website {
  margin: 0 0 10px;
  font-weight: 700;
  word-break: break-word;
}
.sponsor-modal-website a { color: var(--orange); }
.sponsor-modal-booth {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

#registration-form .close,
#pulse-form .close {
  position: sticky;
  float: right;
  top: 0;
  margin: -8px -8px 0 0;
  z-index: 10;
}

#registration-form > .label {
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

#registration-form h2 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 0.92;
  margin: 8px 0 12px;
}

.modal-intro {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  line-height: 1.5;
  margin: 0 0 18px;
}

.type-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px;
  margin: 0 0 22px;
  border: 2px solid #111;
  border-radius: 999px;
  background: #f5f2ee;
}

.type-tabs button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 10px 6px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.12s, color 0.12s;
}

.type-tabs button.active {
  background: #111;
  color: #fff;
  box-shadow: inset 0 -3px 0 #ff6a1a;
}

#registration-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0 0 14px;
}

#registration-form .form-grid label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #333;
}

#registration-form .form-grid input,
#registration-form .form-grid select,
#registration-form .form-grid textarea {
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 8px;
  background: #fff;
  padding: 11px 13px;
  font-size: 15px;
  color: #111;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  box-shadow: none;
  transition: border-color 0.12s, box-shadow 0.12s;
  box-sizing: border-box;
}

#registration-form .form-grid input:focus,
#registration-form .form-grid select:focus,
#registration-form .form-grid textarea:focus {
  outline: 0;
  border-color: #ff6a1a;
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.18);
}

#registration-form .form-grid textarea {
  min-height: 84px;
  resize: vertical;
}

#registration-form .consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
}

#registration-form .consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid #111;
  border-radius: 4px;
  accent-color: #ff6a1a;
  box-shadow: none;
  padding: 0;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 2px dashed #e0ddd8;
}

.modal-actions .btn-dark,
.modal-actions [data-submit-label] {
  flex: 1;
  min-width: 140px;
  justify-content: center;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 8px;
}

.form-message {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  min-height: 20px;
}

.form-message.success { color: #166534; }
.form-message.error   { color: #991b1b; }

.reg-success {
  text-align: center;
  padding: 16px 0 8px;
}

.reg-success-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ff6a1a;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 6px 6px 0 #111;
}

.reg-success h2 {
  font-size: clamp(42px, 6vw, 62px);
  line-height: 0.9;
  margin: 0 0 14px;
}

.reg-success-msg {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto 18px;
}

.reg-success-meta {
  display: inline-block;
  border: 2px solid #111;
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  background: #fff9f4;
  line-height: 1.6;
  margin-bottom: 24px;
}

.reg-success .modal-actions {
  justify-content: center;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

#pulse-form fieldset {
  border: 2px solid #111;
  border-radius: 14px;
  margin: 14px 0;
  padding: 18px 20px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #fff;
}

#pulse-form fieldset legend {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 8px;
}

#pulse-form fieldset label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 0;
  border: 0;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  min-height: 0;
  padding: 0;
  text-transform: none;
  background: none;
}

#pulse-form fieldset label span {
  display: inline-flex;
  align-items: center;
  border: 2px solid #111;
  border-radius: 999px;
  padding: 8px 16px;
  min-height: 38px;
  background: #fff;
  transition: background 0.12s, color 0.12s, box-shadow 0.12s;
  font-size: 13px;
  font-weight: 700;
}

#pulse-form fieldset label:has(input:checked) span {
  background: #111;
  color: #fff;
  box-shadow: 0 4px 0 #ff6a1a;
}

#pulse-form fieldset input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.pulse-submit {
  display: block;
  width: 100%;
  margin: 22px 0 4px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 900;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #111;
  background: #ff6a1a;
  color: #111;
  cursor: pointer;
  transition: box-shadow 0.12s, transform 0.12s;
  box-shadow: 4px 4px 0 #111;
}

.pulse-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #111;
}

.pulse-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.pulse-results-direct,
.ffcc-pulse-result,
.pulse-emergency-result {
  background: #fff9f4;
  border: 2px solid #111;
  border-radius: 14px;
  box-shadow: 8px 8px 0 #ff6a1a;
  color: #111;
  margin: 16px auto 0;
  max-width: 100%;
  padding: clamp(22px, 3.5vw, 36px);
  position: relative;
  text-align: center;
}

.registration-exhibit-space-hidden {
  display: none !important;
}

@media (max-width: 600px) {
  dialog[open] {
    max-width: 100vw;
    max-height: 100dvh;
    border-radius: 0;
  }

  dialog[open] > form.modal-card {
    max-height: 100dvh;
    border-radius: 0;
    box-shadow: none;
  }

  #registration-form .form-grid {
    grid-template-columns: 1fr;
  }

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

  #registration-form .form-grid .span-2 {
    grid-column: auto;
  }
}
