/* ===== Xypher Dynamics — Cyberpunk theme ===== */
:root {
  /* Matched to wallpaper: electric blue + deep violet */
  --bg-deep: #06070d;
  --bg-panel: #0a0c16;
  --blue: #4da3ff;
  --blue-dim: rgba(77, 163, 255, 0.35);
  --blue-glow: rgba(59, 130, 246, 0.55);
  --violet: #9333ea;
  --violet-dim: rgba(147, 51, 234, 0.4);
  --violet-glow: rgba(168, 85, 247, 0.5);
  --cyan: var(--blue);
  --cyan-dim: var(--blue-dim);
  --magenta: var(--violet);
  --magenta-dim: var(--violet-dim);
  --purple: #7c3aed;
  --text: #e4e8f4;
  --text-muted: #7a849c;
  --font-display: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Atmospheric overlays */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

.highlight {
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-dim);
}

.neon-text {
  color: var(--blue);
  text-shadow:
    0 0 7px var(--blue),
    0 0 20px var(--blue-dim),
    0 0 40px var(--violet-dim);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5vw;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(6, 7, 13, 0.9) 0%, transparent 100%);
  transition: background 0.3s, backdrop-filter 0.3s;
}

.nav--minimal {
  gap: 1rem;
}

.nav.scrolled {
  background: rgba(6, 7, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blue-dim);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan-dim);
}

.nav-cta {
  color: var(--cyan) !important;
  border: 1px solid var(--cyan-dim);
  padding: 0.45rem 1rem !important;
}

.nav-cta:hover {
  background: var(--cyan-dim);
  box-shadow: 0 0 20px var(--cyan-dim);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #050508 center / cover no-repeat;
}

/* Desktop: assets/wallpaper.jpg · Mobile: assets/wallpaper-mobile.jpg (portrait crop) */
.hero-bg.has-wallpaper {
  background-image: url("../assets/wallpaper.jpg");
  background-position: center 30%;
}

@media (max-width: 768px) {
  .hero-bg.has-wallpaper {
    background-image: url("../assets/wallpaper-mobile.jpg");
    background-position: center 42%;
  }
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, var(--violet-dim) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 30%, var(--blue-dim) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(124, 58, 237, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, #0a0c16 0%, #06070d 50%, #080a12 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.5) 0%, transparent 22%, transparent 78%, rgba(5, 5, 8, 0.35) 100%),
    linear-gradient(
      180deg,
      rgba(5, 5, 8, 0.25) 0%,
      rgba(5, 5, 8, 0.45) 55%,
      var(--bg-deep) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 5vw 4rem;
  max-width: 900px;
}

/* Accelerate · Conquer · Execute — default centered (no wallpaper) */
.hero-ace {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ace-word {
  animation: ace-neon 3s ease-in-out infinite;
}

.ace-word--1 {
  color: var(--blue);
  text-shadow: 0 0 12px var(--blue), 0 0 28px var(--blue-dim);
  animation-delay: 0s;
}

.ace-word--2 {
  color: #b794f6;
  text-shadow: 0 0 12px var(--violet), 0 0 28px var(--violet-dim);
  animation-delay: -1s;
}

.ace-word--3 {
  color: var(--violet);
  text-shadow: 0 0 12px var(--violet), 0 0 28px var(--violet-dim);
  animation-delay: -2s;
}

.ace-sep {
  color: var(--text-muted);
  opacity: 0.6;
  letter-spacing: 0;
}

@keyframes ace-neon {
  0%, 100% {
    opacity: 0.9;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.4);
  }
}

/* On wallpaper: horizontal strip between Dynamics title and tagline */
.hero--wallpaper .hero-ace {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.5rem;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.55rem;
  flex-shrink: 0;
}

.hero--wallpaper .hero-ace .ace-sep {
  display: inline;
  opacity: 0.7;
}

.hero--wallpaper .hero-ace .ace-word {
  display: inline;
  font-size: clamp(0.68rem, 1.8vw, 0.88rem);
  letter-spacing: 0.26em;
  text-shadow:
    0 0 8px currentColor,
    0 0 18px currentColor,
    0 0 32px var(--blue-glow),
    0 0 40px var(--violet-dim),
    0 2px 8px rgba(0, 0, 0, 0.85);
  animation: ace-wall-glow 2.8s ease-in-out infinite;
}

.hero--wallpaper .hero-ace .ace-word--1 {
  color: #7dd3fc;
  text-shadow:
    0 0 10px #38bdf8,
    0 0 22px var(--blue),
    0 0 38px var(--blue-glow),
    0 2px 6px rgba(0, 0, 0, 0.9);
}

.hero--wallpaper .hero-ace .ace-word--2 {
  color: #d8b4fe;
  text-shadow:
    0 0 10px var(--violet),
    0 0 22px #a855f7,
    0 0 36px var(--violet-glow),
    0 2px 6px rgba(0, 0, 0, 0.9);
  animation-delay: -0.9s;
}

.hero--wallpaper .hero-ace .ace-word--3 {
  color: #c4b5fd;
  text-shadow:
    0 0 10px #9333ea,
    0 0 22px var(--violet),
    0 0 36px var(--violet-glow),
    0 2px 6px rgba(0, 0, 0, 0.9);
  animation-delay: -1.8s;
}

@keyframes ace-wall-glow {
  0%, 100% {
    opacity: 0.88;
    filter: brightness(1) drop-shadow(0 0 6px rgba(77, 163, 255, 0.4));
  }
  50% {
    opacity: 1;
    filter: brightness(1.45) drop-shadow(0 0 14px rgba(168, 85, 247, 0.55));
  }
}

.hero-title {
  margin-bottom: 0.5rem;
}

.hero-brand {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
}

.hero-line-1 {
  display: block;
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #e8f4ff 0%, var(--cyan) 45%, #6d28d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(77, 163, 255, 0.55))
    drop-shadow(0 0 40px rgba(109, 40, 217, 0.35));
}

.hero-line-2 {
  display: block;
  font-size: clamp(1.25rem, 4vw, 2rem);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: #c4b5fd;
  text-shadow: 0 0 24px rgba(139, 92, 246, 0.5);
}

/* Hero layout: ACE above wallpaper company name, CTA at bottom */
.hero-logo-space {
  display: none;
}

.hero-bottom {
  width: 100%;
  margin-top: auto;
}

.hero--wallpaper .hero-brand,
.hero--wallpaper .hero-domain,
.hero--wallpaper .hero-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero--wallpaper .hero-logo-space {
  display: block;
  flex-shrink: 0;
  width: 100%;
  /* Space for wallpaper “Xypher Dynamics” */
  min-height: clamp(155px, 23vh, 230px);
}

.hero--wallpaper .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 0.25rem);
  padding-bottom: 5rem;
  text-align: center;
  width: 100%;
  max-width: none;
}

.hero--wallpaper .hero-bottom {
  margin-top: auto;
  padding-top: 0.5rem;
}

.hero--wallpaper .hero-desc,
.hero--wallpaper .hero-actions {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

/* No wallpaper: show HTML brand below ACE */
.hero:not(.hero--wallpaper) .hero-brand {
  display: block;
}

.hero:not(.hero--wallpaper) .hero-logo-space {
  display: none;
}

.hero--wallpaper .hero-overlay {
  /* Light overlay on right so wall, graffiti & figure stay visible */
  background:
    linear-gradient(90deg, rgba(6, 7, 13, 0.4) 0%, transparent 35%, transparent 72%, rgba(6, 7, 13, 0.12) 100%),
    linear-gradient(180deg, transparent 0%, transparent 40%, rgba(6, 7, 13, 0.5) 70%, var(--bg-deep) 100%);
}

.neon-flicker {
  animation: neon-flicker 3s ease-in-out infinite;
}

@keyframes neon-flicker {
  0%, 19%, 21%, 63%, 65%, 100% {
    opacity: 1;
    text-shadow:
      0 0 10px var(--cyan),
      0 0 30px var(--cyan-dim),
      0 0 60px var(--magenta-dim);
  }
  20%, 64% {
    opacity: 0.85;
    text-shadow: 0 0 5px var(--cyan-dim);
  }
}

.hero-domain {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
}

.hero-desc strong {
  color: var(--cyan);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.2s, background 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.15), rgba(147, 51, 234, 0.15));
  color: var(--blue);
  border: 1px solid var(--blue);
  box-shadow: 0 0 18px var(--blue-dim);
}

.btn-primary:hover:not(:disabled) {
  box-shadow: 0 0 32px var(--blue-glow), 0 0 12px var(--violet-dim);
  transform: translateY(-2px);
}

.btn-primary--violet {
  color: #c4b5fd;
  border-color: var(--violet);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.22), rgba(124, 58, 237, 0.1));
  box-shadow: 0 0 22px var(--violet-dim);
}

.btn-primary--violet:hover:not(:disabled) {
  color: #e9d5ff;
  border-color: #a855f7;
  box-shadow: 0 0 36px var(--violet-glow), 0 0 14px var(--violet-dim);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(122, 132, 156, 0.5);
}

.btn-outline:hover {
  border-color: var(--violet);
  color: #c4b5fd;
  box-shadow: 0 0 20px var(--violet-dim);
}

.btn-disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== Sections ===== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-dim), var(--magenta-dim), transparent);
  z-index: 2;
  pointer-events: none;
}

.section--wallpaper {
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg-deep) center / cover no-repeat;
}

.section-esports .section-bg.has-wallpaper {
  background-image: url("../assets/wallpaper-esports.png");
  background-position: center 40%;
}

.section-event .section-bg.has-wallpaper {
  background-image: url("../assets/wallpaper-event.png");
  background-position: center 35%;
}

.section-overlay--event {
  background: linear-gradient(
    180deg,
    rgba(6, 7, 13, 0.9) 0%,
    rgba(6, 7, 13, 0.78) 40%,
    rgba(10, 12, 22, 0.92) 100%
  );
}

.section-impact .section-bg.has-wallpaper {
  background-image: url("../assets/wallpaper-impact.png");
  background-position: center 30%;
}

.section-overlay--impact {
  background: linear-gradient(
    180deg,
    rgba(6, 7, 13, 0.88) 0%,
    rgba(6, 7, 13, 0.8) 50%,
    rgba(10, 12, 22, 0.91) 100%
  );
}

.footer--wallpaper .section-bg.has-wallpaper {
  background-image: url("../assets/wallpaper-footer.png");
  background-position: center 45%;
}

.section-overlay--footer {
  background: linear-gradient(
    180deg,
    rgba(3, 3, 6, 0.92) 0%,
    rgba(6, 7, 13, 0.85) 50%,
    rgba(3, 3, 6, 0.94) 100%
  );
}

.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6, 7, 13, 0.88) 0%,
    rgba(6, 7, 13, 0.82) 45%,
    rgba(10, 12, 22, 0.9) 100%
  );
}

.section-inner {
  position: relative;
  z-index: 3;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Esports section */
.section-esports {
  background: var(--bg-deep);
}

.section-esports .card {
  background: rgba(6, 7, 13, 0.88);
  backdrop-filter: blur(6px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.card {
  background: rgba(10, 12, 22, 0.85);
  border: 1px solid rgba(77, 163, 255, 0.15);
  padding: 1.5rem;
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  border-color: var(--cyan-dim);
  box-shadow: 0 0 30px var(--cyan-dim);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.pipeline {
  border: 1px solid var(--violet-dim);
  padding: 2rem;
  margin-bottom: 3.5rem;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.08), rgba(77, 163, 255, 0.04));
}

.pipeline-title {
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--magenta);
  letter-spacing: 0.1em;
}

.pipeline-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}

.pipeline-step {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 1.25rem;
  background: var(--bg-deep);
  border-left: 3px solid var(--cyan);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
}

.pipeline-step strong {
  display: block;
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.pipeline-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pipeline-arrow {
  align-self: center;
  font-size: 1.5rem;
  color: var(--magenta);
  text-shadow: 0 0 15px var(--magenta);
}

/* Impact / sponsors */
.section-impact {
  background: var(--bg-deep);
}

.section-impact .stat-card,
.section-impact .pipeline,
.section-impact .benefits-header,
.section-impact .benefit-card,
.section-impact .cta-banner {
  background: rgba(6, 7, 13, 0.88);
  backdrop-filter: blur(6px);
}

.section-impact .pipeline-step {
  background: rgba(10, 12, 22, 0.92);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.stat-card {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--bg-panel);
  border: 1px solid var(--violet-dim);
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 25px var(--cyan-dim);
  line-height: 1.1;
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.25rem;
  opacity: 0.4;
}

.sponsor-benefits {
  margin-bottom: 3rem;
}

.benefits-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem 1.5rem;
  border: 1px solid var(--violet-dim);
  background: linear-gradient(
    135deg,
    rgba(77, 163, 255, 0.08) 0%,
    rgba(147, 51, 234, 0.12) 50%,
    rgba(6, 7, 13, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
}

.benefits-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--violet), transparent);
}

.benefits-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--blue), #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.benefits-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
}

.benefit-card {
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(160deg, rgba(10, 12, 22, 0.95), rgba(6, 7, 13, 0.98));
  border: 1px solid rgba(77, 163, 255, 0.2);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  opacity: 0.6;
}

.benefit-card:hover {
  border-color: var(--violet);
  box-shadow: 0 0 28px rgba(147, 51, 234, 0.2), 0 0 12px var(--blue-dim);
  transform: translateY(-3px);
}

.benefit-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.15), rgba(147, 51, 234, 0.15));
  border: 1px solid var(--blue-dim);
  box-shadow: 0 0 16px var(--blue-dim);
}

.benefit-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cta-banner {
  text-align: center;
  padding: 2.5rem;
  border: 1px dashed var(--cyan-dim);
  background: rgba(77, 163, 255, 0.04);
}

.cta-banner p {
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

/* Event section */
.section-event {
  background: var(--bg-deep);
}

.section-event .event-card,
.section-event .how-it-works,
.section-event .event-flow,
.section-event .schedule-block,
.section-event .event-flow-step {
  background: rgba(6, 7, 13, 0.88);
  backdrop-filter: blur(6px);
}

.section-event .event-flow {
  position: relative;
  z-index: 3;
}

.event-card {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 2.5rem;
  background: var(--bg-deep);
  border: 1px solid var(--cyan-dim);
  box-shadow: 0 0 40px rgba(77, 163, 255, 0.1);
}

.event-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid var(--violet);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 12px var(--magenta);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.event-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.event-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.event-meta {
  list-style: none;
  margin-bottom: 2rem;
}

.event-meta li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.event-meta strong {
  color: var(--text);
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Event flow (replaces roadmap) */
.event-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  max-width: 960px;
  margin: 0 auto 3rem;
  padding: 1.5rem;
  border: 1px solid var(--cyan-dim);
  background: rgba(6, 8, 16, 0.85);
}

.event-flow-step {
  flex: 1 1 160px;
  min-width: 140px;
  text-align: center;
  padding: 1rem 0.75rem;
  border: 1px solid rgba(77, 163, 255, 0.2);
  background: rgba(10, 12, 22, 0.9);
}

.event-flow-step--active {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(77, 163, 255, 0.25);
}

.event-flow-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.event-flow-step strong {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 2.5vw, 0.95rem);
  letter-spacing: 0.06em;
  color: var(--cyan);
  line-height: 1.35;
}

.event-flow-arrow {
  color: var(--violet);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.event-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.schedule-block {
  padding: 1.75rem;
  border: 1px solid rgba(77, 163, 255, 0.22);
  background: rgba(8, 10, 18, 0.92);
}

.schedule-block--main {
  text-align: center;
  border-color: rgba(147, 51, 234, 0.35);
}

.schedule-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.schedule-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.schedule-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.schedule-select-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.schedule-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--cyan-dim);
  border-radius: 0;
  cursor: pointer;
}

.schedule-select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(77, 163, 255, 0.25);
}

.qualifier-date-display {
  min-height: 2.5rem;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  border-left: 3px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.qualifier-date-display.has-date {
  color: var(--cyan);
  border-left-color: var(--cyan);
  font-weight: 600;
}

.main-event-date {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.5rem 0;
  color: #fff;
  text-shadow:
    0 0 12px rgba(77, 163, 255, 0.9),
    0 0 28px rgba(147, 51, 234, 0.75),
    0 0 48px rgba(77, 163, 255, 0.45);
  animation: main-event-glow 2.5s ease-in-out infinite alternate;
}

.main-event-venue {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

@keyframes main-event-glow {
  from {
    text-shadow:
      0 0 10px rgba(77, 163, 255, 0.7),
      0 0 22px rgba(147, 51, 234, 0.55);
  }
  to {
    text-shadow:
      0 0 18px rgba(77, 163, 255, 1),
      0 0 36px rgba(147, 51, 234, 0.9),
      0 0 56px rgba(56, 189, 248, 0.5);
  }
}

.timeline h3 {
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.timeline-list {
  list-style: none;
  max-width: 480px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
  opacity: 0.6;
}

.timeline-item.active {
  opacity: 1;
}

.timeline-item.active .timeline-dot {
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 14px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan-dim), transparent);
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline-item strong {
  color: var(--cyan);
  display: block;
  margin-bottom: 0.25rem;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  position: relative;
  z-index: 10;
  padding: 4rem 0 0;
  background: #030306;
  border-top: 1px solid var(--cyan-dim);
  overflow: hidden;
}

.footer-inner {
  position: relative;
  z-index: 3;
}

.footer--wallpaper {
  background: #030306;
}

.team-spotlight {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(77, 163, 255, 0.12);
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.team-card {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  flex: 0 1 auto;
}

.team-card--left {
  justify-content: flex-start;
}

.team-card--right {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.team-card--right .team-info {
  text-align: right;
}

.team-photo-wrap {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 16px var(--blue-dim);
}

.team-photo {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
}

.team-info {
  text-align: left;
  flex: 0 1 auto;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 0.25rem;
  color: #e8f4ff;
  text-shadow:
    0 0 8px var(--blue),
    0 0 18px var(--blue-glow),
    0 0 28px var(--violet-dim);
  filter: drop-shadow(0 0 6px rgba(77, 163, 255, 0.5));
}

.team-role {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violet);
  text-shadow: 0 0 12px var(--violet-dim);
  margin-bottom: 0.5rem;
}

.team-insta,
.footer-links a[href*="instagram.com"] {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.team-insta {
  display: inline-block;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s, text-shadow 0.2s;
}

.team-insta:hover {
  color: #c4b5fd;
  text-shadow: 0 0 16px var(--violet-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--magenta);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-note code {
  color: var(--cyan);
  font-size: 0.85em;
}

.footer-links h3,
.footer-cta h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a,
.connect-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.footer-links a:hover,
.connect-link:hover {
  color: var(--blue);
}

.footer-links a:hover .cyber-icon,
.connect-link:hover .cyber-icon {
  color: #c4b5fd;
  filter: drop-shadow(0 0 8px var(--violet-glow)) drop-shadow(0 0 4px var(--blue-glow));
}

/* Cyberpunk connect icons */
.cyber-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.12), rgba(147, 51, 234, 0.12));
  border: 1px solid rgba(77, 163, 255, 0.35);
  box-shadow: 0 0 12px rgba(77, 163, 255, 0.15), inset 0 0 8px rgba(147, 51, 234, 0.08);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.connect-link:hover .cyber-icon-wrap {
  border-color: var(--violet);
  box-shadow: 0 0 18px var(--blue-dim), 0 0 10px var(--violet-dim);
  transform: scale(1.05);
}

.cyber-icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
  filter: drop-shadow(0 0 4px var(--blue-glow));
  transition: color 0.25s, filter 0.25s;
}

.connect-label {
  word-break: break-word;
}

.footer-cta p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-bottom {
  padding: 1.25rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (min-width: 600px) {
  .team-row {
    flex-wrap: nowrap;
  }
}

/* ===== Responsive — Tablet ===== */
@media (max-width: 1024px) {
  .nav {
    padding: 0 max(1rem, env(safe-area-inset-right)) 0 max(1rem, env(safe-area-inset-left));
  }

  .nav-links {
    gap: 1.25rem;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

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

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

  .pipeline-step {
    flex: 1 1 200px;
  }

  .hero--wallpaper .hero-logo-space {
    min-height: clamp(120px, 20vh, 180px);
  }
}

/* ===== Responsive — Mobile ===== */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav {
    justify-content: flex-end;
    padding: 0 1rem;
  }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(6, 7, 13, 0.98);
    backdrop-filter: blur(16px);
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0.25rem;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    border-bottom: 1px solid var(--cyan-dim);
    z-index: 1001;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: 0.85rem 0.5rem;
    font-size: 0.9rem;
    min-height: 44px;
  }

  .nav-cta {
    text-align: center;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-content {
    padding: calc(var(--nav-h) + 1rem) 1rem 4.5rem;
    width: 100%;
  }

  .hero--wallpaper .hero-content {
    padding-top: calc(var(--nav-h) + 0.75rem);
    padding-bottom: 4rem;
  }

  .hero--wallpaper .hero-logo-space {
    min-height: clamp(140px, 22vh, 200px);
  }

  .hero--wallpaper .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 7, 13, 0.5) 0%, rgba(6, 7, 13, 0.15) 28%, rgba(6, 7, 13, 0.5) 58%, var(--bg-deep) 100%);
  }

  .hero--wallpaper .hero-ace {
    letter-spacing: 0.12em;
    padding: 0.5rem 0.25rem;
  }

  .hero--wallpaper .hero-ace .ace-word {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .hero-desc {
    font-size: 1rem;
    padding: 0 0.25rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .scroll-hint {
    bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-lead {
    font-size: 1.05rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    margin-bottom: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1.25rem 0.75rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .pipeline {
    padding: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .pipeline-arrow {
    display: none;
  }

  .pipeline-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .pipeline-step {
    flex: none;
    max-width: none;
    width: 100%;
  }

  .benefits-header {
    padding: 1.5rem 1rem;
  }

  .cta-banner {
    padding: 1.5rem 1rem;
  }

  .cta-banner .btn {
    width: 100%;
    max-width: 280px;
  }

  .event-card {
    padding: 1.5rem 1.25rem;
    margin-bottom: 2rem;
  }

  .event-name {
    font-size: 1.15rem;
  }

  .event-actions {
    flex-direction: column;
  }

  .event-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .footer {
    padding-top: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-links a {
    justify-content: center;
    word-break: break-word;
  }

  .footer-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .team-spotlight {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .team-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .team-card,
  .team-card--left,
  .team-card--right {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
    flex-direction: row;
    max-width: 100%;
  }

  .team-card--right .team-info {
    text-align: left;
  }
}

/* ===== Responsive — Small phones ===== */
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding-left: max(0.875rem, env(safe-area-inset-left));
    padding-right: max(0.875rem, env(safe-area-inset-right));
  }

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

  .hero--wallpaper .hero-logo-space {
    min-height: clamp(115px, 18vh, 150px);
  }

  .hero--wallpaper .hero-ace .ace-word {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  .hero--wallpaper .hero-ace .ace-sep {
    margin: 0 0.1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .nav-links a {
    letter-spacing: 0.03em;
  }
}

/* ===== Homepage enhancements ===== */
.hero-follow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.hero-follow-label {
  color: var(--text-muted);
  margin-right: 0.25rem;
}

.hero-follow-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.hero-follow-link:hover {
  color: #c4b5fd;
  text-shadow: 0 0 12px var(--violet-dim);
}

.hero-follow-sep {
  color: var(--text-muted);
  opacity: 0.6;
}

.nav-links .nav-register {
  color: var(--blue);
  border: 1px solid var(--blue-dim);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}

.nav-links .nav-register:hover {
  box-shadow: 0 0 16px var(--blue-dim);
  color: #c4b5fd;
}

.card-icon .cyber-icon--career {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--blue);
}

.how-it-works {
  border: 1px solid var(--violet-dim);
  padding: 2rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.08), rgba(77, 163, 255, 0.04));
}

.how-it-works-title {
  font-family: var(--font-display);
  text-align: center;
  color: var(--magenta);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.how-it-works-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.how-it-works-steps li {
  padding: 1rem;
  background: rgba(6, 7, 13, 0.75);
  border-left: 3px solid var(--cyan);
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.15em;
}

.how-it-works-steps strong {
  display: block;
  margin: 0.4rem 0;
  font-size: 1.05rem;
}

.how-it-works-steps p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-event .how-it-works {
  margin-bottom: 2rem;
}

.event-status--closed .status-text {
  color: #f87171;
}

.event-status--closed .status-pulse {
  background: #f87171;
  box-shadow: 0 0 12px rgba(248, 113, 113, 0.5);
}

.event-college-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--violet);
  color: var(--text-muted);
  font-size: 0.98rem;
  background: rgba(147, 51, 234, 0.08);
}

.stat-label--hint {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.15rem;
  opacity: 0.75;
}

.social-proof {
  margin: 3rem 0;
  padding: 2rem;
  border: 1px solid rgba(77, 163, 255, 0.2);
  background: rgba(6, 7, 13, 0.6);
}

.social-proof-title {
  font-family: var(--font-display);
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.social-proof-lead {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-proof-card {
  padding: 1.25rem;
  background: var(--bg-deep);
  border: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
}

.social-proof-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cyan);
  line-height: 1.2;
}

.social-proof-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.social-proof-card--quote {
  text-align: left;
  grid-column: 1 / -1;
}

.social-proof-card--quote blockquote {
  color: var(--text);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.social-proof-card--quote cite {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: normal;
}

.social-proof-cta a {
  color: var(--blue);
  font-weight: 600;
}

.partner-strip {
  margin-bottom: 2.5rem;
  text-align: center;
}

.partner-strip-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.partner-logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.partner-logo {
  min-width: 140px;
  padding: 1rem 1.25rem;
  border: 1px dashed var(--violet-dim);
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.faq-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.faq-title {
  font-family: var(--font-display);
  color: var(--magenta);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.2);
  margin-bottom: 0.5rem;
  background: rgba(10, 12, 22, 0.85);
  border-radius: 4px;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-family: var(--font-display);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.faq-item a {
  color: var(--blue);
}

.footer-follow {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.footer-follow a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.footer-follow a:hover {
  color: #c4b5fd;
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .social-proof-card--quote {
    grid-column: auto;
  }
}

/* Touch devices: skip hover lift */
@media (hover: none) {
  .card:hover,
  .benefit-card:hover {
    transform: none;
  }
}
