:root {
  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --color-bg: #130024;
  --color-bg-deep: #070116;
  --color-surface: rgba(255, 255, 255, 0.045);
  --color-surface-strong: rgba(7, 1, 22, 0.96);
  --color-border-soft: rgba(255, 255, 255, 0.16);
  --color-border-strong: rgba(255, 255, 255, 0.26);

  --color-text-main: #fdf7ff;
  --color-text-muted: #d4c7ff;
  --color-text-soft: #b2a2ff;

  --color-accent-pink: #ff4dcf;
  --color-accent-cyan: #4bd7ff;
  --color-accent-yellow: #ffd868;
  --color-accent-indigo: #7b2dff;

  --shadow-soft: 0 28px 80px rgba(3, 0, 28, 0.85);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --header-height: 76px;
  --container-width: 1120px;

  --transition-fast: 160ms ease-out;
  --transition-med: 260ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 77, 207, 0.42) 0, transparent 42%),
    radial-gradient(circle at 100% 0%, rgba(75, 215, 255, 0.35) 0, transparent 48%),
    linear-gradient(135deg, #31045d 0%, #130024 50%, #230541 100%);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(18px);
  background:
    linear-gradient(to bottom,
      rgba(10, 0, 32, 0.85),
      rgba(10, 0, 32, 0.70),
      transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo img {
  max-width: 800px;
  width: 40%;
  height: auto;
}

.logo-mark {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.logo-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.nav a {
  position: relative;
  padding: 4px 0;
  text-transform: none;
  letter-spacing: 0.03em;
  font-weight: 500;
  transition:
    color var(--transition-fast),
    opacity var(--transition-fast);
  opacity: 0.9;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--color-accent-cyan), var(--color-accent-pink));
  transition: width var(--transition-med);
}

.nav a:hover,
.nav a:focus-visible {
  color: #ffffff;
  opacity: 1;
  outline: none;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 18px;
}

.nav-cta {
  margin-left: 12px;
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 0 0,
      rgba(255, 77, 207, 0.26),
      rgba(4, 0, 20, 0.96));
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: #f9f5ff;
}

.nav-toggle-bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: background var(--transition-fast);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform var(--transition-med),
    top var(--transition-med),
    opacity var(--transition-med);
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

body.nav-open .nav-toggle-bars {
  background: transparent;
}

body.nav-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Buttons */
.btn,
a.btn {
  --btn-bg-from: var(--color-accent-yellow);
  --btn-bg-to: var(--color-accent-cyan);
  --btn-color: #120224;
  --btn-border: transparent;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--btn-border);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--btn-color);
  background: linear-gradient(120deg,
      var(--btn-bg-from),
      var(--btn-bg-to));
  box-shadow: 0 18px 40px rgba(6, 0, 35, 0.9);
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-med),
    filter var(--transition-fast),
    border-color var(--transition-fast);
}

.btn span.btn-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0,
      rgba(255, 255, 255, 0.35),
      transparent 55%);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.btn:hover span.btn-glow {
  opacity: 1;
}

.btn:hover,
a.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 26px 60px rgba(4, 0, 30, 0.95);
  color: var(--btn-color);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 14px 38px rgba(4, 0, 30, 0.85);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent-cyan);
  outline-offset: 3px;
}

.btn-sm,
a.btn-sm {
  padding: 9px 18px;
  font-size: 11px;
}

.btn-ghost {
  --btn-bg-from: transparent;
  --btn-bg-to: transparent;
  --btn-color: var(--color-text-main);
  --btn-border: rgba(255, 255, 255, 0.24);

  background:
    radial-gradient(circle at 0 0,
      rgba(255, 255, 255, 0.04),
      rgba(7, 1, 22, 0.94));
  box-shadow: none;
}

.btn-ghost:hover {
  box-shadow: 0 18px 45px rgba(2, 0, 25, 0.85);
  border-color: rgba(255, 255, 255, 0.32);
  filter: none;
}

/* Hero */
.hero {
  position: relative;
  padding: 34px 0 96px;
  color: var(--color-text-main);
  background-image:
    linear-gradient(90deg,
      rgba(18, 0, 50, 0.9) 0%,
      rgba(25, 0, 70, 0.95) 45%,
      rgba(25, 0, 70, 0.3) 65%),
    url("../img/54856693448_70f4b2f9d6_k.jpg");
  background-size: 100% 100%, cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px,
      rgba(255, 255, 255, 0.12) 0.8px,
      transparent 0);
  background-size: 32px 32px;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  padding-top: 32px;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: radial-gradient(circle at 0 0,
      rgba(255, 77, 207, 0.38),
      rgba(9, 0, 36, 0.92));
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-main);
  margin-bottom: 18px;
}

.hero-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%,
      #ffffff 0,
      #6ee7b7 45%,
      #15803d 100%);
  box-shadow: 0 0 0 5px rgba(45, 212, 191, 0.24);
}

.hero-meta-pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(9, 0, 36, 0.96);
  color: var(--color-text-muted);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.3vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 72ch;
  margin-bottom: 26px;
}

.hero-horizons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 1, 22, 0.9);
  color: var(--color-text-muted);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pill-tag {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: radial-gradient(circle at 0 0,
      rgba(255, 255, 255, 0.24),
      rgba(7, 1, 22, 0.98));
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.hero-microcopy {
  font-size: 12px;
  color: var(--color-text-soft);
  max-width: 46ch;
}

.hero-secondary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 26px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-soft);
}

/* The parent spans */
.hero-secondary-meta span.meta-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  /* Established stacking context */
  cursor: pointer;
  /* Indicates interactivity */
  transition: color 0.2s ease;
}

/* Hover effect on the main text when hovering */
.hero-secondary-meta span.meta-line:hover {
  color: #ffffff;
}

/* The dots (::before) styling from your request */
.hero-secondary-meta span.meta-line::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  /* Prevents dot from squishing */
}

.hero-secondary-meta span.meta-line:nth-child(1)::before {
  background: var(--color-accent-yellow);
  box-shadow: 0 0 0 3px rgba(255, 216, 104, 0.3);
}

.hero-secondary-meta span.meta-line:nth-child(2)::before {
  background: var(--color-accent-cyan);
  box-shadow: 0 0 0 3px rgba(75, 215, 255, 0.25);
  display: block;
}

/* Force second item to break to new line as per your CSS */
.hero-secondary-meta span.meta-line:nth-child(2) {
  width: 100%;
}

/* --- NEW ANIMATION CSS --- */

/* The hidden link container */
.hover-reveal {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  text-decoration: none;
  color: var(--color-text-soft);
  font-weight: 500;

  /* Initial State: Hidden
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);

  /* The Animation */
  /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
}


/* The SVG icon inside the link */
.hover-reveal svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

/* Trigger State: When parent (.meta-line) is hovered */
.hero-secondary-meta span.meta-line:hover .hover-reveal {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Link specific hover */
.hover-reveal:hover {
  text-decoration: underline;
  color: #ffffff;
  /* Darker blue */
}


/* Hero visual */
.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-card {
  position: relative;
  border-radius: 28px;
  padding: 22px 22px 20px;
  background:
    radial-gradient(circle at 0 0,
      rgba(255, 77, 207, 0.38),
      transparent 60%),
    radial-gradient(circle at 100% 100%,
      rgba(75, 215, 255, 0.35),
      transparent 60%),
    linear-gradient(140deg,
      rgba(7, 1, 22, 0.98),
      rgba(20, 1, 42, 0.98));
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hero-card-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-soft);
}

.hero-card-sub {
  font-size: 12px;
  color: var(--color-text-muted);
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(75, 215, 255, 0.7);
  background: rgba(7, 1, 22, 0.98);
  color: #e0faff;
}

.hero-card-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: conic-gradient(from 200deg,
      var(--color-accent-yellow),
      var(--color-accent-pink),
      var(--color-accent-cyan),
      var(--color-accent-yellow));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
  font-size: 12px;
}

.timeline-pill {
  border-radius: 18px;
  padding: 10px 11px;
  background: rgba(11, 2, 40, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-text-main);
}

.timeline-pill-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.timeline-pill-year {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 16px;
}

.timeline-pill-caption {
  font-size: 11px;
  color: var(--color-text-muted);
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  font-size: 11px;
  color: var(--color-text-muted);
  gap: 10px;
  flex-wrap: wrap;
}

.hero-card-footer strong {
  color: var(--color-text-main);
  font-weight: 500;
}

.hero-card-orbit {
  position: absolute;
  inset: -40%;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 50% 50%,
      rgba(14, 0, 52, 0.9) 0,
      rgba(14, 0, 52, 0.9) 32%,
      transparent 32.2%),
    radial-gradient(circle at 50% 50%,
      rgba(70, 17, 148, 0.3) 0,
      rgba(70, 17, 148, 0.3) 62%,
      transparent 62.2%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

.hero-card-orbit::before,
.hero-card-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.26);
}

.hero-card-orbit::before {
  transform: rotate(22deg) scale(1.02);
}

.hero-card-orbit::after {
  transform: rotate(-18deg) scale(0.86);
  border-color: rgba(75, 215, 255, 0.45);
}

.section-speakers {
  padding: 80px 0;
  background: radial-gradient(circle at top right, #f2feff, #e3f2ff);
}

.speakers-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.speaker-card {
  background: var(--color-surface);
  border-radius: 18px;
  padding: 18px 18px 18px;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 20px 50px rgba(4, 0, 30, 0.85);
  /* background: #fff;
      border-radius: 28px;
      padding: 28px 24px 32px;
      box-shadow: 0 18px 40px rgba(101, 124, 173, 0.15); */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.speaker-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 8px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    radial-gradient(circle at 0 0, rgba(255, 77, 207, 0.52), transparent 85%) border-box,
    linear-gradient(145deg, rgba(7, 1, 22, 0.98), rgba(20, 4, 58, 0.98)) border-box;
  background-origin: padding-box, border-box, border-box;
  background-clip: padding-box, border-box, border-box;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 43, 98, 0.2);
}

.speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-details h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #ffffff;
}

.speaker-role {
  margin: 4px 0 12px;
  font-family: var(--font-sans);
  color: var(--color-text-main);
}

.link-btn {
  border: 1.5px solid #fff;
  border-radius: 999px;
  padding: 8px 26px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.link-btn:hover {
  background: rgba(255, 77, 207, 0.52);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 77, 207, 0.35);
}

.btn-outline {
  border: 1.5px solid #fff;
  background: rgba(34, 80, 255, 0.06);
  color: #fff;
  padding: 12px 40px;
  border-radius: 999px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.speakers-footer {
  margin-top: 40px;
  text-align: center;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 24, 55, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
}

.modal-card {
  background: #fff;
  padding: 32px;
  border-radius: 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(6, 9, 46, 0.35);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #0a122b;
  cursor: pointer;
}

.modal-actions {
  margin-top: 24px;
}



/* Generic sections */
section {
  padding: 80px 0;
  position: relative;
}

.section-light::before,
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(to bottom,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 0 0,
      rgba(255, 77, 207, 0.12),
      transparent 55%);
}

.section-dark::before {
  background-image:
    linear-gradient(to bottom,
      rgba(7, 1, 22, 0.8),
      rgba(7, 1, 22, 0.95)),
    radial-gradient(circle at 100% 0,
      rgba(75, 215, 255, 0.18),
      transparent 55%);

  opacity: 0.9;
}

.section-light>.container,
.section-dark>.container {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-soft);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--color-text-main);
}

.section-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.section-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-text-soft);
}

/* Section 2 – Why this room */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  position: relative;
  border-radius: 20px;
  padding: 20px 20px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 18px 40px rgba(4, 0, 30, 0.75);
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0,
      rgba(75, 215, 255, 0.24),
      transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-main);
}

.why-card-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.why-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-soft);
}

/* Section 3 – Who is in the room */
.who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

.who-cards {
  display: grid;
  gap: 18px;
}

.who-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 18px 36px rgba(4, 0, 30, 0.7);
}

.who-card-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  color: var(--color-accent-cyan);
}

.who-card-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.who-intro-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.who-meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-soft);
}

.who-meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.who-meta-list span.bullet {
  margin-top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-accent-pink);
  flex-shrink: 0;
}

/* Section 4 – Radar */
.radar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

.radar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(7, 1, 22, 0.96);
  color: #e0faff;
  border: 1px solid rgba(75, 215, 255, 0.65);
  margin-bottom: 16px;
}

.radar-tag:hover {
  transform: scale(1.05);
}

.radar-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: conic-gradient(from 120deg,
      var(--color-accent-cyan),
      var(--color-accent-pink),
      var(--color-accent-yellow),
      var(--color-accent-cyan));
}

.radar-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-muted);
  display: grid;
  gap: 4px;
}

.radar-card {
  background: rgba(255, 255, 255, 0.899);
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-soft);
}

.radar-card-title {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-cyan);
  margin-bottom: 8px;
}

.radar-card-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-main);
}

.radar-list-title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-soft);
  margin: 4px 0 4px;
}

.radar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text-main);
}

.radar-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.radar-list span.bullet {
  margin-top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent-cyan);
  flex-shrink: 0;
}

.radar-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--color-text-soft);
}

/* Section 5 – Details & CTA */
.section-video {
  position: relative;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* filter: blur(10px);
  transform: scale(1.1); */
}

.section-video::before {
  content: "";
  position: absolute;
  inset: 0;
  /* optional gradient overlay for readability */
  background-image:
    linear-gradient(to bottom, rgba(7, 1, 22, 0.8), rgba(7, 1, 22, 0.95)),
    radial-gradient(circle at 100% 0, rgba(75, 215, 255, 0.18), transparent 55%);
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}

.section-video .container {
  position: relative;
  /* keeps content above video and overlay */
  z-index: 2;
  color: white;
  /* ensures text is readable on video */
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.details-card {
  background: linear-gradient(185deg,
      rgba(255, 255, 255, 0.12),
      rgba(10, 2, 34, 0.94));
  border-radius: 18px;
  padding: 22px 22px 20px;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 20px 50px rgba(4, 0, 30, 0.65);
  backdrop-filter: blur(12px);
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--color-text-main);
  display: grid;
  gap: 8px;
}

.details-list div {
  display: flex;
  gap: 10px;
}

.details-term {
  min-width: 135px;
  font-weight: 600;
  color: #ffffff;
}

.details-description {
  flex: 1;
  color: var(--color-text-muted);
}

.details-exclusivity {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-muted);
}

.cta-panel {
  background:
    radial-gradient(circle at 0 0,
      rgba(255, 255, 255, 0.25),
      transparent 55%),
    linear-gradient(145deg,
      rgba(7, 1, 22, 0.98),
      rgba(20, 4, 58, 0.98));
  border-radius: 18px;
  padding: 22px 22px 20px;
  border: 1px solid var(--color-border-strong);
  color: var(--color-text-main);
  box-shadow: var(--shadow-soft);
}

.cta-panel-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cta-panel-body {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.cta-panel-microcopy {
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-text-soft);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 20px 0 26px;
  background: radial-gradient(circle at 0 0,
      rgba(255, 77, 207, 0.24),
      rgba(7, 1, 22, 0.98));
  color: var(--color-text-soft);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background-image: url("../img/footer_logo.png");
  /* width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: #ffffff;
   */
}

.footer-brand-text {
  color: var(--color-text-soft);
}

.footer-brand-text strong {
  color: #ffffff;
  font-weight: 500;
}

.footer-meta {
  font-size: 12px;
  color: var(--color-text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 25px 60px rgba(3, 2, 30, 0.55);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(480px, 100% - 32px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0,
      rgba(75, 215, 255, 0.2),
      transparent 55%),
    linear-gradient(145deg,
      #070116,
      #190233);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.9);
  padding: 20px 20px 18px;
  color: var(--color-text-main);
  max-height: min(520px, 100% - 32px);
  overflow: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
}

.modal-subtitle {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.modal-close {
  border: none;
  background: rgba(7, 1, 22, 0.96);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-soft);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 0;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    border-color var(--transition-fast);
}

.modal-close:hover {
  background: rgba(9, 0, 34, 0.98);
  color: #ffffff;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.36);
}

.modal-close:focus-visible {
  outline: 2px solid var(--color-accent-cyan);
  outline-offset: 3px;
}

.modal-body {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.modal-form-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.field label {
  color: var(--color-text-main);
  font-weight: 500;
}

.field-helper {
  font-size: 11px;
  color: var(--color-text-soft);
}

.field input,
.field select,
.field textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 1, 22, 0.98);
  color: var(--color-text-main);
  padding: 8px 9px;
  font: inherit;
  font-size: 13px;
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.field textarea {
  min-height: 80px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-text-soft);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--color-accent-cyan);
  box-shadow: 0 0 0 1px rgba(75, 215, 255, 0.6);
  background: rgba(9, 0, 33, 1);
}

.field-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.modal-legal {
  font-size: 11px;
  color: var(--color-text-soft);
}

.modal-success {
  display: none;
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(22, 163, 74, 0.16);
  border: 1px solid rgba(22, 163, 74, 0.85);
  font-size: 12px;
  color: #bbf7d0;
}

.modal-success-icon {
  margin-right: 6px;
}

.modal-success.is-visible {
  display: flex;
  align-items: flex-start;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 500ms ease-out,
    transform 500ms ease-out;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 2560px) {
  .hero {
    padding-bottom: 72px;
    background-size: 100% 100%, var(--container-width) auto;
    background-position: center top;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr);
    gap: 36px;
    padding-top: 22px;
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero-visual {
    order: -1;
  }

  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .who-grid,
  .radar-grid,
  .details-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header-inner {
    gap: 12px;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(4, 0, 23, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav a {
    font-size: 13px;
  }

  .nav-cta {
    margin: 6px 0 0;
    width: 100%;
    justify-content: center;
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 60px;
  }

  .hero-card {
    border-radius: 22px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-horizons {
    gap: 8px;
  }

  .hero-secondary-meta {
    flex-direction: column;
  }

  .details-list div {
    flex-direction: column;
  }

  .details-term {
    min-width: 0;
  }

  .site-footer {
    padding: 18px 0 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}