/* FutureVision Retro Pocket — promo landing */

:root {
  --bg: #07090d;
  --bg-elevated: #0d1118;
  --panel: #12161f;
  --panel-glass: rgba(18, 22, 31, 0.82);
  --border: #2a3548;
  --border-glow: rgba(126, 223, 192, 0.22);
  --mint: #7edfc0;
  --mint-dim: #4a9d7a;
  --phosphor: #5dffb0;
  --phosphor-dim: #2a9d6a;
  --accent: #6eb5ff;
  --purple: #6b4f9e;
  --purple-glow: rgba(107, 79, 158, 0.35);
  --gold: #c9a84c;
  --text: #d8e2f0;
  --muted: #7a8799;
  --max: 1180px;
  --nav-h: 4.25rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.4) 2px,
    rgba(0, 0, 0, 0.4) 4px
  );
}

a { color: var(--accent); }
a:hover { color: var(--mint); }

img { max-width: 100%; height: auto; display: block; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: var(--panel-glass);
  backdrop-filter: blur(14px);
}

.site-nav__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-nav__logo { flex-shrink: 0; }
.site-nav__logo img { height: 2.35rem; width: auto; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-nav__links a:hover { color: var(--mint); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  border: 1px solid var(--mint-dim);
  background: rgba(126, 223, 192, 0.08);
  color: var(--mint) !important;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(93, 255, 176, 0.12);
}

.nav-cta:hover {
  background: rgba(126, 223, 192, 0.16);
  color: var(--phosphor) !important;
}

@media (max-width: 768px) {
  .site-nav__links a:not(.nav-cta) { display: none; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 1rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 9, 13, 0.94) 0%, rgba(7, 9, 13, 0.72) 42%, rgba(7, 9, 13, 0.35) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 35%),
    radial-gradient(ellipse 80% 60% at 70% 50%, var(--purple-glow), transparent 70%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 20%, transparent 90%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__copy h1 em {
  font-style: normal;
  color: var(--phosphor);
  text-shadow: 0 0 40px rgba(93, 255, 176, 0.35);
}

.hero__tagline {
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.hero__lede {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(135deg, var(--phosphor-dim), var(--mint-dim));
  color: var(--bg);
  border-color: var(--phosphor);
  box-shadow: 0 0 28px rgba(93, 255, 176, 0.35);
}

.btn--primary:hover {
  color: var(--bg);
  box-shadow: 0 0 40px rgba(93, 255, 176, 0.5);
}

.btn--ghost {
  background: rgba(18, 22, 31, 0.6);
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  color: var(--mint);
  border-color: var(--mint-dim);
}

.hero__fine {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

.hero__device { position: relative; }

.hero__device-frame {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(126, 223, 192, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.65),
    0 0 60px var(--purple-glow);
}

.hero__device-frame img { width: 100%; }

.hero__device-glow {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(circle, var(--purple-glow), transparent 65%);
  filter: blur(40px);
}

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__device { order: -1; max-width: 520px; margin: 0 auto; }
}

.section { padding: 5rem 1rem; position: relative; }
.section--alt { background: linear-gradient(180deg, var(--bg-elevated), var(--bg)); }
.section__inner { width: min(100%, var(--max)); margin: 0 auto; }

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__lede {
  margin: 0 0 2.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.halls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hall-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.hall-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
}

.hall-card--active::before {
  background: linear-gradient(90deg, var(--mint), var(--phosphor));
}

.hall-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 32px rgba(126, 223, 192, 0.08);
}

.hall-card--soon { opacity: 0.88; }

.hall-card__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 6px;
  background: rgba(126, 223, 192, 0.1);
  border: 1px solid var(--mint-dim);
  font-size: 1.35rem;
}

.hall-card h3 { margin: 0 0 0.35rem; font-size: 1.15rem; }

.hall-card__perm {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--phosphor);
  font-family: ui-monospace, monospace;
}

.hall-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.hall-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  border: 1px solid var(--mint-dim);
  color: var(--mint);
}

.hall-card__badge--soon {
  border-color: var(--border);
  color: var(--muted);
}

@media (max-width: 800px) {
  .halls-grid { grid-template-columns: 1fr; }
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.feature-split--reverse .feature-split__visual { order: 2; }
.feature-split--reverse .feature-split__copy { order: 1; }

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.5rem;
  border-bottom: 1px solid rgba(42, 53, 72, 0.6);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--phosphor);
}

.viz-demo {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  border-radius: 6px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(93, 255, 176, 0.15), transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(93, 255, 176, 0.04) 3px,
      rgba(93, 255, 176, 0.04) 4px
    ),
    var(--panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.viz-demo__wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 80px;
}

.viz-demo__bar {
  width: 6px;
  background: linear-gradient(180deg, var(--phosphor), var(--mint-dim));
  border-radius: 2px 2px 0 0;
  animation: viz-bounce 1.2s ease-in-out infinite;
}

.viz-demo__bar:nth-child(1) { animation-delay: 0s; height: 40%; }
.viz-demo__bar:nth-child(2) { animation-delay: 0.1s; height: 70%; }
.viz-demo__bar:nth-child(3) { animation-delay: 0.2s; height: 55%; }
.viz-demo__bar:nth-child(4) { animation-delay: 0.15s; height: 90%; }
.viz-demo__bar:nth-child(5) { animation-delay: 0.25s; height: 45%; }
.viz-demo__bar:nth-child(6) { animation-delay: 0.05s; height: 65%; }
.viz-demo__bar:nth-child(7) { animation-delay: 0.3s; height: 50%; }
.viz-demo__bar:nth-child(8) { animation-delay: 0.12s; height: 80%; }

@keyframes viz-bounce {
  0%, 100% { transform: scaleY(0.6); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

.viz-demo__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 800px) {
  .feature-split,
  .feature-split--reverse { grid-template-columns: 1fr; }
  .feature-split--reverse .feature-split__visual,
  .feature-split--reverse .feature-split__copy { order: unset; }
}

.claim-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.25rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: clamp(0.72rem, 2vw, 0.9rem);
}

.claim-flow__step {
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
}

.claim-flow__step--highlight {
  border-color: var(--phosphor-dim);
  color: var(--phosphor);
  box-shadow: 0 0 20px rgba(93, 255, 176, 0.12);
}

.claim-flow__arrow { color: var(--muted); padding: 0 0.15rem; }

.claim-flow__branch {
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.claim-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.claim-point {
  padding: 1.25rem;
  border-left: 3px solid var(--mint-dim);
  background: rgba(18, 22, 31, 0.5);
}

.claim-point h4 { margin: 0 0 0.35rem; font-size: 0.95rem; }
.claim-point p { margin: 0; font-size: 0.85rem; color: var(--muted); }

.hw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.hw-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(107, 79, 158, 0.12), var(--panel));
  position: relative;
}

.hw-card--default::after {
  content: "Founders default";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.hw-card h3 { margin: 0 0 0.25rem; font-size: 1.35rem; }

.hw-card__sku {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: ui-monospace, monospace;
}

.hw-specs { margin: 0; padding: 0; list-style: none; }

.hw-specs li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(42, 53, 72, 0.5);
  font-size: 0.88rem;
}

.hw-specs li span:first-child { color: var(--muted); }
.hw-specs li span:last-child { color: var(--text); font-weight: 600; }

.hw-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px dashed var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hw-note strong { color: var(--mint); }

@media (max-width: 700px) {
  .hw-grid { grid-template-columns: 1fr; }
}

.creator-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(110, 181, 255, 0.08), transparent 50%),
    var(--panel);
}

.creator-panel blockquote {
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text);
  border: none;
  padding: 0;
}

.creator-panel blockquote em {
  color: var(--accent);
  font-style: normal;
}

.creator-perks { margin: 0; padding: 0; list-style: none; }

.creator-perks li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.creator-perks li:last-child { border-bottom: none; }

@media (max-width: 800px) {
  .creator-panel { grid-template-columns: 1fr; }
}

.trust-block {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.trust-block p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.trust-block strong { color: var(--phosphor); }

.cta-band {
  text-align: center;
  padding: 4rem 1.5rem;
  background:
    linear-gradient(180deg, transparent, rgba(93, 255, 176, 0.04)),
    radial-gradient(ellipse at 50% 100%, var(--purple-glow), transparent 70%);
  border-top: 1px solid var(--border);
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p { margin: 0 0 1.5rem; color: var(--muted); }

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.site-foot {
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.site-foot__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.site-foot__brand img {
  height: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.site-foot__brand p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.site-foot__cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.site-foot__col h4 {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-foot__col ul { margin: 0; padding: 0; list-style: none; }
.site-foot__col li { margin-bottom: 0.35rem; }

.site-foot__col a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
}

.site-foot__col a:hover { color: var(--mint); }

.site-foot__fine {
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}
