:root {
  --bg: #05070d;
  --bg-panel: #0a0e1a;
  --bg-inset: #0d1220;
  --cyan: #00e5ff;
  --cyan-dim: #0090a3;
  --magenta: #ff2fd0;
  --ink: #eaf6ff;
  --muted: #7c8aa5;
  --line: #1c2740;
  --success: #39ff14;
  --error: #ff3860;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--ink);
  line-height: 1.6;
}

a { color: var(--cyan); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 26, 0.9);
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
}
.navbar .brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--cyan);
  text-decoration: none;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}
.navbar nav { display: flex; align-items: center; gap: 20px; }
.navbar nav a:not(.btn) { color: var(--muted); text-decoration: none; font-size: 14px; }
.navbar nav a:not(.btn):hover { color: var(--ink); }

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--cyan); color: #001014; }
.btn-primary:hover { background: #33ecff; }
.btn-outline { border-color: var(--cyan); color: var(--cyan); background: transparent; }
.btn-outline:hover { background: rgba(0, 229, 255, 0.1); }
.btn-large { padding: 14px 28px; font-size: 16px; }

main { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

.hero { text-align: center; padding: 100px 0 80px; }
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 20px;
  color: var(--ink);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}
.hero-sub { max-width: 640px; margin: 0 auto 36px; color: var(--muted); font-size: 18px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

section { padding: 60px 0; border-top: 1px solid var(--line); }
section h2 { font-size: 28px; margin-bottom: 32px; text-align: center; }

.about-grid, .screenshot-grid, .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.about-card, .testimonial {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.about-card h3 { color: var(--cyan); margin-top: 0; }

.screenshot-grid figure { margin: 0; background: var(--bg-panel); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.screenshot-grid img { width: 100%; display: block; }
.screenshot-grid figcaption { padding: 12px 16px; color: var(--muted); font-size: 14px; }

.testimonial-disclaimer { text-align: center; color: var(--muted); font-size: 13px; margin-top: -20px; margin-bottom: 32px; font-style: italic; }
.testimonial p { font-size: 16px; margin: 0 0 12px; }
.testimonial footer { color: var(--cyan-dim); font-size: 13px; }

.request-access { max-width: 560px; margin: 0 auto; }
.request-access form { display: flex; flex-direction: column; gap: 6px; }
.request-access label { font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 12px; }
.request-access input, .request-access textarea {
  background: var(--bg-inset);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
}
.request-access input:focus, .request-access textarea:focus { outline: none; border-color: var(--cyan); }
.request-access textarea { min-height: 100px; resize: vertical; }
.request-access button { margin-top: 20px; }
#request-access-status { font-size: 14px; min-height: 20px; }
#request-access-status.success { color: var(--success); }
#request-access-status.error { color: var(--error); }

/* Honeypot — visually hidden but still present in the DOM/tab order-free,
   so real screen-reader/keyboard users never encounter it, and bots that
   scan the DOM (not just visible layout) still see and fill an input. */
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--cyan); }
