@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --scale-black: #050908;
  --page: #080b11;
  --panel: #0c1117;
  --panel-2: #161b24;
  --panel-3: #1a2030;
  --titanium: #f4f4f4;
  --muted: #9ca1a8;
  --dim: #5f6670;
  --green: #09ff1a;
  --green-2: #08e226;
  --line: rgba(244, 244, 244, 0.08);
  --line-green: rgba(9, 255, 26, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(9, 255, 26, 0.13), transparent 34rem),
    radial-gradient(ellipse at 50% 12rem, rgba(64, 35, 16, 0.55), transparent 48rem),
    linear-gradient(90deg, rgba(9, 255, 26, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(9, 255, 26, 0.025) 1px, transparent 1px),
    var(--page);
  background-size: auto, 80px 80px, 80px 80px, auto;
  color: var(--titanium);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  min-height: 82px;
  margin: 0;
  padding: 12px max(32px, calc((100% - 1328px) / 2));
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  transition: min-height 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(5, 9, 8, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.brand-mark img {
  width: 124px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 42px);
  color: rgba(244, 244, 244, 0.72);
  font-size: 0.92rem;
  font-weight: 850;
}

.site-header nav a,
.button,
.header-cta {
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--titanium);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  min-height: 46px;
  padding: 13px 25px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 950;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease), opacity 260ms var(--ease);
}

.header-cta,
.button-primary {
  background: var(--green);
  color: var(--scale-black);
  box-shadow: 0 0 24px rgba(9, 255, 26, 0.28), 0 16px 36px rgba(9, 255, 26, 0.14);
}

.button-secondary,
.button-outline {
  border-color: rgba(244, 244, 244, 0.14);
  background: rgba(244, 244, 244, 0.035);
  color: var(--titanium);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.button-outline {
  width: 100%;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(9, 255, 26, 0.34), 0 22px 42px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--titanium);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero-section {
  position: relative;
  padding: 32px 0 56px;
  background: transparent;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  width: min(1152px, calc(100% - 88px));
  min-height: min(644px, calc(100svh - 148px));
  margin: 0 auto;
  border-radius: 24px;
  background: #06090c;
  box-shadow: var(--shadow);
  isolation: isolate;
  animation: heroIn 900ms var(--ease-soft) both;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/source/event-room.webp") center / cover no-repeat;
  background-position: center 42%;
  opacity: 0.18;
  filter: saturate(0.72) contrast(1.08) brightness(0.9);
  transform: scale(1.02);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.88) contrast(1.08) brightness(0.8);
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 9, 8, 0.1) 0%, rgba(5, 9, 8, 0.08) 28%, rgba(5, 9, 8, 0.88) 100%),
    linear-gradient(90deg, rgba(5, 9, 8, 0.82), rgba(5, 9, 8, 0.18) 48%, rgba(5, 9, 8, 0.54)),
    radial-gradient(circle at 50% 58%, rgba(9, 255, 26, 0.08), transparent 28rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 32px;
  align-items: end;
  min-height: min(644px, calc(100svh - 148px));
  padding: 0 clamp(34px, 4vw, 48px) clamp(34px, 4vw, 48px);
  animation: contentIn 900ms 120ms var(--ease-soft) both;
}

.hero-copy-block {
  position: relative;
  max-width: 720px;
}

.hero-supertext {
  display: none;
}

.pill,
.kicker,
.badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(9, 255, 26, 0.13);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 18px;
  color: var(--titanium);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 4.4vw, 4.7rem);
}

h2 {
  font-size: clamp(2.65rem, 5.2vw, 5rem);
}

h2 span,
h1 span {
  color: var(--green);
  text-shadow: 0 0 28px rgba(9, 255, 26, 0.22);
}

h3 {
  margin-bottom: 10px;
  color: var(--titanium);
  font-size: 1.28rem;
  line-height: 1.15;
}

.hero-copy,
.section-heading p,
.venue-card-copy p,
.faq-list p,
.vendor-intro p {
  color: rgba(244, 244, 244, 0.66);
  font-size: 1.06rem;
  font-weight: 650;
}

.hero-copy {
  max-width: 460px;
  margin-bottom: 22px;
  color: rgba(244, 244, 244, 0.82);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(346px, 100%);
  margin: 0;
  border: 1px solid rgba(9, 255, 26, 0.35);
  border-radius: 14px;
  padding: 12px 15px;
  background: rgba(5, 9, 8, 0.58);
  box-shadow: inset 0 0 30px rgba(9, 255, 26, 0.07), 0 0 22px rgba(9, 255, 26, 0.08);
}

.countdown div {
  text-align: center;
}

.countdown div + div {
  border-left: 1px solid rgba(244, 244, 244, 0.12);
}

.countdown strong {
  display: block;
  color: var(--titanium);
  font-size: clamp(1.9rem, 2.8vw, 2.35rem);
  line-height: 1;
}

.countdown span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  align-self: end;
  display: grid;
  width: 204px;
  margin-left: auto;
}

.hero-actions .button {
  width: 100%;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 128px) clamp(16px, 6vw, 80px);
  background: #0b0f14;
  border-top: 1px solid var(--line);
}

.section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(9, 255, 26, 0.08), transparent 34rem),
    linear-gradient(90deg, transparent, rgba(9, 255, 26, 0.03), transparent);
  opacity: 0.35;
  transform: scale(0.985);
  transition: opacity 1100ms var(--ease-soft), transform 1100ms var(--ease-soft);
}

.section.section-visible::before {
  opacity: 1;
  transform: scale(1);
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 58px;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center .kicker,
.section-heading.center .pill {
  margin-right: auto;
  margin-left: auto;
}

.section-heading p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.about-section {
  padding-top: clamp(94px, 11vw, 148px);
  padding-bottom: clamp(94px, 11vw, 148px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: start;
  width: min(1152px, 100%);
  margin: 0 auto;
}

.about-heading h2 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5.2vw, 4.9rem);
}

.about-copy {
  border-left: 1px solid var(--line-green);
  padding-left: clamp(26px, 4vw, 48px);
}

.about-copy p {
  margin-bottom: 22px;
  color: rgba(244, 244, 244, 0.7);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 620;
  line-height: 1.75;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.venue-section,
.agenda-section,
.proof-section,
.speakers-section,
.final-section {
  background: #0d1018;
}

.venue-card {
  position: relative;
  overflow: hidden;
  width: min(1090px, 100%);
  margin: 0 auto 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.venue-card img {
  width: 100%;
  min-height: 360px;
  max-height: 500px;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.72);
}

.venue-card-copy {
  position: absolute;
  right: clamp(22px, 5vw, 54px);
  bottom: clamp(22px, 5vw, 44px);
  left: clamp(22px, 5vw, 54px);
  display: grid;
  gap: 8px;
  justify-items: start;
}

.venue-card-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1090px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.logistics-grid article {
  min-height: 220px;
  padding: 28px 24px;
  background: rgba(16, 21, 29, 0.98);
}

.logistics-label,
.mission-label {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logistics-grid h3 {
  font-size: 1.08rem;
}

.logistics-grid article > p:last-child {
  margin: 16px 0 0;
  color: rgba(244, 244, 244, 0.58);
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.58;
}

.audience-intro {
  width: min(1152px, 100%);
  margin: 64px auto 26px;
  text-align: center;
}

.audience-intro .kicker {
  margin-right: auto;
  margin-left: auto;
}

.audience-intro h3 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.audience-intro > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(244, 244, 244, 0.64);
  font-size: 1.04rem;
  font-weight: 650;
}

.detail-grid,
.why-grid,
.ticket-grid,
.vendor-grid {
  display: grid;
  width: min(1152px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.detail-grid article,
.why-grid article,
.agenda-card,
.ticket-card,
.vendor-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(22, 27, 36, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.035);
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease);
}

.detail-grid article:hover,
.why-grid article:hover,
.agenda-card:hover,
.ticket-card:hover,
.vendor-card:hover,
.faq-list details:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 255, 26, 0.18);
  background: rgba(26, 32, 48, 0.9);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34), 0 0 24px rgba(9, 255, 26, 0.06);
}

.detail-grid article {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px;
  background:
    linear-gradient(150deg, rgba(9, 255, 26, 0.055), transparent 44%),
    rgba(22, 27, 36, 0.82);
}

.final-section .proof-actions {
  justify-content: center;
  width: 100%;
  margin: 24px auto 0;
}

.icon {
  display: inline-grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(9, 255, 26, 0.2);
  border-radius: 10px;
  background: rgba(9, 255, 26, 0.1);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 1000;
}

.detail-grid p,
.ticket-label {
  margin: 18px 0 6px;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-grid strong {
  color: var(--titanium);
  font-size: 1.04rem;
  line-height: 1.4;
}

.detail-grid small {
  margin-top: auto;
  padding-top: 20px;
  color: rgba(244, 244, 244, 0.48);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.why-section,
.tickets-section,
.faq-section {
  background: #0a0d13;
}

.why-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.why-grid article {
  min-height: 270px;
  padding: 26px 22px;
}

.why-grid .wide {
  grid-column: auto;
  min-height: 270px;
  background:
    linear-gradient(150deg, rgba(9, 255, 26, 0.12), rgba(16, 21, 29, 0.86) 58%),
    rgba(16, 21, 29, 0.82);
}

.why-grid h3 {
  margin-top: 28px;
  font-size: 1.16rem;
}

.why-grid p {
  margin-bottom: 0;
  color: rgba(244, 244, 244, 0.62);
  font-size: 0.94rem;
  line-height: 1.52;
}

.outcomes-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 7vw, 92px);
  width: min(1090px, 100%);
  margin: 64px auto 0;
  border-top: 1px solid var(--line-green);
  padding-top: 44px;
}

.outcomes-panel h3 {
  margin-top: 20px;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.outcomes-panel blockquote {
  margin: 28px 0 0;
  color: rgba(244, 244, 244, 0.52);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 650;
}

.outcomes-panel cite {
  color: var(--green);
  font-style: normal;
}

.outcome-list {
  display: grid;
  gap: 0;
}

.outcome-list li {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 14px 18px 42px;
  color: rgba(244, 244, 244, 0.82);
  font-size: 1rem;
}

.outcome-list li::before {
  top: 20px;
  left: 4px;
}

.speaker-lineup {
  overflow: hidden;
  width: min(1152px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line-green);
  border-radius: 18px;
  background: #050908;
  box-shadow: var(--shadow);
}

.speaker-lineup > img {
  width: 100%;
  height: auto;
  border: 0;
  background: #050908;
  image-rendering: auto;
}

.speaker-roster {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border-top: 1px solid var(--line-green);
  background: var(--line);
}

.speaker-roster > span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 82px;
  padding: 15px 12px;
  background: #080c11;
}

.speaker-roster small {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(9, 255, 26, 0.28);
  border-radius: 8px;
  background: rgba(9, 255, 26, 0.08);
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 950;
}

.speaker-roster strong {
  min-width: 0;
  color: rgba(244, 244, 244, 0.88);
  font-size: clamp(0.66rem, 0.85vw, 0.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.agenda-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
  width: min(1152px, 100%);
  margin: 0 auto;
}

.agenda-poster {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-green);
  border-radius: 8px;
  background: #080c11;
  box-shadow: var(--shadow);
}

.agenda-poster img,
.ticket-art img {
  width: 100%;
  background: var(--panel);
  object-fit: cover;
}

.agenda-poster img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

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

.agenda-card {
  min-height: 218px;
  border: 0;
  border-radius: 0;
  padding: 26px 24px;
  background: #11161e;
  box-shadow: none;
}

.agenda-card:hover {
  transform: none;
  border-color: transparent;
  background: #151c25;
  box-shadow: none;
}

.agenda-card span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agenda-card h3 {
  margin-top: 16px;
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  line-height: 1.16;
}

.agenda-card p {
  margin-bottom: 0;
  color: rgba(244, 244, 244, 0.68);
  font-size: 0.95rem;
}

.agenda-card.accent {
  grid-column: 1 / -1;
  min-height: 180px;
  border-left: 3px solid var(--green);
  background: #0d1a14;
}

.ticket-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(980px, 100%);
}

.ticket-art {
  width: min(960px, 100%);
  margin: -24px auto 30px;
}

.ticket-art img {
  max-height: 360px;
  border: 1px solid var(--line);
  border-radius: 22px;
  object-position: center bottom;
  box-shadow: var(--shadow);
}

.ticket-card,
.vendor-card {
  position: relative;
  padding: 34px 30px;
}

.ticket-card {
  overflow: hidden;
  padding: 0;
}

.experience-art {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  background: #080b11;
  object-fit: cover;
}

.ticket-card-copy {
  padding: 30px;
}

.ticket-note {
  margin: -2px 0 22px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticket-card.featured,
.vendor-card.featured {
  border-color: var(--line-green);
  box-shadow: 0 0 34px rgba(9, 255, 26, 0.08), 0 22px 56px rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.05);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--green);
  color: var(--scale-black);
  font-size: 0.68rem;
}

.ticket-card .badge {
  top: 14px;
  z-index: 2;
}

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

li {
  position: relative;
  margin: 0 0 15px;
  padding-left: 30px;
  color: rgba(244, 244, 244, 0.7);
  font-weight: 720;
}

li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: rgba(9, 255, 26, 0.12);
  color: var(--green);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 1000;
}

.ticket-card .button,
.vendor-card .button {
  margin-top: 26px;
}

.line-kicker {
  border-radius: 0;
  border-left: 2px solid var(--green);
  padding-left: 18px;
  background: transparent;
}

.community-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.65fr);
  overflow: hidden;
  width: min(1120px, 100%);
  margin: 0 auto 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080c11;
}

.community-proof > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 48%;
}

.community-proof figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  border-left: 1px solid var(--line-green);
  padding: clamp(26px, 3.5vw, 42px);
}

.community-proof h3 {
  margin: 18px 0 14px;
  font-size: clamp(1.8rem, 2.7vw, 2.65rem);
  line-height: 1.05;
}

.community-proof figcaption > p:last-child {
  margin: 0;
  color: rgba(244, 244, 244, 0.66);
  font-size: 0.96rem;
  font-weight: 620;
  line-height: 1.65;
}

.testimonial-feature {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.testimonial-video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line-green);
  border-radius: 16px;
  background: #050709;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42), 0 0 42px rgba(9, 255, 26, 0.08);
}

.testimonial-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quotes {
  display: grid;
}

.testimonial-quotes blockquote {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 19px 18px 19px 44px;
  color: var(--titanium);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  font-weight: 850;
  line-height: 1.35;
}

.testimonial-quotes blockquote::before {
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--green);
  content: "\201C";
  font-size: 2.5rem;
  font-weight: 1000;
  line-height: 1;
}

.testimonial-quotes blockquote:nth-child(even) {
  color: var(--green);
}

.testimonial-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 42px auto 0;
}

.testimonial-cta p {
  margin: 0;
  color: rgba(244, 244, 244, 0.68);
  font-weight: 750;
}

.vendors-section {
  background: #080b11;
}

.mission-section {
  background: #0a0d13;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 64px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.mission-grid article {
  border-top: 1px solid var(--line-green);
  padding-top: 30px;
}

.mission-grid img {
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
}

.mission-grid h3 {
  min-height: 58px;
  font-size: 1.25rem;
}

.mission-grid article > p:last-child {
  margin: 18px 0 0;
  color: rgba(244, 244, 244, 0.6);
  font-size: 0.94rem;
  font-weight: 620;
  line-height: 1.65;
}

.vendor-intro {
  width: min(1090px, 100%);
  margin: 0 auto 18px;
}

.vendor-intro h3,
.vendor-intro p {
  margin-bottom: 0;
}

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

.faq-list {
  display: grid;
  width: min(820px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.faq-list details {
  padding: 24px 26px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  color: var(--titanium);
  font-size: 1.06rem;
  font-weight: 950;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  float: right;
  color: var(--green);
  content: "+";
  transition: transform 260ms var(--ease);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 18px 0 0;
  animation: faqDrop 260ms var(--ease) both;
}

.final-section {
  padding-top: clamp(96px, 12vw, 164px);
  padding-bottom: clamp(96px, 12vw, 164px);
}

.back-top {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 40;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--scale-black);
  font-weight: 1000;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(9, 255, 26, 0.36);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 98px;
  padding: 24px clamp(22px, 6vw, 80px);
  background: #080b11;
  border-top: 1px solid var(--line);
  color: rgba(244, 244, 244, 0.54);
}

.site-footer img {
  width: 90px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  will-change: opacity, filter, transform, clip-path;
  transition:
    opacity 760ms var(--ease-soft),
    filter 760ms var(--ease-soft),
    transform 860ms var(--ease-soft),
    clip-path 980ms var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
  clip-path: inset(0 0 0 0 round 0);
}

.reveal-rise {
  filter: blur(6px);
  transform: translate3d(0, 30px, 0) scale(0.99);
}

.reveal-soft {
  filter: blur(12px);
  transform: translate3d(0, 14px, 0);
}

.reveal-left {
  filter: blur(5px);
  transform: translate3d(-34px, 0, 0) rotate(-0.35deg);
}

.reveal-right {
  filter: blur(5px);
  transform: translate3d(34px, 0, 0) rotate(0.35deg);
}

.reveal-pop {
  filter: blur(4px);
  transform: translate3d(0, 12px, 0) scale(0.94);
  transform-origin: center bottom;
}

.reveal-zoom {
  filter: blur(7px);
  transform: scale(1.045);
  transform-origin: center;
}

.reveal-clip {
  clip-path: inset(0 100% 0 0 round 22px);
  filter: saturate(0.6) brightness(0.82);
  transform: scale(1.018);
}

.reveal-clip.is-visible {
  filter: saturate(1) brightness(1);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes contentIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes faqDrop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    grid-template-columns: 1fr auto;
    width: auto;
    min-height: 78px;
    margin: 0;
    padding-right: 16px;
    padding-left: 16px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled,
  .site-header.nav-open {
    background: rgba(5, 9, 8, 0.92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
  }

  .site-header nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px 22px 24px;
    background: rgba(8, 12, 15, 0.98);
    border-bottom: 1px solid var(--line);
    animation: menuDrop 260ms var(--ease) both;
  }

  .site-header.nav-open nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-section {
    padding: 0 0 36px;
  }

  .hero-shell {
    width: 100%;
    min-height: 700px;
    border-radius: 0;
    background:
      linear-gradient(rgba(5, 9, 8, 0.12), rgba(5, 9, 8, 0.92)),
      #050908;
  }

  .hero-media {
    inset: 0;
    opacity: 0.12;
    filter: saturate(0.5) brightness(0.68);
  }

  .hero-video {
    inset: 0;
    width: 100%;
    min-width: 0;
    height: 100%;
    aspect-ratio: auto;
    opacity: 0.72;
    filter: saturate(0.72) contrast(1.08) brightness(0.66);
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 9, 8, 0.14) 0%, rgba(5, 9, 8, 0.3) 28%, rgba(5, 9, 8, 0.84) 52%, rgba(5, 9, 8, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 9, 8, 0.28), transparent 50%, rgba(5, 9, 8, 0.28));
  }

  .hero-content {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: end;
    align-items: end;
    min-height: 700px;
    padding: 180px 20px 44px;
    text-align: center;
  }

  .hero-copy-block {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-copy-block::before {
    display: none;
  }

  .hero-supertext {
    display: none;
  }

  .hero-content .pill {
    margin-right: auto;
    margin-left: auto;
  }

  h1 {
    font-size: clamp(2.6rem, 7vw, 4rem);
  }

  .hero-actions {
    width: min(320px, 100%);
    margin: 8px auto 0;
    justify-content: center;
  }

  .detail-grid,
  .why-grid,
  .ticket-grid,
  .vendor-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .outcomes-panel {
    grid-template-columns: 1fr;
  }

  .about-copy {
    border-top: 1px solid var(--line-green);
    border-left: 0;
    padding-top: 34px;
    padding-left: 0;
  }

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

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

  .speaker-roster > span:last-child {
    grid-column: span 2;
  }

  .agenda-layout {
    grid-template-columns: 1fr;
  }

  .agenda-poster {
    width: min(640px, 100%);
    margin: 0 auto;
  }

  .community-proof {
    grid-template-columns: 1fr;
  }

  .community-proof > img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .community-proof figcaption {
    border-top: 1px solid var(--line-green);
    border-left: 0;
  }

  .why-grid .wide {
    grid-column: auto;
  }

  .testimonial-feature {
    grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
    gap: 34px;
  }

  .mission-grid article {
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 18px;
  }

  .mission-grid img {
    grid-row: 1 / 4;
  }

  .mission-grid h3 {
    min-height: 0;
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .hero-shell,
  .hero-content {
    min-height: 0;
  }

  .hero-content {
    padding: 116px 18px 30px;
  }

  .hero-copy {
    margin-right: auto;
    margin-left: auto;
    font-size: 0.96rem;
  }

  .back-top {
    display: none;
  }

  .brand-mark img {
    width: 96px;
  }

  .site-footer img {
    width: 68px;
  }

  .section {
    padding: 86px 16px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .logistics-grid {
    grid-template-columns: 1fr;
  }

  .logistics-grid article {
    min-height: 0;
  }

  .speaker-lineup > img {
    min-height: 0;
  }

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

  .speaker-roster > span {
    min-height: 70px;
    padding: 12px 10px;
  }

  .speaker-roster > span:last-child {
    grid-column: 1 / -1;
  }

  .mission-grid article {
    display: block;
  }

  .mission-grid img {
    width: 64px;
    height: 64px;
  }

  h2 {
    font-size: clamp(2.05rem, 9vw, 2.75rem);
  }

  h1 {
    font-size: 2rem;
  }

  .countdown {
    grid-template-columns: repeat(4, 1fr);
    margin-right: auto;
    margin-left: auto;
    padding: 12px 8px;
  }

  .countdown strong {
    font-size: 1.48rem;
  }

  .button {
    width: 100%;
  }

  .venue-card img {
    width: 100%;
    height: 280px;
    min-height: 0;
    max-height: none;
    filter: brightness(0.76) saturate(0.82);
  }

  .agenda-list {
    grid-template-columns: 1fr;
  }

  .agenda-card.accent {
    grid-column: auto;
  }

  .venue-card-copy {
    position: static;
    display: grid;
    justify-items: stretch;
    padding: 24px 20px 26px;
    border-top: 1px solid var(--line-green);
    background: #080c11;
  }

  .venue-card-copy h3 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.05;
  }

  .venue-card-copy p {
    color: rgba(244, 244, 244, 0.82);
  }

  .detail-grid article,
  .why-grid article,
  .agenda-card,
  .ticket-card,
  .vendor-card {
    padding: 28px 26px;
  }

  .testimonial-feature {
    grid-template-columns: 1fr;
  }

  .testimonial-video-frame {
    width: min(360px, 100%);
    margin: 0 auto;
  }

  .testimonial-quotes blockquote {
    padding: 17px 12px 17px 38px;
    font-size: 1rem;
  }

  .testimonial-cta {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .proof-actions,
  .testimonial-cta {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section::before,
  .reveal {
    transition: none !important;
  }

}
