*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #1f2a24;
  --card:    #2f3d34;
  --border:  #4a3b30;
  --accent:  #6f8f72;
  --text:    #f3efe7;
  --muted:   #cbbfae;
  --green:   #8fae88;
  --brown:   #6b4f3a;
  --brown-deep: #3b2f27;
  --gold:    #b08968;
  --dim:     #6a5b4b;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: Consolas, "Courier New", monospace;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* brown frame border overlaid on top of everything — fixed so it's never clipped */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  border: 3px solid rgba(107,79,58,0.55);
  border-top-width: 8px;
  pointer-events: none;
  z-index: 99999;
}

/* soft green edge glows — full height on every section */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0; bottom: 0;
  width: 320px;
  pointer-events: none;
  z-index: 999;
}
body::before {
  left: 0;
  background: radial-gradient(ellipse at left center,
    rgba(107,79,58,0.10) 0%, transparent 70%);
}
body::after {
  right: 0;
  background: radial-gradient(ellipse at right center,
    rgba(107,79,58,0.10) 0%, transparent 70%);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 50px;
  background: rgba(31,42,36,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: 1.05rem; font-weight: bold;
  letter-spacing: 0.1em; color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.75rem; color: var(--muted); text-decoration: none;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 0.78rem; font-weight: bold;
  background: var(--accent); color: #1b241e;
  padding: 6px 18px; border-radius: 3px;
  text-decoration: none; letter-spacing: 0.05em;
  transition: opacity 0.15s;
}
.nav-cta:hover { background: var(--green); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 600px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 4vw;
  overflow: hidden;
}

/* animated wall fills the right side */
.hero-wall {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  padding: 3px;
  opacity: 0.55;
  mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
}

.hc {
  background: var(--card);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.hc video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* scan-line overlay on top of video */
.hc::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,0,0,0.08) 2px, rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}
/* playback bar */
.hc::after {
  content: "";
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--accent);
  animation: play linear infinite;
  border-radius: 0 2px 2px 0;
}
.hc:nth-child(1)::after  { animation-duration: 11s; animation-delay: -2s;  }
.hc:nth-child(2)::after  { animation-duration: 17s; animation-delay: -7s;  }
.hc:nth-child(3)::after  { animation-duration: 8s;  animation-delay: -1s;  }
.hc:nth-child(4)::after  { animation-duration: 14s; animation-delay: -5s;  }
.hc:nth-child(5)::after  { animation-duration: 22s; animation-delay: -11s; }
.hc:nth-child(6)::after  { animation-duration: 9s;  animation-delay: -4s;  }
.hc:nth-child(7)::after  { animation-duration: 19s; animation-delay: -8s;  }
.hc:nth-child(8)::after  { animation-duration: 13s; animation-delay: -3s;  }
.hc:nth-child(9)::after  { animation-duration: 7s;  animation-delay: -6s;  }
.hc:nth-child(10)::after { animation-duration: 16s; animation-delay: -9s;  }
.hc:nth-child(11)::after { animation-duration: 12s; animation-delay: -2s;  }
.hc:nth-child(12)::after { animation-duration: 20s; animation-delay: -14s; }

@keyframes play {
  from { width: 0%; }
  to   { width: 100%; }
}

/* pulsing glow on some cells */
.hc:nth-child(2), .hc:nth-child(7), .hc:nth-child(10) {
  box-shadow: inset 0 0 0 1px rgba(111,143,114,0.25);
  animation: pulse 4s ease-in-out infinite;
}
.hc:nth-child(2) { animation-delay: 0s; }
.hc:nth-child(7) { animation-delay: 1.5s; }
.hc:nth-child(10){ animation-delay: 3s; }
@keyframes pulse {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(111,143,114,0.2); }
  50%       { box-shadow: inset 0 0 0 1px rgba(111,143,114,0.55); }
}

/* small cell overlays */
.hc-ab {
  position: absolute; top: 5px; right: 5px; z-index: 2;
  font-family: Consolas, monospace;
  font-size: 0.5rem; color: var(--green);
  background: rgba(26,42,26,0.85);
  padding: 1px 5px; border-radius: 2px;
  letter-spacing: 0.05em;
}
.hc-vol {
  position: absolute; bottom: 8px; right: 6px; z-index: 2;
  font-family: Consolas, monospace;
  font-size: 0.5rem; color: rgba(255,255,255,0.6);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* left fade + glow */
.hero::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 55% 70% at 20% 50%,
      rgba(111,143,114,0.08) 0%, transparent 70%),
    linear-gradient(to right, var(--bg) 35%, transparent 65%);
  z-index: 1; pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 560px;
}
.hero-kicker {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-kicker::before {
  content: "";
  display: inline-block; width: 28px; height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: bold;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--accent); display: block; }

.hero-desc {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 2rem;
  max-width: 400px;
}

.hero-btns {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex; gap: 2rem;
}
.stat { }
.stat-num {
  font-size: 1.6rem; font-weight: bold; color: var(--text);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.7rem; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
  padding: 11px 0;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%, black 6%, black 94%, transparent 100%
  );
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  will-change: transform;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 1.5rem;
  padding: 0 2rem;
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.ticker-item span { color: var(--accent); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: #1b241e;
  border: none; border-radius: 3px;
  padding: 12px 28px;
  font-family: inherit; font-size: 0.88rem; font-weight: bold;
  cursor: pointer; text-decoration: none;
  transition: background 0.15s; display: inline-block;
  letter-spacing: 0.04em;
}
.btn-primary:hover { background: var(--green); }
.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1px solid var(--brown); border-radius: 3px;
  padding: 12px 28px;
  font-family: inherit; font-size: 0.88rem; font-weight: bold;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.15s, color 0.15s; display: inline-block;
  letter-spacing: 0.04em;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--text); }

/* ── SECTION WRAPPER ── */
.section {
  max-width: 1280px; margin: 0 auto;
  padding: 5rem 2rem;
}
.section-tag {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::after {
  content: ""; flex: 1; max-width: 40px;
  height: 1px; background: var(--accent); opacity: 0.4;
}
.section-h {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: bold; line-height: 1.1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--muted); font-size: 0.88rem;
  max-width: 480px; margin-bottom: 3rem;
  line-height: 1.65;
}

/* ── FEATURES EXPLORER ── */
#features {
  background: linear-gradient(180deg, var(--bg) 0%, #243028 100%);
  padding-bottom: 2.5rem;
  margin-bottom: 4rem;
  border-radius: 16px;
}
.feat-explorer {
  display: grid;
  grid-template-columns: 1fr 2fr auto 2fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  height: 640px;
  margin-bottom: 0;
}
.feat-col {
  display: flex; flex-direction: column;
  overflow: hidden;
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='36'><text x='10' y='13' text-anchor='middle' font-size='13' fill='%236f8f72'>▲</text><text x='10' y='30' text-anchor='middle' font-size='13' fill='%236f8f72'>▼</text></svg>") 10 18, ns-resize;
}
.feat-col-free { border-right: 1px solid var(--border); }
.feat-col-pro  { border-left:  1px solid var(--border); }
.feat-panel-pro { border-right: 1px solid var(--border); }

.feat-arrows {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.75rem;
  padding: 0 0.9rem;
  background: rgba(0,0,0,0.12);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  min-width: 120px;
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='36'><text x='10' y='13' text-anchor='middle' font-size='13' fill='%236f8f72'>▲</text><text x='10' y='30' text-anchor='middle' font-size='13' fill='%236f8f72'>▼</text></svg>") 10 18, ns-resize;
  user-select: none;
}
.feat-arrow-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
  cursor: inherit;
  width: 38px; height: 36px;
  font-size: 0.8rem;
  line-height: 1;
  font-family: inherit;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.feat-arrow-btn.highlighted {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(111,143,114,0.12);
}
.feat-arrow-btn:disabled { opacity: 0.18; }
.feat-arrow-btn { pointer-events: none; }
.feat-arrow-count {
  font-size: 0.6rem; color: var(--dim);
  letter-spacing: 0.08em; text-align: center;
  line-height: 1;
}
.feat-badge {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  color: var(--green);
  text-shadow:
    0 0 8px rgba(143,174,136,0.9),
    0 0 22px rgba(143,174,136,0.6),
    0 0 50px rgba(143,174,136,0.35);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { text-shadow: 0 0 8px rgba(143,174,136,0.9), 0 0 22px rgba(143,174,136,0.6), 0 0 50px rgba(143,174,136,0.35); }
  50%       { text-shadow: 0 0 14px rgba(143,174,136,1), 0 0 36px rgba(143,174,136,0.8), 0 0 80px rgba(143,174,136,0.45); }
}
.feat-col-hdr {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  flex: 0 0 auto;
}
.feat-col-hdr.pro { color: var(--gold); }

.feat-nav-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--border);
  cursor: inherit;
  transition: background 0.15s, border-color 0.15s;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.feat-nav-item:last-child { border-bottom: none; }
.feat-nav-item:hover { background: rgba(111,143,114,0.04); }
.feat-nav-item .fn {
  font-size: 0.58rem; color: var(--dim);
  letter-spacing: 0.12em; flex-shrink: 0; width: 18px;
}
.feat-nav-item .ft {
  font-size: 0.82rem; color: var(--muted);
  font-weight: bold; line-height: 1.2;
  transition: color 0.15s, font-size 0.2s;
}

/* Free column — accent points right toward center */
.feat-col-free .feat-nav-item.active {
  background: rgba(111,143,114,0.07);
  border-right-color: var(--accent);
  align-items: flex-end;
}
.feat-col-free .feat-nav-item.active .fn { color: var(--accent); }
.feat-col-free .feat-nav-item.active .ft { color: var(--text); }

/* Pro column — accent points left toward center */
.feat-col-pro .feat-nav-item.active {
  background: rgba(176,137,104,0.05);
  border-left-color: var(--gold);
  align-items: flex-end;
}
.feat-col-pro .feat-nav-item.active .fn { color: var(--gold); }
.feat-col-pro .feat-nav-item.active .ft { color: var(--text); }

/* Bottom corners of nav columns follow explorer's radius */
.feat-col-free .feat-nav-item:last-child { border-bottom-left-radius: 8px; }
.feat-col-pro  .feat-nav-item:last-child { border-bottom-right-radius: 8px; }

.feat-panel {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, #2a372e 0%, #232e27 100%);
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='36'><text x='10' y='13' text-anchor='middle' font-size='13' fill='%236f8f72'>▲</text><text x='10' y='30' text-anchor='middle' font-size='13' fill='%236f8f72'>▼</text></svg>") 10 18, ns-resize;
}
.feat-panel-pro {
  background: linear-gradient(135deg, #33291f 0%, #2a2219 100%);
}
.feat-panel-ghost {
  position: absolute; right: -0.5rem; top: 50%;
  transform: translateY(-55%);
  font-size: clamp(5rem, 7vw, 8rem);
  font-weight: bold; line-height: 1;
  color: rgba(111,143,114,0.06);
  letter-spacing: -0.05em;
  pointer-events: none; user-select: none;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.feat-panel-pro .feat-panel-ghost {
  right: auto; left: -0.5rem;
}
.feat-panel-pill {
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
  display: inline-block; width: fit-content;
  margin-bottom: 0.75rem;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.feat-panel-pill.free { background: rgba(143,174,136,0.12); color: var(--green); }
.feat-panel-pill.pro  { background: rgba(176,137,104,0.12);  color: var(--gold); }
.feat-panel-name {
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: bold; color: var(--text);
  line-height: 1.1; margin-bottom: 1rem;
  letter-spacing: -0.02em;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.feat-panel-desc {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.75;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1);
}

/* out state — elements slide down and fade */
.feat-panel.out .feat-panel-ghost {
  opacity: 0; transform: translateY(-45%) scale(0.95);
}
.feat-panel.out .feat-panel-pill,
.feat-panel.out .feat-panel-name,
.feat-panel.out .feat-panel-desc {
  opacity: 0; transform: translateY(12px);
}

@media (max-width: 900px) {
  .feat-explorer { grid-template-columns: 1fr auto 1fr; }
  .feat-col-free { display: none; }
  .feat-col-pro  { display: none; }
  .feat-panel    { min-height: 220px; }
  .feat-panel-pro { border-right: none; }
}
@media (max-width: 500px) {
  .feat-explorer { grid-template-columns: 1fr auto; }
  .feat-panel-pro { display: none; }
  .feat-arrows { border-right: none; }
}

/* ── STATEMENT ── */
.statement {
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #1b241e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statement::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(111,143,114,0.1) 0%, transparent 65%);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.08); }
}
.statement-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}
.statement-quote {
  font-size: 5rem; line-height: 0.6;
  color: var(--accent); opacity: 0.15;
  display: block; margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.statement p {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: bold; line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--text);
}
.statement p em   { font-style: normal; color: var(--accent); }
.statement p .dim { color: var(--muted); font-weight: normal; font-size: 80%; }

/* ── PRICING ── */
#pricing { background: var(--bg); }

.pricing {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 640px) { .pricing { grid-template-columns: 1fr; } }

.plan {
  border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem;
  background: var(--card);
  position: relative;
}
.plan.pro {
  border-color: transparent;
  background: linear-gradient(#2b3a2f, #2b3a2f) padding-box,
              linear-gradient(135deg, var(--accent), #6b4f3a, var(--accent)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 40px rgba(111,143,114,0.12), 0 0 80px rgba(111,143,114,0.05);
}
.plan-tier {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem;
}
.plan-price {
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: bold; line-height: 1; color: var(--text);
  margin-bottom: 0.25rem;
}
.plan-price small {
  font-size: 0.82rem; color: var(--muted);
  font-weight: normal; vertical-align: baseline;
}
.plan-note {
  font-size: 0.78rem; color: var(--muted);
  margin: 0.4rem 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan ul { list-style: none; margin-bottom: 2rem; }
.plan ul li {
  font-size: 0.8rem; color: var(--muted);
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.plan ul li:last-child { border-bottom: none; }
.plan ul li::before { content: "✓"; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.plan ul li.off { color: var(--dim); }
.plan ul li.off::before { content: "—"; color: var(--dim); }

.plan-btn {
  display: block; width: 100%; text-align: center;
  padding: 13px; border-radius: 5px;
  font-family: inherit; font-size: 0.9rem; font-weight: bold;
  text-decoration: none; cursor: pointer; border: none;
  letter-spacing: 0.05em;
}
.plan-btn.free {
  background: transparent; border: 1px solid var(--brown);
  color: var(--muted); transition: border-color 0.15s, color 0.15s;
}
.plan-btn.free:hover { border-color: var(--accent); color: var(--text); }
.plan-btn.upgrade {
  background: var(--accent); color: #1b241e;
  transition: opacity 0.15s;
  font-size: 0.95rem;
}
.plan-btn.upgrade:hover { background: var(--green); }

/* ── DOWNLOAD ── */
.dl-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem;
  text-align: center;
  background: #1a231d;
}
.dl-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.dl-section::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(111,143,114,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.dl-inner {
  position: relative; z-index: 1;
  max-width: 560px; margin: 0 auto;
}
.dl-inner .section-tag { justify-content: center; }
.dl-inner .section-tag::after { display: none; }
.dl-left h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: bold; margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}
.dl-left p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.5rem; }
.dl-meta {
  font-size: 0.72rem; color: var(--dim);
  margin-bottom: 2rem;
}
.dl-meta span { color: var(--green); }

/* ── PLATFORM BADGES ── */
.dl-platforms {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.platform {
  font-size: 0.68rem; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 3px;
}
.platform.active {
  background: rgba(143,174,136,0.1); color: var(--green);
  border: 1px solid rgba(143,174,136,0.2);
}
.platform.soon {
  background: transparent; color: var(--dim);
  border: 1px solid var(--border);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.75rem; color: var(--dim);
  background: #1a231d;
}
footer a { color: var(--dim); text-decoration: none; transition: color 0.15s; }
footer a:hover { color: var(--muted); }
.footer-r { display: flex; gap: 2rem; }

/* ═══════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════ */

/* ── 768 px and below ── */
@media (max-width: 768px) {
  /* Nav: hide text links, keep logo + CTA */
  nav { padding: 0 1rem; gap: 0; }
  .nav-links { display: none; }
  .nav-cta { padding: 7px 14px; font-size: 0.75rem; }

  /* Hero: stack content, tone down wall */
  .hero {
    height: auto;
    min-height: 100svh;
    padding: 80px 1.25rem 3rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .hero-wall {
    width: 100%;
    opacity: 0.12;
    mask-image: linear-gradient(
      to bottom, transparent 0%, black 20%, black 70%, transparent 100%
    );
  }
  .hero::before {
    background:
      radial-gradient(ellipse 70% 50% at 50% 40%,
        rgba(111,143,114,0.06) 0%, transparent 70%),
      linear-gradient(to bottom,
        var(--bg) 0%,
        rgba(31,42,36,0.88) 45%,
        rgba(31,42,36,0.45) 100%);
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero-desc { max-width: 100%; font-size: 0.9rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 0.65rem; }
  .hero-btns a { text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.35rem; }

  /* Sections: reduce padding */
  .section { padding: 3rem 1.25rem; }
  .statement { padding: 4rem 1.25rem; }
  .dl-section { padding: 4.5rem 1.25rem; }

  /* Feature explorer: allow arrow button taps, auto height */
  .feat-explorer { height: auto; }
  .feat-panel { min-height: 260px; padding: 1.75rem 1.5rem; }
  .feat-arrow-btn { pointer-events: auto; width: 44px; height: 44px; }
  .feat-arrows { min-width: 72px; gap: 1.25rem; }
  .feat-badge { font-size: 1.7rem; }

  /* Pricing */
  .plan { padding: 1.5rem; }
  .plan-price { font-size: clamp(2.2rem, 8vw, 3rem); }

  /* Download CTA full-width */
  .dl-inner a.btn-primary {
    display: block;
    text-align: center;
    width: 100%;
    padding: 16px 24px;
  }

  /* Footer: stack */
  footer { flex-direction: column; align-items: center; text-align: center; }
  .footer-r { gap: 1.5rem; }
}

/* ── 480 px and below ── */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2rem, 9.5vw, 2.8rem); }
  .hero-btns a { padding: 14px 20px; font-size: 0.85rem; }
  .feat-panel { min-height: 230px; padding: 1.5rem 1.25rem; }
  .feat-panel-name { font-size: clamp(1.2rem, 5.5vw, 1.6rem); }
  .feat-panel-desc { font-size: 0.8rem; }
  .feat-arrow-btn { width: 48px; height: 48px; font-size: 1.05rem; }
  .feat-arrows { min-width: 64px; padding: 0 0.5rem; }
  .section-h { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .statement p { font-size: clamp(1.25rem, 6vw, 1.8rem); }
}


/* ═══════════════════════════════════
   NOTIFY / WAITLIST FORM
═══════════════════════════════════ */
.notify-form {
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.notify-label {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.65rem;
}
.notify-row {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.notify-input {
  flex: 1 1 200px; min-width: 0;
  background: var(--card); color: var(--text);
  border: 1px solid var(--border); border-radius: 3px;
  padding: 12px 14px;
  font-family: inherit; font-size: 0.85rem;
  transition: border-color 0.15s;
}
.notify-input::placeholder { color: var(--dim); }
.notify-input:focus { outline: none; border-color: var(--accent); }
.notify-btn {
  background: var(--accent); color: #000;
  border: none; border-radius: 3px;
  padding: 12px 24px;
  font-family: inherit; font-size: 0.85rem; font-weight: bold;
  letter-spacing: 0.04em; cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.notify-btn:hover { opacity: 0.85; }
.notify-btn:disabled { opacity: 0.45; cursor: default; }
.notify-status {
  font-size: 0.75rem; color: var(--muted);
  margin-top: 0.6rem; min-height: 1.15em;
  line-height: 1.5;
}
.notify-status[data-state="ok"]  { color: var(--green); }
.notify-status[data-state="err"] { color: var(--pink); }

/* stacked variant inside the pricing cards */
.plan .notify-form { max-width: none; margin-bottom: 0; }
.plan .notify-row  { flex-direction: column; gap: 0.45rem; }
.plan .notify-input { flex: 1 1 auto; padding: 11px 12px; text-align: center; }
.plan .notify-btn   { width: 100%; padding: 13px; }
.plan .notify-status { text-align: center; }

/* ═══════════════════════════════════
   PRE-LAUNCH BITS
═══════════════════════════════════ */

/* longer, hardware-scaled headline needs a smaller ceiling than the old
   two-word hero h1 */
.hero h1.h1-scale {
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  line-height: 1.05;
}

/* stat values that are words, not numbers */
.stat-num.stat-text {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding-top: 0.5rem;
}

.plan-when {
  font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin: -0.35rem 0 0.85rem;
}
.plan-foot {
  font-size: 0.7rem; color: var(--dim);
  text-align: center; margin-top: 0.9rem;
}

/* the LLC attribution is a required line — --dim (#2a2a4a on #07070f) is
   effectively invisible, so this one steps up to --muted */
.footer-legal {
  flex-basis: 100%;
  font-size: 0.68rem; color: var(--muted);
}

/* ═══════════════════════════════════
   COMING SOON PAGE
═══════════════════════════════════ */
.cs-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}
.cs-page::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; max-width: 92vw; height: 380px;
  background: radial-gradient(ellipse, rgba(192,132,252,0.10) 0%, transparent 68%);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}
.cs-inner {
  position: relative; z-index: 1;
  max-width: 540px; width: 100%;
}
.cs-inner .section-tag { justify-content: center; }
.cs-inner .section-tag::after { display: none; }
.cs-inner h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: bold; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.cs-inner h1 .accent { color: var(--accent); }
.cs-body {
  color: var(--muted); font-size: 0.92rem;
  line-height: 1.75; margin-bottom: 2.25rem;
}
.cs-page .notify-form {
  margin: 0 auto 2rem;
  text-align: left;
}
.cs-back {
  display: inline-block;
  font-size: 0.78rem; letter-spacing: 0.05em;
  color: var(--muted); text-decoration: none;
  transition: color 0.15s;
}
.cs-back:hover { color: var(--accent); }
.cs-foot {
  position: relative; z-index: 1;
  margin-top: 3.5rem;
  font-size: 0.7rem; color: var(--muted);
}

@media (max-width: 768px) {
  .notify-form { max-width: none; }
  .notify-row  { flex-direction: column; }
  /* flex-basis becomes HEIGHT once the row is a column — reset it or the
     input renders ~200px tall */
  .notify-input { flex: 1 1 auto; width: 100%; }
  .notify-btn  { width: 100%; }

  /* word-length stat values overflow 390px in a single row */
  .hero-stats { flex-wrap: wrap; gap: 1rem 1.25rem; }
  .stat-num.stat-text { font-size: 0.82rem; padding-top: 0.35rem; }

  .cs-page { padding: 5rem 1.25rem 3rem; }
}
