:root {
  --bg: #050806;
  --bg-soft: #0b120e;
  --panel: #0d1410;
  --grid: rgba(124, 255, 122, 0.08);
  --accent: #7cff7a;
  --accent-strong: #97ff96;
  --accent-cyan: #67d7ff;
  --text: #e7ffe9;
  --muted: #9bb7a0;
  --border: rgba(124, 255, 122, 0.2);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0c160f, var(--bg)) fixed;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  background-image:
    linear-gradient(transparent 70%, rgba(124, 255, 122, 0.02)),
    repeating-linear-gradient(0deg, transparent, transparent 22px, rgba(124, 255, 122, 0.03) 23px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 60px);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(5, 8, 6, 0.92), rgba(5, 8, 6, 0.72));
  border-bottom: 1px solid rgba(124, 255, 122, 0.1);
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Mono", "Space Grotesk", monospace;
  letter-spacing: 1px;
}

.logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(124, 255, 122, 0.4);
}

.brand-name {
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 80px clamp(20px, 6vw, 80px) 60px;
}

.hero-copy h1 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  margin: 12px 0 16px;
  font-family: "Space Mono", "Space Grotesk", monospace;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.btn-primary {
  background: rgba(124, 255, 122, 0.12);
  color: var(--accent-strong);
  border-color: rgba(124, 255, 122, 0.55);
  box-shadow: 0 0 24px rgba(124, 255, 122, 0.2);
}

.btn-secondary {
  background: rgba(10, 16, 12, 0.85);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.btn-text {
  background: transparent;
  color: var(--accent-cyan);
  border-color: rgba(103, 215, 255, 0.3);
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 255, 122, 0.6);
}

.hero-bullets {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 320px;
}

.hero-shot {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  border: 1px solid rgba(124, 255, 122, 0.22);
  background: rgba(8, 12, 9, 0.75);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatIn 0.8s ease both;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  aspect-ratio: 16 / 9;
  background: rgba(4, 8, 6, 0.9);
}

.hud-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at top right, rgba(103, 215, 255, 0.15), transparent 60%);
  filter: blur(12px);
  opacity: 0.7;
}

.strip {
  padding: 0 clamp(20px, 6vw, 80px) 60px;
}

.strip-card {
  background: linear-gradient(135deg, rgba(124, 255, 122, 0.08), rgba(5, 8, 6, 0.8));
  border: 1px solid rgba(124, 255, 122, 0.2);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.strip-title {
  font-size: 20px;
  font-weight: 600;
}

.strip-sub {
  color: var(--muted);
}

.features,
.workflow,
.cta-panel,
.privacy {
  padding: 60px clamp(20px, 6vw, 80px);
}

.section-title h2 {
  margin: 0 0 8px;
  font-family: "Space Mono", monospace;
}

.section-title p {
  margin: 0 0 24px;
  color: var(--muted);
}

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

.feature-media {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.feature-shot {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(124, 255, 122, 0.16);
  background: rgba(8, 12, 9, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.feature-shot img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: contain;
  background: rgba(4, 8, 6, 0.9);
  cursor: zoom-in;
}

.feature-shot figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid rgba(124, 255, 122, 0.12);
  background: rgba(5, 8, 6, 0.7);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 6, 4, 0.78);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(100%, 980px);
  max-height: 80vh;
  border-radius: 16px;
  border: 1px solid rgba(124, 255, 122, 0.25);
  background: rgba(6, 10, 7, 0.95);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  cursor: zoom-out;
}

.card {
  background: rgba(8, 12, 9, 0.8);
  border: 1px solid rgba(124, 255, 122, 0.16);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.step {
  border: 1px solid rgba(103, 215, 255, 0.2);
  border-radius: 16px;
  padding: 18px;
  background: rgba(5, 8, 6, 0.7);
}

.step-num {
  font-family: "Space Mono", monospace;
  color: var(--accent-cyan);
}

.cta-panel {
  background: radial-gradient(circle at center, rgba(124, 255, 122, 0.1), transparent 60%);
}

.cta-card {
  border: 1px solid rgba(124, 255, 122, 0.3);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  background: rgba(7, 12, 9, 0.9);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  margin: 0 0 12px;
  font-family: "Space Mono", monospace;
}

.cta-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.privacy {
  padding-bottom: 80px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(20px, 6vw, 80px);
  border-top: 1px solid rgba(124, 255, 122, 0.1);
  background: rgba(5, 8, 6, 0.9);
}

.footer-left {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: "Space Mono", monospace;
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .nav-links {
    width: 100%;
    justify-content: space-between;
  }
  .hero {
    padding-top: 40px;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hud-row {
    grid-template-columns: 56px 36px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
