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

:root {
  --bg: #0B0E16;
  --bg-raised: #0F1219;
  --bg-card: #13171F;
  --border: rgba(255,255,255,0.06);
  --border-md: rgba(255,255,255,0.09);
  --text: #E2E5EF;
  --text-muted: rgba(226,229,239,0.42);
  --text-faint: rgba(226,229,239,0.28);
  --teal: #5DCAA5;
  --teal-dark: #04342C;
  --brand-blue: #1A3A6E;
  --brand-blue-mid: #2A4A8F;
  --brand-light: #90CDF4;
  --amber: #EF9F27;
  --red: #E24B4A;
  --font-serif: 'DM Serif Display', serif;
  --font-mono: 'DM Mono', monospace;
  --font-sans: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 52px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: rgba(11,14,22,0.96);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.nlogo { display: flex; align-items: center; }
.nlinks { display: flex; gap: 2rem; list-style: none; font-size: 13px; color: var(--text-muted); }
.nlinks a:hover { color: var(--text); }
.ncta {
  background: var(--teal); color: var(--teal-dark);
  border: none; padding: 8px 18px; border-radius: 7px;
  font-family: var(--font-sans); font-weight: 600; font-size: 13px;
  cursor: pointer; transition: opacity 0.15s;
}
.ncta:hover { opacity: 0.85; }

/* ─── HERO ────────────────────────────────────────────── */
.hero { padding: 4rem 2rem 3rem; max-width: 860px; margin: 0 auto; text-align: center; }
.hpill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 10px; color: var(--teal);
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(93,202,165,0.25); padding: 5px 14px;
  border-radius: 20px; margin-bottom: 1.5rem;
}
.hpd { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* Rotating tagline */
.htitle-wrap { min-height: 130px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.htitle {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08; letter-spacing: -1px; color: var(--text);
  transition: opacity 0.6s ease;
}
.htitle i { font-style: italic; color: var(--brand-light); }
.htitle.fade { opacity: 0; }

.hsub { font-size: 15px; color: var(--text-muted); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.7; font-weight: 300; }
.hbtns { display: flex; gap: 10px; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hbp {
  background: var(--teal); color: var(--teal-dark); border: none;
  padding: 12px 26px; border-radius: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: opacity 0.15s;
}
.hbp:hover { opacity: 0.85; }
.hbg {
  background: transparent; color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 26px; border-radius: 8px;
  font-family: var(--font-sans); font-size: 14px;
  cursor: pointer; transition: border-color 0.15s, color 0.15s;
}
.hbg:hover { border-color: rgba(255,255,255,0.25); color: var(--text); }

.hero-img-wrap { width: 100%; }
.hero-img { width: 100%; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; display: block; }
.hero-ph {
  background: #13171F; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; min-height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 3rem;
}
.hero-ph-label { font-family: var(--font-mono); font-size: 10px; color: rgba(226,229,239,0.35); letter-spacing: 0.1em; text-transform: uppercase; }
.hero-ph-path { font-family: var(--font-mono); font-size: 12px; color: var(--teal); opacity: 0.8; }
.hero-ph-note { font-size: 12px; color: rgba(226,229,239,0.22); margin-top: 2px; }

/* ─── LAYOUT ──────────────────────────────────────────── */
.hdivider { height: 1px; background: rgba(255,255,255,0.05); margin: 0 2rem; }
.section { padding: 3.5rem 2rem; max-width: 960px; margin: 0 auto; }
.seclabel { font-family: var(--font-mono); font-size: 10px; color: var(--text-faint); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; display: block; }
.sectitle { font-family: var(--font-serif); font-size: 28px; color: var(--text); line-height: 1.2; margin-bottom: 0.75rem; }
.secdesc { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 480px; margin-bottom: 1.5rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.scr-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.scr-wrap { display: flex; flex-direction: column; gap: 8px; }
.scr-img { width: 100%; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; display: block; }
.scr-caption { font-size: 11px; color: var(--text-faint); font-family: var(--font-mono); text-align: center; }
.ph {
  background: #13171F; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 2rem 1.5rem; min-height: 200px;
}
.ph.tall { min-height: 260px; }
.ph-label { font-family: var(--font-mono); font-size: 10px; color: rgba(226,229,239,0.35); letter-spacing: 0.1em; text-transform: uppercase; }
.ph-path { font-family: var(--font-mono); font-size: 11px; color: var(--teal); opacity: 0.8; }
.ph::after, .hero-ph::after {
  content: 'Coming soon';
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-dark); background: var(--teal);
  padding: 3px 10px; border-radius: 20px; margin-top: 6px;
}

/* ─── FEATURE GRID ────────────────────────────────────── */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
  overflow: hidden; margin-top: 2.5rem;
}
.fc { background: var(--bg); padding: 1.25rem; position: relative; }
.fic { width: 28px; height: 28px; background: rgba(26,58,110,0.3); border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.ftit { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.fdsc { font-size: 12px; color: rgba(226,229,239,0.38); line-height: 1.55; }
.fbadge { display: inline-block; font-family: var(--font-mono); font-size: 9px; color: var(--teal-dark); background: var(--teal); padding: 2px 7px; border-radius: 10px; margin-bottom: 7px; letter-spacing: 0.04em; }

/* ─── PRICING ─────────────────────────────────────────── */
.pricing-section { text-align: center; }
.pricing-sub { font-size: 12px; color: var(--text-faint); font-family: var(--font-mono); margin-bottom: 0; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 1.5rem; }
.plan { background: var(--bg-raised); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 1.25rem; position: relative; text-align: left; overflow: hidden; }
.plan.star { border: 1px solid rgba(144,205,244,0.35); }
.plan.pro { opacity: 0.8; }

.planbadge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--teal-dark); font-size: 9px; font-weight: 700; padding: 2px 11px; border-radius: 20px; white-space: nowrap; font-family: var(--font-mono); }
.planname { font-size: 10px; color: rgba(226,229,239,0.3); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); margin-bottom: 6px; }
.planprice { font-family: var(--font-serif); font-size: 34px; color: var(--text); line-height: 1; }
.planmo { font-size: 13px; font-family: var(--font-sans); color: rgba(226,229,239,0.35); }
.planperiod { font-size: 10px; color: rgba(226,229,239,0.25); margin-bottom: 1rem; font-family: var(--font-mono); }
.planfeats { list-style: none; font-size: 11px; color: rgba(226,229,239,0.5); display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.1rem; }
.planfeats li { display: flex; align-items: flex-start; gap: 6px; }
.planfeats li::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 4px; }
.planbtn { width: 100%; padding: 9px; border-radius: 6px; font-family: var(--font-sans); font-size: 12px; font-weight: 500; cursor: pointer; border: 1px solid rgba(255,255,255,0.09); background: transparent; color: rgba(226,229,239,0.5); transition: background 0.15s, color 0.15s; }
.planbtn:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.planbtn.pri { background: var(--brand-blue); color: var(--brand-light); border: 1px solid rgba(144,205,244,0.25); font-weight: 600; }
.planbtn.pri:hover { opacity: 0.88; }

/* Pro coming soon */
.pro-banner {
  background: var(--brand-blue);
  border-bottom: 1px solid rgba(144,205,244,0.2);
  margin: -1.25rem -1.25rem 1rem -1.25rem;
  padding: 8px 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pro-banner-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand-light); animation: blink 1.5s infinite; }
.pro-banner-text { font-family: var(--font-mono); font-size: 11px; color: var(--brand-light); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }

/* Redacted feature bars */
.redacted { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(226,229,239,0.3); }
.redacted::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: rgba(144,205,244,0.25); flex-shrink: 0; margin-top: 1px; }
.redact-bar { display: inline-block; background: rgba(144,205,244,0.12); border: 1px solid rgba(144,205,244,0.08); border-radius: 3px; height: 11px; vertical-align: middle; }

/* ─── REQUEST FORM ────────────────────────────────────── */
.request-section { text-align: center; }
.req-sub { font-size: 13px; color: rgba(226,229,239,0.35); max-width: 420px; margin: 0 auto; line-height: 1.65; }
.reqcard { background: var(--bg-raised); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 1.75rem; max-width: 600px; margin: 1.5rem auto 0; text-align: left; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.frow.full { grid-template-columns: 1fr; }
.fl { display: block; font-size: 9px; color: rgba(226,229,239,0.3); letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-mono); margin-bottom: 5px; }
.fi { width: 100%; background: var(--bg); border: 1px solid rgba(255,255,255,0.09); border-radius: 7px; padding: 9px 11px; font-family: var(--font-sans); font-size: 13px; color: var(--text); outline: none; transition: border-color 0.15s; }
.fi:focus { border-color: rgba(144,205,244,0.35); }
.fi::placeholder { color: rgba(226,229,239,0.2); }
select.fi option { background: var(--bg); }
textarea.fi { resize: none; height: 64px; line-height: 1.5; }
.submitbtn { width: 100%; margin-top: 14px; background: var(--brand-blue); color: var(--brand-light); border: 1px solid rgba(144,205,244,0.2); padding: 12px; border-radius: 7px; font-family: var(--font-sans); font-weight: 600; font-size: 14px; cursor: pointer; transition: opacity 0.15s; }
.submitbtn:hover { opacity: 0.88; }
.submitbtn:disabled { opacity: 0.5; cursor: not-allowed; }
.finefine { text-align: center; font-size: 10px; color: rgba(226,229,239,0.18); margin-top: 9px; font-family: var(--font-mono); letter-spacing: 0.05em; }

/* ─── FORM OVERLAY ────────────────────────────────────── */
.reqcard-wrap { position: relative; max-width: 600px; margin: 1.5rem auto 0; }
.reqcard-wrap .reqcard { margin: 0; }
.reqcard-overlay {
  position: absolute; inset: 0; z-index: 10;
  background: rgba(11,14,22,0.72);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.reqcard-overlay-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.reqcard-overlay-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); display: block; animation: blink 2s infinite; }
.reqcard-overlay-text { font-family: var(--font-mono); font-size: 13px; color: var(--text); letter-spacing: 0.08em; text-transform: uppercase; }
.reqcard-overlay-sub { font-size: 12px; color: var(--text-muted); max-width: 240px; line-height: 1.6; }

/* ─── FOOTER ──────────────────────────────────────────── */
.footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(226,229,239,0.2); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 700px) {
  .nav { padding: 0 1rem; }
  .nlinks { display: none; }
  .hero { padding: 3rem 1rem 2rem; }
  .htitle-wrap { min-height: 160px; }
  .section { padding: 2.5rem 1rem; }
  .hdivider { margin: 0 1rem; }
  .two-col { grid-template-columns: 1fr; }
  .scr-pair { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 8px; text-align: center; }
}
