/* ============================================
   LidOrbit — Lid Closed. Agents Armed. Zero Interruptions.
   Theme: Hacker-black → Cyber-purple, binary matrix accents
   ============================================ */

:root {
  --black-deep: #0B0B0F;
  --purple-deep: #2E1A47;
  --purple-bright: #8B5CF6;
  --purple-glow: #B794F6;
  --cyan-accent: #00E5FF;
  --text-main: #E8E6F0;
  --text-dim: #9D97B5;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(139, 92, 246, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: var(--black-deep);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ---------- Binary matrix background ---------- */
.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(180deg, var(--black-deep) 0%, var(--black-deep) 30%, var(--purple-deep) 100%);
}

#matrix-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}

/* ---------- Container ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 11, 15, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.logo span {
  color: var(--purple-glow);
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--purple-glow);
}

.nav-cta {
  background: var(--purple-bright);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--purple-glow);
  color: var(--black-deep) !important;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
}

.eyebrow {
  font-family: 'Space Grotesk', monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--cyan-accent);
  margin-bottom: 24px;
  opacity: 0.85;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 10%, var(--purple-glow) 60%, var(--cyan-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 900px;
  margin-bottom: 28px;
}

.hero .sub {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero .tagline {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--purple-glow);
  margin-bottom: 48px;
}

.cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 14px;
  background: #fff;
  color: #111 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.35);
}

.btn-store svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn-store .store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.btn-store .store-text small {
  font-size: 0.68rem;
  font-weight: 400;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-store .store-text strong {
  font-size: 1.05rem;
}

.pricing-note {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.85rem;
  color: var(--text-dim);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 10px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-note .hl {
  color: var(--cyan-accent);
  font-weight: 700;
}

/* ---------- Section generic ---------- */
section {
  padding: 110px 0;
  position: relative;
}

.section-label {
  font-family: 'Space Grotesk', monospace;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--cyan-accent);
  text-align: center;
  margin-bottom: 16px;
  opacity: 0.85;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-main);
}

.section-title .accent {
  color: var(--purple-glow);
}

/* ---------- Video showcase ---------- */
.video-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: linear-gradient(145deg, #15101f, #1a1228);
  border: 1px solid var(--card-border);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.1), 0 0 60px rgba(139, 92, 246, 0.25), 0 20px 60px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-frame .placeholder {
  text-align: center;
  color: var(--text-dim);
}

.video-frame .play-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.video-frame .play-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--purple-glow);
}

.video-frame .placeholder p {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.06);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--purple-glow);
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- Why It Matters ---------- */
.why-section {
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.06), transparent);
}

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

.why-grid .copy h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.why-grid .copy p {
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.why-grid .copy strong {
  color: var(--text-main);
}

.terminal {
  background: #08070b;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.85rem;
  line-height: 1.9;
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.18);
}

.terminal .tbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.terminal .tdot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.tdot.r { background: #ff5f56; }
.tdot.y { background: #ffbd2e; }
.tdot.g { background: #27c93f; }

.terminal .line { color: var(--text-dim); }
.terminal .line .prompt { color: var(--cyan-accent); }
.terminal .line .ok { color: #6ee7a8; }
.terminal .line .warn { color: var(--purple-glow); }

/* ---------- Origin Story ---------- */
.origin {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.origin p {
  color: var(--text-dim);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.origin .sig {
  font-family: 'Space Grotesk', monospace;
  color: var(--purple-glow);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 28px;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 40px 32px;
  text-align: center;
}

.price-card.highlight {
  border-color: var(--purple-bright);
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.3);
  position: relative;
}

.price-card .tag {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-accent);
  margin-bottom: 14px;
}

.price-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.price-card .period {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

.price-card li {
  color: var(--text-dim);
  font-size: 0.92rem;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.price-card li:first-child {
  border-top: none;
}

.price-card li::before {
  content: "✓ ";
  color: var(--purple-glow);
  font-weight: 700;
}

/* ---------- In Action / Screenshots ---------- */
.shot-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 90px;
}

.shot-row.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.shot-row.reverse .shot-frame {
  order: 2;
}

.shot-frame {
  border-radius: 20px;
  border: 1px solid var(--card-border);
  background: linear-gradient(145deg, #15101f, #1a1228);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.1), 0 0 50px rgba(139, 92, 246, 0.2), 0 20px 50px rgba(0,0,0,0.5);
  overflow: hidden;
  padding: 10px;
}

.shot-frame img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.shot-frame.settings-frame {
  max-width: 320px;
  margin: 0 auto;
  padding: 24px;
}

.shot-frame.settings-frame img {
  border-radius: 16px;
}

.shot-copy h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.shot-copy p {
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 1rem;
}

.shot-copy strong {
  color: var(--text-main);
}

/* ---------- Shapes block ---------- */
.shapes-block {
  text-align: center;
  margin-top: 40px;
}

.shapes-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.shapes-sub {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.shape-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.shape-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.6);
}

.shape-card img {
  max-width: 100%;
  height: 110px;
  object-fit: contain;
}

.shape-card span {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ---------- Privacy policy box ---------- */
.privacy-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 32px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
}

.privacy-box,
.privacy-box * {
  color: var(--text-dim) !important;
}

.privacy-box a {
  color: var(--purple-glow) !important;
  text-decoration: underline;
}


footer {
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  padding: 50px 0 30px;
  text-align: center;
}

footer .store-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

footer .store-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid var(--card-border);
  padding: 8px 18px;
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

footer .store-links a:hover {
  color: var(--purple-glow);
  border-color: var(--purple-bright);
}

footer .copyright {
  color: var(--text-dim);
  font-size: 0.82rem;
  font-family: 'Space Grotesk', monospace;
  letter-spacing: 0.02em;
}

footer .copyright .brand {
  color: var(--purple-glow);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .shot-row, .shot-row.reverse { grid-template-columns: 1fr; }
  .shot-row.reverse .shot-frame { order: 0; }
  .shapes-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
}
