@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --bg: #04070f;
  --surface: rgba(255,255,255,.04);
  --surface2: rgba(255,255,255,.07);
  --line: rgba(255,255,255,.09);
  --line2: rgba(0,212,255,.15);
  --text: #e8f4ff;
  --muted: #7a9ab8;
  --muted2: #4a6a88;
  --brand: #00d4ff;
  --brand-dim: rgba(0,212,255,.12);
  --green: #00ff88;
  --green-dim: rgba(0,255,136,.1);
  --amber: #ffb800;
  --danger: #ff4466;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0,0,0,.6);
  --glow: 0 0 40px rgba(0,212,255,.15);
  --max: 1200px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none; opacity: .6;
}

.grid-bg {
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  pointer-events: none;
}

.glow-1 {
  position: fixed; top: -20%; left: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
  animation: floatGlow 8s ease-in-out infinite;
}
.glow-2 {
  position: fixed; top: 10%; right: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,255,136,.08) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
  animation: floatGlow 11s ease-in-out infinite reverse;
}
.glow-3 {
  position: fixed; bottom: 0; left: 30%; width: 500px; height: 400px;
  background: radial-gradient(circle, rgba(255,184,0,.06) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(30px,20px); }
}

@keyframes pulse {
  0%, 100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(.8); }
}

@keyframes scanLine {
  0% { top: -2px; }
  100% { top: 102%; }
}

header, main, footer { position: relative; z-index: 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4,7,15,.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }

.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 22px; letter-spacing: .08em;
}
.brand-icon {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, #00d4ff, #0088cc);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(0,212,255,.35); position: relative; overflow: hidden; flex-shrink: 0;
}
.brand-icon::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent);
}
.brand-icon svg { width: 20px; height: 20px; }

.navlinks { display: flex; gap: 4px; align-items: center; }
.navlinks a {
  color: var(--muted); font-weight: 500; font-size: 14px;
  padding: 7px 13px; border-radius: 10px;
  transition: color .2s, background .2s;
}
.navlinks a:hover, .navlinks a.active { color: var(--text); background: rgba(255,255,255,.05); }
.navlinks a.active { color: var(--brand); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.menu-btn { display: none; background: none; border: 1px solid var(--line); color: var(--text); padding: 8px 14px; border-radius: 10px; cursor: pointer; font-family: var(--font-body); font-size: 14px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 18px; border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text); font-weight: 600; font-size: 14px;
  font-family: var(--font-body); cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, #00aadd, #0066aa);
  border-color: rgba(0,212,255,.4);
  box-shadow: 0 0 24px rgba(0,212,255,.2); color: #fff;
}
.btn.primary:hover { box-shadow: 0 0 36px rgba(0,212,255,.35); }
.btn.green {
  background: linear-gradient(135deg, #00cc70, #008844);
  border-color: rgba(0,255,136,.35);
  box-shadow: 0 0 20px rgba(0,255,136,.15); color: #fff;
}
.btn.green:hover { box-shadow: 0 0 32px rgba(0,255,136,.3); }
.btn.ghost { background: transparent; }
.btn.lg { padding: 14px 28px; font-size: 16px; border-radius: 14px; }
.btn.sm { padding: 7px 13px; font-size: 13px; border-radius: 9px; }

/* ── CARDS ── */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.card.glowing { box-shadow: var(--shadow), var(--glow); }

/* ── TYPOGRAPHY ── */
.section { padding: 80px 0; }
.kicker {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px;
}
h2 {
  font-family: var(--font-display); font-size: 52px; line-height: 1; letter-spacing: .01em;
  background: linear-gradient(135deg, #fff 30%, #a0c8e0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 560px; margin-bottom: 48px;
}
hr.sep { border: none; border-top: 1px solid var(--line); margin: 20px 0; }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(0,212,255,.05);
  color: var(--muted); font-size: 13px; font-weight: 500;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); opacity: .7; }

/* ── PILL BADGE ── */
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.2);
  border-radius: 999px; padding: 6px 14px;
  font-size: 12px; font-weight: 700; color: var(--brand);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px;
  font-family: var(--font-mono);
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 8px var(--brand); animation: pulse 2s ease-in-out infinite;
}

/* ── FOOTER ── */
footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted2); font-size: 13px; font-family: var(--font-mono); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── FORMS ── */
.field { display: flex; flex-direction: column; gap: 6px; }
label { font-weight: 600; font-size: 13px; color: var(--muted); }
label span.req { color: var(--danger); margin-left: 3px; }
input, select, textarea {
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  color: var(--text); border-radius: 12px; padding: 12px 14px;
  outline: none; font-family: var(--font-body); font-size: 14px;
  transition: border-color .2s, background .2s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--muted2); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(0,212,255,.5); background: rgba(0,212,255,.04);
}
select option { background: #0d1929; color: var(--text); }
textarea { min-height: 100px; resize: vertical; }
.form-error { font-size: 12px; color: var(--danger); font-weight: 700; margin-top: 3px; }
.form-hint { font-size: 12px; color: var(--muted2); margin-top: 3px; }

/* File upload */
.file-upload {
  border: 2px dashed rgba(0,212,255,.2); border-radius: 14px;
  padding: 24px; text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s;
  background: rgba(0,212,255,.02);
}
.file-upload:hover { border-color: rgba(0,212,255,.45); background: rgba(0,212,255,.05); }
.file-upload input { display: none; }
.file-upload-label { cursor: pointer; display: block; }
.file-upload-icon { font-size: 28px; margin-bottom: 8px; }
.file-upload-text { color: var(--muted); font-size: 13px; }
.file-upload-text strong { color: var(--brand); }

/* Checkbox */
.check-field { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.check-field input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px; border-radius: 6px;
  accent-color: var(--brand); cursor: pointer; margin-top: 1px;
}
.check-field .check-label { font-size: 14px; color: var(--muted); line-height: 1.5; }
.check-field .check-label strong { color: var(--text); }

/* Radio group */
.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
  cursor: pointer; transition: border-color .2s, background .2s;
  font-size: 14px; font-weight: 500;
}
.radio-pill input { display: none; }
.radio-pill:has(input:checked) {
  border-color: rgba(0,212,255,.45); background: rgba(0,212,255,.08); color: var(--brand);
}
.radio-pill:hover { border-color: rgba(0,212,255,.3); background: rgba(0,212,255,.05); }

/* Form section divider */
.form-section-title {
  font-family: var(--font-display); font-size: 22px; letter-spacing: .04em;
  color: var(--text); margin-bottom: 4px; margin-top: 8px;
}
.form-section-sub { color: var(--muted); font-size: 13px; margin-bottom: 20px; }

/* ── PAGE HEADER ── */
.page-header { padding: 64px 0 40px; }
.page-header h1 {
  font-family: var(--font-display); font-size: 68px; line-height: .95;
  background: linear-gradient(135deg, #fff 0%, #a0c8e0 60%, #00d4ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}
.page-header p { color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 560px; }

/* Trust cards */
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.trust-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  transition: border-color .3s, transform .3s;
}
.trust-card:hover { border-color: rgba(0,212,255,.2); transform: translateY(-3px); }
.trust-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.trust-card-icon.cyan { background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.2); }
.trust-card-icon.green { background: rgba(0,255,136,.1); border: 1px solid rgba(0,255,136,.2); }
.trust-card-icon.amber { background: rgba(255,184,0,.1); border: 1px solid rgba(255,184,0,.2); }
.trust-card-icon.red { background: rgba(255,68,102,.1); border: 1px solid rgba(255,68,102,.2); }
.trust-card h3 { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.trust-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* FAQ */
details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden; transition: border-color .3s;
}
details[open] { border-color: rgba(0,212,255,.25); }
summary {
  cursor: pointer; padding: 18px 20px; font-weight: 700; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; transition: color .2s;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--brand); }
summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--muted); transition: transform .3s, color .3s; }
details[open] summary::after { transform: rotate(45deg); color: var(--brand); }
details p, details div.faq-body { padding: 0 20px 18px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .page-header h1 { font-size: 48px; }
  h2 { font-size: 38px; }
  .trust-grid { grid-template-columns: 1fr; }
  .navlinks { display: none; }
  .navlinks.open {
    display: flex; flex-direction: column; gap: 8px;
    position: absolute; left: 0; right: 0; top: 70px;
    padding: 16px 24px; background: rgba(4,7,15,.97);
    border-bottom: 1px solid var(--line); z-index: 200;
  }
  .menu-btn { display: inline-flex; }
  .nav-cta .btn:not(.menu-btn):not(.primary) { display: none; }
}