:root {
  --ink: #10212b;
  --deep: #08202d;
  --night: #06151e;
  --teal: #00a99d;
  --mint: #65d6b8;
  --red: #cf2634;
  --gold: #d9ae63;
  --cloud: #f5f8f7;
  --line: rgba(16, 33, 43, 0.12);
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(6, 21, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cloud);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.2;
  z-index: 20;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 169, 157, 0.45), rgba(207, 38, 52, 0) 68%);
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 50px;
  left: 60%;
  z-index: 30;
  width:min(700px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgb(6 21 30 / 19%);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, box-shadow 240ms ease, top 240ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(6, 21, 30, 0.9);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

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

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.nav-cta,
.primary-action,
.secondary-action,
.icon-button {
  border: 0;
  cursor: pointer;
}

.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.primary-action {
 background: #61b58e;
    color: var(--white);
    box-shadow: 0 14px 32px rgb(121 197 144);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-cta:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.nav-cta svg,
.primary-action svg,
.secondary-action svg,
.insight-card svg,
.stack-card svg,
.check-list svg,
.event-meta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  padding: 50px max(24px, calc((100vw - 1180px) / 2)) 36px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade,
.hero-canvas {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/03_45_07_PM.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(143deg, rgb(213 213 213) 0%, rgba(6, 21, 30, 0.55) 48%, rgba(6, 21, 30, 0.24) 100%), linear-gradient(0deg, rgba(6, 21, 30, 0.82) 0%, rgba(6, 21, 30, 0) 44%);
}

.hero-canvas {
  z-index: 2;
  opacity: 0.72;
}

.hero-content,
.countdown-panel {
  position: relative;
  z-index: 3;
}

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

.eyebrow,
.section-kicker,
.panel-label {
      margin: 0 0 14px;
    color: var(--mint);
    font-size: 35px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;

}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(46px, 6.8vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(20px, 2.4vw, 30px);
}

.hero-subcopy {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--mint);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.hero-note,
.hero-description,
.hero-detail,
.hero-note,
.hero-description {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.hero-description {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-description {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.countdown-panel {
  align-self: end;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(6, 21, 30, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.countdown-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(101, 214, 184, 0), rgba(101, 214, 184, 0.16), rgba(217, 174, 99, 0));
  transform: translateX(-110%);
  animation: sheen 4.8s ease-in-out infinite;
}

.timer-orbit {
  position: absolute;
  right: -34px;
  top: -36px;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(101, 214, 184, 0.28);
  border-radius: 50%;
  color: rgba(101, 214, 184, 0.75);
  animation: orbitPulse 3s ease-in-out infinite;
}

.timer-orbit::before,
.timer-orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: rotateRing 10s linear infinite;
}

.timer-orbit::after {
  inset: 34px;
  border-color: rgba(217, 174, 99, 0.28);
  animation-duration: 7s;
  animation-direction: reverse;
}

.timer-orbit svg {
  width: 30px;
  height: 30px;
}

.countdown-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.countdown-top .panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(101, 214, 184, 0.8);
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(101, 214, 184, 0.5);
  border-radius: inherit;
  animation: livePulse 1.5s ease-out infinite;
}

.countdown-date {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.countdown-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.countdown-grid div {
  min-height: 82px;
  padding: 12px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 180ms ease, background 180ms ease;
}

.countdown-grid div:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(101, 214, 184, 0.18), rgba(255, 255, 255, 0.07));
}

.countdown-grid strong {
  display: block;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.countdown-grid strong.is-ticking {
  animation: digitPop 360ms ease;
}

.countdown-grid span,
.countdown-panel p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.countdown-panel p {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
}

.countdown-panel p svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.partner-strip-section {
  padding: 18px max(18px, calc((100vw - 1180px) / 2));
  background: var(--white);
  box-shadow: 0 8px 34px rgba(6, 21, 30, 0.08);
}

.partner-strip-section img {
  width: 100%;
 
}

.sponsor-role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.sponsor-role-grid div {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfa;
}

.sponsor-role-grid span,
.stack-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sponsor-role-grid strong {
  display: block;
  color: var(--deep);
  font-size: 17px;
  line-height: 1.2;
}

.section {
  padding: 94px max(24px, calc((100vw - 1180px) / 2));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: start;
}

h2 {
 margin: 0;
    color: var(--deep);
    font-size: 25px;
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--deep);
  font-size: 21px;
  line-height: 1.18;
}

p {
  margin: 0;
}

.lead {
  color: rgba(16, 33, 43, 0.72);
  font-size: clamp(18px, 2vw, 20px);
}

.stack-lead,
.cta-copy {
  max-width: 880px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 22px);
}

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

.lead-block {
  display: grid;
  gap: 18px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.question-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(16, 33, 43, 0.06);
}

.question-card svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
  margin-bottom: 22px;
}

.question-card p {
  color: rgba(16, 33, 43, 0.76);
  font-size: 17px;
  font-weight: 750;
}

.section-closing {
  max-width: 900px;
  margin-top: 34px;
  color: rgba(16, 33, 43, 0.72);
  font-size: clamp(18px, 2vw, 22px);
}

.compact-list {
  margin-top: 0;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.metric {
  min-height: 158px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(16, 33, 43, 0.06);
}

.metric strong {
  display: block;
  color: var(--red);
  font-size: 54px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 12px;
  color: rgba(16, 33, 43, 0.66);
}

.why-section {
  background: var(--white);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.insight-card,
.stack-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.insight-card::before,
.stack-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--teal), var(--gold));
}

.insight-card:hover,
.stack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 169, 157, 0.36);
  box-shadow: var(--shadow);
}

.insight-card svg,
.stack-card svg {
  width: 36px;
  height: 36px;
  color: var(--teal);
  margin-bottom: 26px;
}

.insight-card > span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-card p,
.stack-card p {
  margin-top: 14px;
  color: rgba(16, 33, 43, 0.68);
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
  background: #edf4f2;
}

.visual-copy {
  max-width: 540px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-list span {
  padding: 10px 13px;
  border-radius: 8px;
  background: var(--white);
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
}

.feature-image,
.stack-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img,
.stack-image img {
  width: 100%;
    object-fit: cover;
  transition: transform 700ms ease;
}

.feature-image:hover img,
.stack-image:hover img {
  transform: scale(1.04);
}

.stack-section {
  background: var(--night);
  color: var(--white);
}

.stack-section h2,
.stack-section h3 {
  color: var(--white);
}

.stack-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 38px;
}

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

.stack-card {
  min-height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.featured-card {
  grid-column: 1 / -1;
  min-height: 210px;
}

.stack-card p {
  color: rgba(255, 255, 255, 0.7);
}

.magnet-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
}

.magnet-column {
  min-height: 550px;
  padding: 42px;
  border-radius: 8px;
  background: #f5f8f7;
  border: 1px solid var(--line);
}

.accent-column {
  background: var(--deep);
  color: var(--white);
}

.accent-column h2 {
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  color: rgba(16, 33, 43, 0.72);
}

.accent-column .check-list li {
  color: rgba(255, 255, 255, 0.76);
}

.experience-note,
.limited-note {
  margin: 28px 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.check-list svg {
  color: var(--teal);
}

.timeline {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left:140px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: rgba(0, 169, 157, 0.24);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 70px;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 132px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--cloud);
  border-radius: 50%;
  background: var(--teal);
}

.timeline-item time {
  color: var(--red);
  font-weight: 900;
}

.timeline-item span {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(16, 33, 43, 0.05);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--deep);
  color: var(--white);
}

.cta-section h2 {
  max-width: 850px;
  color: var(--white);
}

.cta-section .lead {
  max-width: 820px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  background: var(--night);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 30, 0.72);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 46px);
}

.icon-button {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #eef4f2;
  color: var(--deep);
}

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

.registration-form label {
  display: grid;
  gap: 7px;
  color: rgba(16, 33, 43, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #f9fbfa;
  color: var(--deep);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.registration-form textarea {
  resize: vertical;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 169, 157, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  color: var(--teal);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes sheen {
  0%, 42% {
    transform: translateX(-110%);
  }
  64%, 100% {
    transform: translateX(110%);
  }
}

@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitPulse {
  0%, 100% {
    opacity: 0.64;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes livePulse {
  from {
    opacity: 0.85;
    transform: scale(0.72);
  }
  to {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes digitPop {
  0% {
    transform: translateY(5px) scale(0.94);
    opacity: 0.65;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .hero,
  .split,
  .visual-section,
  .stack-layout,
  .magnet-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .metric-row,
  .insight-grid,
  .question-grid,
  .stack-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .magnet-column {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    width: calc(100% - 20px);
    top: 10px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    padding: 112px 18px 34px;
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 50px);
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 19px;
  }

  .hero-subcopy {
    font-size: 16px;
  }

  .hero-detail {
    font-size: 14px;
  }

  .hero-note,
  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    min-height: 44px;
    padding: 0 10px;
    font-size: 14px;
  }

  .event-meta {
    gap: 8px;
    margin-top: 18px;
  }

  .event-meta span {
    padding: 8px 10px;
    font-size: 12px;
  }

  .countdown-panel {
    padding: 16px;
  }

  .timer-orbit {
    display: none;
  }

  .countdown-top {
    align-items: center;
    margin-bottom: 12px;
  }

  .countdown-date {
    font-size: 11px;
  }

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

  .countdown-grid div {
    min-height: 66px;
    padding: 9px 7px;
  }

  .countdown-grid strong {
    font-size: 22px;
  }

  .countdown-grid span,
  .countdown-panel p {
    font-size: 11px;
  }

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

  .section {
    padding: 66px 18px;
  }

  .metric-row,
  .insight-grid,
  .question-grid,
  .stack-cards,
  .registration-form {
    grid-template-columns: 1fr;
  }

  .insight-card,
  .stack-card {
    min-height: auto;
  }

  .magnet-column,
  .modal-panel {
    padding: 24px;
  }

  .timeline::before {
    left: 66px;
  }

  .timeline-item {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
  }

  .timeline-item::after {
    left: 60px;
  }

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