/* public/styles.css (DROP-IN READY FULL FILE)
   - Fixes background "banding" by moving glows to html pseudo elements
   - Improves native form control dark mode rendering
   - NOTE: Windows Chrome/Edge may still render the OPENED select menu (options list)
     with OS colors. The control itself will match theme; for fully themed dropdowns,
     use a custom select component.
*/

:root{
  --bg:#070A12;
  --card:#0B1020;
  --text:#EAF0FF;
  --muted:#AAB6DA;
  --line:rgba(255,255,255,.10);
  --accent:#7C5CFF;
  --accent2:#22D3EE;
  --good:#34D399;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --r:18px;
  --r2:26px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}

/* Helps browsers render native controls in dark mode */
html{
  color-scheme: dark;
}

/* FIX: background "bands" — make glows fixed and behind everything */
html::before,
html::after{
  content:"";
  position: fixed;
  inset: -20vh -20vw;
  pointer-events:none;
  z-index:-1;
  filter: blur(70px);
  opacity: .22;
  transform: translateZ(0);
}
html::before{
  background:
    radial-gradient(900px 520px at 20% 12%, rgba(124,92,255,.35), transparent 60%),
    radial-gradient(820px 520px at 80% 6%, rgba(34,211,238,.28), transparent 58%);
}
html::after{
  background:
    radial-gradient(900px 700px at 60% 110%, rgba(52,211,153,.18), transparent 60%);
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background: var(--bg);
  overflow-x:hidden;
  position:relative;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Header / Nav */
.header{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid rgba(255,255,255,.06);
  background: rgba(7,10,18,.62);
  backdrop-filter: blur(12px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 240px}
.logo{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(124,92,255,.35);
  background:#000;
  box-shadow: 0 12px 25px rgba(124,92,255,.22);
  overflow:hidden;
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.logo-img{width:100%;height:100%;object-fit:cover;display:block}
.logo-fallback{
  position:absolute;
  inset:0;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  color: rgba(7,10,18,.92);
  letter-spacing:.4px;
}
.brand-text{display:flex; flex-direction:column; gap:2px}
.brand-name{font-weight:850; letter-spacing:.2px; font-size:15px}
.brand-sub{color:var(--muted); font-weight:600; font-size:12px}

.links{display:flex; gap:12px; align-items:center}
.links a{
  color:var(--muted);
  font-size:14px;
  padding:10px 10px;
  border-radius:10px;
  transition:.15s ease;
}
.links a:hover{color:var(--text); background:rgba(255,255,255,.04)}

.nav-cta{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:750;
  font-size:14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18)}
.btn-primary{
  border:none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#071018;
  box-shadow: 0 16px 40px rgba(124,92,255,.18);
}
.btn-primary:hover{filter:brightness(1.04)}
.btn-ghost{background:transparent}
.btn-small{padding:9px 12px; font-size:13px}

/* Hero */
.hero{padding:56px 0 24px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:26px;
  align-items:stretch;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:14px;
  backdrop-filter: blur(8px);
}
.mini-pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background:rgba(0,0,0,.18);
  color:var(--muted);
  font-size:13px;
}
.pill-dot{
  width:10px;height:10px;border-radius:999px;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  box-shadow:0 0 0 4px rgba(124,92,255,.15);
}
.headline{
  margin:14px 0 12px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.02;
  letter-spacing:-.7px;
}
.subhead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
  line-height:1.55;
  max-width: 58ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 0}
.checks{margin:14px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.checks li{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-size:14px; line-height:1.45}
.check{
  width:18px;height:18px;border-radius:6px;
  background: rgba(52,211,153,.12);
  border:1px solid rgba(52,211,153,.30);
  color: var(--good);
  display:inline-flex; align-items:center; justify-content:center;
  flex:0 0 auto;
  margin-top:1px;
  font-weight:900;
}

/* Hero Card */
.hero-card{
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(600px 260px at 20% 0%, rgba(124,92,255,.25), transparent 50%),
    radial-gradient(500px 240px at 80% 10%, rgba(34,211,238,.18), transparent 55%);
  pointer-events:none;
}
.hero-card > *{position:relative}
.info-rows{display:grid; gap:12px; margin-top:12px}
.info-row{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:16px;
  padding:14px;
  border-radius:16px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
}
.info-title{font-size:13px; font-weight:850}
.info-sub{margin-top:6px; color:var(--muted); font-size:13px; line-height:1.35}
.badge{
  font-size:12px; font-weight:850;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  white-space:nowrap;
}
.hero-card-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
.hint{margin:12px 2px 0; color:var(--muted); font-size:12px; line-height:1.45}
code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

/* Sections */
.section{padding: 38px 0}
.section h2{margin:0 0 10px; font-size:26px; letter-spacing:-.3px}
.lead{margin:0 0 20px; color:var(--muted); max-width:70ch; line-height:1.55}
.lead-sm{margin:0 0 14px; color:var(--muted); line-height:1.55}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  padding:18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  position:relative;
  overflow:hidden;
  min-height: 170px;
}
.card::after{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(420px 220px at 20% 0%, rgba(124,92,255,.12), transparent 55%);
  pointer-events:none;
}
.card > *{position:relative}
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px; border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  font-size:12px; color: var(--muted);
  margin-bottom:10px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0 0 12px; color:var(--muted); font-size:14px; line-height:1.5}
.price{display:flex; align-items:baseline; gap:10px; margin-top:auto}
.price strong{font-size:22px}
.price span{color:var(--muted); font-size:13px}

/* Pricing panels */
.split{display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:stretch}
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r2);
  padding:18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.fineprint{margin:14px 0 0; color:rgba(170,182,218,.85); font-size:12px}

/* About mini cards */
.mini-cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.mini-card{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r);
  padding:18px;
}
.mini-card h3{margin:0 0 8px; font-size:16px}
.mini-card p{margin:0; color:var(--muted); font-size:14px; line-height:1.5}

/* Contact */
.contact-grid{display:grid; grid-template-columns:.9fr 1.1fr; gap:14px}
.kv{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  border-radius:16px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
  margin-top:10px;
}
.kv-label{color:var(--muted); font-size:13px}
.kv-value{font-weight:850}

.row{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.field{display:grid; gap:6px}
label{font-size:12px; color: var(--muted)}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline:none;
  color-scheme: dark; /* helps native widgets */
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(124,92,255,.55);
  box-shadow: 0 0 0 4px rgba(124,92,255,.18);
}
textarea{min-height:110px; resize:vertical}
.form-actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-top:6px}
.micro{color:var(--muted); font-size:12px}

/* Footer */
.footer{
  padding:24px 0 38px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-row{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footer-brand{font-weight:900; letter-spacing:.2px; color:var(--text)}
.footer-sub{font-size:12px; color:rgba(170,182,218,.85)}
.footer-sub a{text-decoration:underline; text-underline-offset:4px}

/* Toast */
.toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform: translateX(-50%);
  background: rgba(10,14,28,.88);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition: .18s ease;
  font-size: 13px;
  z-index: 999;
  backdrop-filter: blur(10px);
}
.toast.show{opacity:1; transform: translateX(-50%) translateY(-2px)}
.toast.bad{border-color: rgba(255,90,90,.55);}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .mini-cards{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .links{display:none}
}
@media (max-width: 520px){
  .row{grid-template-columns:1fr}
  .brand{min-width:auto}
}

/* Keep select control itself consistent (the opened dropdown list may remain OS-styled on Windows) */
select{
  background-color: rgba(14, 18, 28, 0.72);
  color: rgba(240, 245, 255, 0.95);
  border: 1px solid rgba(140, 155, 255, 0.28);
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select:focus{
  border-color: rgba(140, 155, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(120, 140, 255, 0.18);
}
select option{
  background-color: #0b0f17 !important;
  color: rgba(240, 245, 255, 0.95) !important;
}
select option:checked{
  background-color: rgba(96, 120, 255, 0.35) !important;
  color: rgba(255, 255, 255, 0.98) !important;
}
select:-moz-focusring{
  color: transparent;
  text-shadow: 0 0 0 rgba(240, 245, 255, 0.95);
}

/* =========================================================
   Cleaner background transitions (keep gradients, reduce banding)
   ========================================================= */

/* Keep your current body background, but smooth it */
/* =========================================================
   REMOVE STRIPE GRAIN + USE CLEAN NOISE + VIGNETTE
   (fixes visible horizontal/vertical lines)
   ========================================================= */

/* Replace the stripe-based overlay entirely */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* 1) Soft vignette (no banding) */
  background:
    radial-gradient(1100px 700px at 50% -10%, rgba(0,0,0,.35), transparent 60%),
    radial-gradient(1100px 700px at 50% 115%, rgba(0,0,0,.45), transparent 60%);

  opacity: .70;
  mix-blend-mode: normal;
}

/* Add real-ish noise using an SVG turbulence filter (no stripes) */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* Inline SVG noise */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  background-repeat: repeat;

  opacity: .14;           /* keep subtle */
  mix-blend-mode: overlay;/* adds texture without lines */
  transform: translateZ(0);
}

/* Make sure all page content stays above overlays */
body > *{
  position: relative;
  z-index: 1;
}
/* FAQ */
.faq-list{display:flex;flex-direction:column;gap:8px;max-width:760px;margin:0 auto}
.faq-item{border:1px solid rgba(255,255,255,.1);border-radius:12px;background:rgba(255,255,255,.03);overflow:hidden}
.faq-item summary{padding:16px 20px;font-weight:600;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:12px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'＋';font-size:1.1rem;opacity:.6;flex-shrink:0}
.faq-item[open] summary::after{content:'－'}
.faq-item p{padding:0 20px 16px;margin:0;opacity:.8;line-height:1.6}
