/* FS Kingpin marketing site. Design tokens mirror the in-app Tailwind config. */

:root {
  --fsk-bg:         #0a0a0a;
  --fsk-secondary:  #141414;
  --fsk-border:     #1e1e1e;
  --fsk-green:      #7ed957;
  --fsk-green-dark: #5fa842;
  --fsk-text:       #ffffff;
  --fsk-text-muted: #a0a0a0;
  --fsk-text-dim:   #8c8c8c;

  --tier-1: #999999;
  --tier-2: #f59e0b;
  --tier-3: #3b82f6;
  --tier-4: #ef4444;
  --tier-5: #a855f7;

  --font-ui: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Boldonse', 'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --radius: 6px;
  --green-glow: 0 0 20px rgba(126, 217, 87, 0.3);
}

* { box-sizing: border-box; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--fsk-bg);
  color: var(--fsk-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--fsk-green); text-decoration: none; }
a:hover { color: var(--fsk-green-dark); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--fsk-border);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 32px; width: auto; }
.nav-logo span {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a { color: var(--fsk-text-muted); }
.nav-links a:hover { color: var(--fsk-text); }

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: #000; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--fsk-border);
  color: var(--fsk-text);
  padding: 6px 10px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 13px;
  cursor: pointer;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--fsk-green);
  color: #000;
}
.btn-primary:hover {
  background: var(--fsk-green-dark);
  box-shadow: var(--green-glow);
  color: #000;
}

.btn-ghost {
  background: transparent;
  color: var(--fsk-text);
  border-color: var(--fsk-border);
}
.btn-ghost:hover {
  border-color: var(--fsk-green);
  color: var(--fsk-green);
}
.hero-ctas .btn-ghost { border-color: #fff; color: #fff; }
.hero-ctas .btn-ghost:hover { border-color: var(--fsk-green); color: var(--fsk-green); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 72vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero { min-height: 60vh; padding: 100px 20px 60px; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%, rgba(10,10,10,1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-kicker {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fsk-green);
  margin-bottom: 20px;
}

.hero-logo {
  height: 180px;
  width: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6));
}

.hero-tagline {
  font-family: var(--font-ui);
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--fsk-text);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-tagline strong {
  color: var(--fsk-green);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-sub {
  margin-top: 28px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fsk-text-dim);
}

.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--fsk-text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}
.social-links a:hover { color: var(--fsk-green); transform: translateY(-2px); }
.social-links svg { width: 18px; height: 18px; fill: currentColor; }

.social-follow { margin-top: 48px; text-align: center; }
.social-follow-label {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fsk-green);
  margin-bottom: 14px;
}
.social-links-lg a { width: 52px; height: 52px; }
.social-links-lg svg { width: 28px; height: 28px; }

.footer-meta .social-links { justify-content: flex-start; margin-top: 12px; }
@media (max-width: 640px) {
  .footer-meta .social-links { justify-content: center; }
}

/* ---------- intro (text left / image right) ---------- */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-text .section-title {
  margin-bottom: 24px;
}

.intro-text p {
  color: var(--fsk-text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.intro-text p:last-child { margin-bottom: 0; }

.intro-img-placeholder {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--fsk-secondary);
  border: 1px dashed var(--fsk-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fsk-text-dim);
}

/* When the placeholder slots are replaced with real images, drop the
   empty-state look: subtle light border, transparent bg, cover-fit. */
img.card-img,
img.step-img,
img.gallery-item,
img.intro-img-placeholder {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  object-fit: cover;
}

/* Mirrored variant: image left, text right on desktop.
   Mobile keeps the natural DOM order (image above text). */
@media (min-width: 1025px) {
  .intro-reverse .intro-grid > .intro-text  { order: 2; }
  .intro-reverse .intro-grid > .intro-image { order: 1; }
}

/* ---------- lab slider (crossfade loop) ---------- */

.lab-slider {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--fsk-secondary);
}

.lab-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: labFade 9s infinite;
}

.lab-slider img:nth-child(1) {
  animation-name: labFadeFirst;
  animation-delay: 0s;
}
.lab-slider img:nth-child(2) { animation-delay: 3s; }
.lab-slider img:nth-child(3) { animation-delay: 6s; }

@keyframes labFadeFirst {
  0%, 33%  { opacity: 1; }
  39%, 94% { opacity: 0; }
  100%     { opacity: 1; }
}

@keyframes labFade {
  0%       { opacity: 0; }
  6%, 33%  { opacity: 1; }
  39%      { opacity: 0; }
  100%     { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .lab-slider img { animation: none; }
  .lab-slider img:nth-child(1) { opacity: 1; }
  .lab-slider img:nth-child(2),
  .lab-slider img:nth-child(3) { opacity: 0; }
}

/* ---------- pitch strip ---------- */

.strip {
  background: var(--fsk-secondary);
  border-top: 1px solid var(--fsk-border);
  border-bottom: 1px solid var(--fsk-border);
  padding: 36px 24px;
}

.strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  text-align: center;
}

.strip-item {
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fsk-text-muted);
}

.strip-item strong {
  color: var(--fsk-green);
  font-weight: 700;
  margin-right: 8px;
}

/* ---------- section shell ---------- */

section.pad {
  padding: 96px 24px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fsk-green);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 22px;
  line-height: 1.35;
  text-transform: none;
}

.section-lede {
  color: var(--fsk-text-muted);
  font-size: 17px;
  max-width: 680px;
  margin: 0 0 48px;
}

/* ---------- feature cards ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--fsk-secondary);
  border: 1px solid var(--fsk-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.card:hover {
  border-color: var(--fsk-green);
  transform: translateY(-2px);
}

.card-tier {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
  border: 1px solid currentColor;
}

.card h3 {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.card p {
  color: var(--fsk-text-muted);
  font-size: 15px;
  margin: 0;
}

.card-img {
  aspect-ratio: 16 / 9;
  margin-top: 20px;
  background: var(--fsk-bg);
  border: 1px dashed var(--fsk-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fsk-text-dim);
}

/* ---------- commodity showcase ---------- */

.commodity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.commodity {
  margin: 0;
  background: var(--fsk-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.commodity:hover {
  border-color: var(--fsk-green);
  transform: translateY(-2px);
}

.commodity img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.commodity figcaption {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fsk-text-muted);
  text-align: center;
}

/* ---------- press page ---------- */

.press-hero {
  padding: 140px 24px 64px;
  border-bottom: 1px solid var(--fsk-border);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(126, 217, 87, 0.06) 0%, transparent 70%),
    var(--fsk-bg);
}

.press-hero .container { max-width: var(--max-w); margin: 0 auto; }

.press-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin: 8px 0 18px;
  text-transform: none;
}

.press-lede {
  color: var(--fsk-text-muted);
  font-size: 17px;
  max-width: 720px;
  margin: 0 0 32px;
  line-height: 1.6;
}

.press-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.beta-callout-wrap {
  padding: 24px;
  border-bottom: 1px solid var(--fsk-border);
  background: var(--fsk-bg);
}

.beta-callout {
  padding: 18px 24px;
  background: var(--fsk-secondary);
  border: 1px solid var(--tier-2);
  border-radius: var(--radius);
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.beta-callout-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tier-2);
  flex-shrink: 0;
  padding-top: 3px;
  white-space: nowrap;
}

.beta-callout-text {
  color: var(--fsk-text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .beta-callout { flex-direction: column; gap: 8px; }
}

.fact-list {
  margin: 0;
  padding: 0;
  border: 1px solid var(--fsk-border);
  border-radius: var(--radius);
  background: var(--fsk-secondary);
  overflow: hidden;
}

.fact-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--fsk-border);
}

.fact-row:last-child { border-bottom: 0; }

.fact-row dt {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fsk-text-dim);
  padding-top: 2px;
}

.fact-row dd {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--fsk-text);
  line-height: 1.6;
}

.fact-row dd a { color: var(--fsk-green); }
.fact-row dd a:hover { color: var(--fsk-green-dark); }

.desc-block {
  background: var(--fsk-secondary);
  border: 1px solid var(--fsk-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 14px;
}

.desc-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fsk-green);
  margin-bottom: 12px;
}

.desc-block p {
  color: var(--fsk-text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.desc-block p:last-child { margin-bottom: 0; }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--fsk-secondary);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.logo-block {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 32px;
  align-items: center;
  background: var(--fsk-secondary);
  border: 1px solid var(--fsk-border);
  border-radius: var(--radius);
  padding: 32px;
}

.logo-tile {
  background: var(--fsk-bg);
  border: 1px solid var(--fsk-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-tile img {
  max-width: 100%;
  height: auto;
  max-height: 140px;
}

.logo-meta p {
  color: var(--fsk-text-muted);
  font-size: 15px;
  margin: 0 0 16px;
}

@media (max-width: 768px) {
  .fact-row { grid-template-columns: 1fr; gap: 6px; }
  .fact-row dt { padding-top: 0; }
  .logo-block { grid-template-columns: 1fr; padding: 24px; }
}

/* ---------- factions ---------- */

.faction-screenshot {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px dashed var(--fsk-border);
  background: var(--fsk-secondary);
}

.faction-screenshot::before {
  content: "Choose your faction";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fsk-text-dim);
}

.faction-screenshot img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--fsk-secondary);
}

.faction-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faction-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--fsk-secondary);
  border: 1px solid var(--fsk-border);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--fsk-text-muted);
  letter-spacing: 0.02em;
}

.faction-list li strong {
  color: var(--fsk-text);
  font-weight: 700;
  margin-right: 4px;
}

.faction-flag {
  display: inline-flex;
  width: 28px;
  height: 19px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--fsk-bg);
  flex-shrink: 0;
}

.faction-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- numbers band ---------- */

.numbers {
  background: #050505;
  border-top: 1px solid var(--fsk-border);
  border-bottom: 1px solid var(--fsk-border);
  padding: 72px 24px;
}

.numbers-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-ui);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--fsk-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fsk-text-muted);
}

/* ---------- how it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}

.step {
  background: var(--fsk-secondary);
  border: 1px solid var(--fsk-border);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.step-num {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--fsk-green);
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-ui);
  font-size: 18px;
  margin: 0 0 10px;
}

.step p {
  color: var(--fsk-text-muted);
  font-size: 15px;
  margin: 0;
}

.step-img {
  aspect-ratio: 16 / 9;
  background: var(--fsk-bg);
  border: 1px dashed var(--fsk-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fsk-text-dim);
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr; }
}

.gallery-item {
  aspect-ratio: 16 / 9;
  background: var(--fsk-secondary);
  border: 1px dashed var(--fsk-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fsk-text-dim);
}

/* ---------- signup CTA ---------- */

.cta-block {
  background: linear-gradient(135deg, #0d0d0d 0%, #141414 100%);
  border: 1px solid var(--fsk-border);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(126, 217, 87, 0.35) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 0 0 18px;
  text-transform: none;
}

.cta-block p {
  color: var(--fsk-text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 16px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-fine {
  margin-top: 28px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fsk-text-dim);
}

/* ---------- FAQ ---------- */

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

.faq details {
  background: var(--fsk-secondary);
  border: 1px solid var(--fsk-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 10px;
}

.faq details[open] { border-color: var(--fsk-green); }

.faq summary {
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq summary::after {
  content: '+';
  color: var(--fsk-green);
  font-size: 22px;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  content: '−';
}

.faq p {
  margin: 14px 0 0;
  color: var(--fsk-text-muted);
  font-size: 15px;
}

/* ---------- footer ---------- */

footer {
  background: #050505;
  border-top: 1px solid var(--fsk-border);
  padding: 48px 24px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 28px; }
.footer-brand span {
  font-family: var(--font-ui);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fsk-text-dim);
  text-align: right;
}

.footer-meta a { color: var(--fsk-text-muted); }
.footer-meta a:hover { color: var(--fsk-green); }

.footer-legal {
  max-width: var(--max-w);
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--fsk-border);
  font-size: 12px;
  color: var(--fsk-text-dim);
  text-align: center;
  line-height: 1.7;
}

/* ---------- clickable image tiles ---------- */

.clickable-tile {
  cursor: zoom-in;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}
.clickable-tile:hover,
.clickable-tile:focus-visible {
  border-color: var(--fsk-green) !important;
  border-style: solid !important;
  box-shadow: 0 0 0 1px var(--fsk-green) inset;
}
.clickable-tile:focus-visible {
  box-shadow: 0 0 0 2px var(--fsk-green);
}

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  backdrop-filter: blur(6px);
}

.lightbox.open {
  display: flex;
  animation: lbFade 0.18s ease;
}

@keyframes lbFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-inner {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-body {
  max-width: 92vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-body img {
  max-width: 92vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--fsk-border);
  object-fit: contain;
}

.lightbox-placeholder {
  width: min(88vw, 1280px);
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  background: var(--fsk-secondary);
  border: 1px dashed var(--fsk-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fsk-text-muted);
}

.lightbox-caption {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fsk-text-dim);
  text-align: center;
  max-width: 90vw;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: 1px solid var(--fsk-border);
  color: var(--fsk-text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
  z-index: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: var(--fsk-green);
  color: var(--fsk-green);
  outline: none;
}

/* ---------- fade-in on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr; gap: 12px; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .commodity-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  section.pad { padding: 64px 20px; }
  .nav { padding: 12px 20px; }
  .commodity-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--fsk-bg);
    border-bottom: 1px solid var(--fsk-border);
    flex-direction: column;
    padding: 16px 20px;
    gap: 16px;
  }
  .hero-logo { height: 120px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-block { padding: 40px 24px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
  .sysreq-grid { grid-template-columns: 1fr; }
}

/* ============ EARLY ACCESS LAUNCH ADDITIONS ============ */

.trailer {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -140px;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.trailer .video-frame {
  pointer-events: auto;
}
.trailer-container {
  max-width: 960px;
}
@media (max-width: 720px) {
  .trailer { margin-top: -60px; }
}

.ea-callout-section {
  padding-top: 56px;
  padding-bottom: 0;
}
.ea-callout-container {
  max-width: 960px;
}
.ea-callout {
  background: var(--fsk-secondary, #141414);
  border: 1px solid var(--fsk-border, #1e1e1e);
  border-radius: 12px;
  padding: 32px 36px;
}
.ea-callout-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fsk-green);
  font-weight: 700;
  margin-bottom: 10px;
}
.ea-callout-title {
  font-size: 24px;
  margin: 0 0 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.ea-callout-lede {
  margin: 0 0 14px;
  color: var(--fsk-text, #e8e8e8);
  font-size: 15px;
  line-height: 1.6;
}
.ea-callout-warning {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fsk-muted, #9aa0a6);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 8px;
  border: 1px solid var(--fsk-border, #1e1e1e);
}
.ea-callout-readmore-link {
  display: inline-block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--fsk-border, #1e1e1e);
  font-size: 14px;
  font-weight: 600;
  color: var(--fsk-green);
  text-decoration: none;
  width: 100%;
}
.ea-callout-readmore-link:hover {
  text-decoration: underline;
}
@media (max-width: 720px) {
  .ea-callout-section { padding-top: 32px; }
  .ea-callout { padding: 24px 22px; }
  .ea-callout-title { font-size: 20px; }
}



.hero-pricing {
  margin-top: 18px;
  font-size: 12px;
  color: var(--fsk-muted, #9aa0a6);
  letter-spacing: 0.02em;
}

.discord-pre {
  margin-top: 18px;
  font-size: 14px;
  color: var(--fsk-muted, #9aa0a6);
}
.discord-pre a {
  color: var(--fsk-green);
  text-decoration: none;
  font-weight: 600;
}
.discord-pre a:hover { text-decoration: underline; }

.nav-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 12px;
  color: var(--fsk-text, #e8e8e8);
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-discord:hover {
  background: rgba(126, 217, 87, 0.08);
  color: var(--fsk-green);
}

.trust-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fsk-green);
  border: 1px solid var(--fsk-green);
  border-radius: 999px;
  background: rgba(126, 217, 87, 0.06);
}

.sysreq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}
.sysreq-col {
  background: var(--fsk-bg-2, #141414);
  border: 1px solid var(--fsk-border, #1e1e1e);
  border-radius: 12px;
  padding: 28px 28px 24px;
}
.sysreq-col h3 {
  margin: 0 0 16px;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fsk-green);
}
.sysreq-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sysreq-col li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fsk-text, #e8e8e8);
}
.sysreq-col li strong {
  color: var(--fsk-muted, #9aa0a6);
  font-weight: 600;
  margin-right: 6px;
}

/* Legal page (privacy / terms / changelog) generic shell */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 24px 80px;
  color: var(--fsk-text, #e8e8e8);
}
.legal-page h1 {
  font-size: 36px;
  margin: 12px 0 8px;
}
.legal-page .legal-meta {
  font-size: 13px;
  color: var(--fsk-muted, #9aa0a6);
  margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--fsk-green);
}
.legal-page h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-page p, .legal-page li {
  font-size: 15px;
  line-height: 1.6;
}
.legal-page ul {
  padding-left: 22px;
}
.legal-page a {
  color: var(--fsk-green);
}
.legal-page a.btn-primary,
.legal-page a.btn-primary:hover {
  color: #000;
}
.legal-page .changelog-entry {
  border-top: 1px solid var(--fsk-border, #1e1e1e);
  padding-top: 24px;
  margin-top: 32px;
}
.legal-page .changelog-entry:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.legal-page .changelog-version {
  font-size: 13px;
  color: var(--fsk-muted, #9aa0a6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Dark-theme overrides for the ConvertKit waitlist form (#waitlist section) */
#waitlist .formkit-form {
  max-width: 480px !important;
  margin: 0 auto;
}
#waitlist .formkit-form[min-width~="700"] [data-style="clean"],
#waitlist .formkit-form[min-width~="800"] [data-style="clean"] {
  padding: 0 !important;
}
#waitlist .formkit-input {
  background: var(--fsk-bg, #0a0a0a) !important;
  color: var(--fsk-text, #e8e8e8) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 10px !important;
  padding: 14px 18px !important;
  font-size: 16px !important;
}
#waitlist .formkit-input::placeholder {
  color: var(--fsk-muted, #9aa0a6) !important;
  opacity: 1 !important;
}
#waitlist .formkit-input:focus {
  border-color: var(--fsk-green) !important;
  box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.15) !important;
  outline: none !important;
}
#waitlist .formkit-submit {
  background-color: var(--fsk-green) !important;
  color: #0a0a0a !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 0 !important;
}
#waitlist .formkit-submit > span {
  padding: 14px 24px !important;
}
#waitlist .formkit-submit:hover > span,
#waitlist .formkit-submit:focus > span {
  background-color: rgba(0, 0, 0, 0.08) !important;
}
#waitlist .formkit-spinner > div {
  background-color: #0a0a0a !important;
}
#waitlist .formkit-fields {
  gap: 10px;
  margin: 0 !important;
}
#waitlist .formkit-field,
#waitlist .formkit-submit {
  margin: 0 !important;
}
#waitlist .formkit-alert {
  background: rgba(255, 100, 100, 0.08) !important;
  border-color: #ef4444 !important;
  color: #ef4444 !important;
  border-radius: 10px !important;
  margin: 0 0 12px !important;
}
#waitlist .formkit-alert-success {
  background: rgba(126, 217, 87, 0.08) !important;
  border-color: var(--fsk-green) !important;
  color: var(--fsk-green) !important;
}
#waitlist .formkit-powered-by-convertkit-container {
  opacity: 0.45;
  margin: 14px 0 0 !important;
}
#waitlist .formkit-powered-by-convertkit-container:hover {
  opacity: 0.8;
}
