:root {
  --navy: #0A1628;
  --navy-mid: #111E36;
  --navy-light: #1A2A47;
  --slate: #2A3F5F;
  --steel: #8B9BB4;
  --silver: #C5CED9;
  --white: #F0F4F8;
  --pure-white: #FFFFFF;
  --cyan: #00D4FF;
  --cyan-dim: rgba(0, 212, 255, 0.15);
  --cyan-glow: rgba(0, 212, 255, 0.4);
  --emerald: #00C9A7;
  --emerald-dim: rgba(0, 201, 167, 0.15);
  --amber: #FFB547;
  --amber-dim: rgba(255, 181, 71, 0.12);
  --red-alert: #FF4D6A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── ANIMATED GRID BG ─── */
.grid-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,212,255,0.08);
  transition: all 0.3s ease;
}
nav.scrolled { padding: 0.75rem 0; background: rgba(10, 22, 40, 0.95); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: var(--white);
}
.logo-mark {
  width: 40px; height: 40px; position: relative;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  font-family: var(--font-body);
  font-weight: 700; font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--silver); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--cyan);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--pure-white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--cyan) !important;
  color: var(--cyan) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}
.nav-cta:hover {
  background: var(--cyan) !important;
  color: var(--navy) !important;
  box-shadow: 0 0 30px var(--cyan-glow) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile nav */
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.hero-glow-2 {
  position: absolute; bottom: -30%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,167,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 10s ease-in-out infinite reverse;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px; padding: 0.4rem 1.1rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--cyan); letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fade-up 0.8s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 600; line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s 0.15s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--cyan);
  position: relative;
}
.hero-sub {
  font-size: 1.15rem; line-height: 1.7;
  color: var(--steel); max-width: 560px;
  margin-bottom: 2.5rem;
  animation: fade-up 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fade-up 0.8s 0.45s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cyan);
  color: var(--navy); font-weight: 700;
  padding: 0.9rem 2rem; border-radius: 8px;
  text-decoration: none; font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--cyan-glow);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--silver); font-weight: 600;
  padding: 0.9rem 2rem; border-radius: 8px;
  border: 1px solid var(--slate);
  text-decoration: none; font-size: 0.95rem;
  transition: all 0.3s ease; cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--silver);
  color: var(--pure-white);
  transform: translateY(-2px);
}
.hero-visual {
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  width: 520px; height: 520px;
  animation: fade-in 1.2s 0.5s ease both;
}
.hero-visual img,
.shield-graphic img {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  position: relative; z-index: 2;
  padding: 4rem 0;
  border-top: 1px solid rgba(0,212,255,0.06);
  border-bottom: 1px solid rgba(0,212,255,0.06);
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 3rem;
}
.trust-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--steel);
  font-weight: 600; white-space: nowrap;
}
.trust-items {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--silver); font-size: 0.85rem; font-weight: 500;
  opacity: 0.7; transition: opacity 0.3s;
}
.trust-item:hover { opacity: 1; }
.trust-icon {
  width: 20px; height: 20px; fill: none;
  stroke: var(--cyan); stroke-width: 1.5;
}

/* ─── SECTION SHARED ─── */
section { position: relative; z-index: 2; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--cyan);
  font-weight: 700; margin-bottom: 1rem;
}
.section-label .line {
  width: 24px; height: 1px; background: var(--cyan);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem; color: var(--steel);
  line-height: 1.7; max-width: 600px;
}

/* ─── ABOUT ─── */
.about { padding: 7rem 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-card {
  background: var(--navy-mid);
  border: 1px solid rgba(0,212,255,0.08);
  border-radius: 12px; padding: 1.5rem;
  transition: all 0.3s ease;
}
.stat-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-3px);
}
.stat-num {
  font-family: var(--font-mono);
  font-size: 2rem; font-weight: 700;
  color: var(--cyan); margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.82rem; color: var(--steel);
  font-weight: 500;
}
.about-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.shield-graphic {
  width: 360px; height: 400px;
  position: relative;
}

/* ─── PRODUCTS ─── */
.products {
  padding: 7rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,212,255,0.02) 50%, transparent 100%);
}
.products-header {
  text-align: center; margin-bottom: 4rem;
}
.products-header .section-desc { margin: 0 auto; }
.product-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.product-card {
  background: var(--navy-mid);
  border: 1px solid rgba(0,212,255,0.08);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.product-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}
.product-card.guardian::before { background: linear-gradient(90deg, var(--cyan), var(--emerald)); }
.product-card.aim::before { background: linear-gradient(90deg, var(--amber), var(--red-alert)); }

.product-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.guardian .product-icon { background: var(--cyan-dim); }
.aim .product-icon { background: var(--amber-dim); }
.product-icon svg { width: 28px; height: 28px; }

.product-name {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 600;
  margin-bottom: 0.35rem;
}
.product-tagline {
  font-size: 0.85rem; color: var(--cyan);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 1.25rem;
}
.aim .product-tagline { color: var(--amber); }
.product-desc {
  font-size: 0.95rem; color: var(--steel);
  line-height: 1.7; margin-bottom: 2rem;
}
.product-features { list-style: none; margin-bottom: 2rem; }
.product-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.5rem 0; font-size: 0.9rem;
  color: var(--silver);
}
.feature-check {
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  margin-top: 1px;
}
.guardian .feature-check { background: var(--cyan-dim); color: var(--cyan); }
.aim .feature-check { background: var(--amber-dim); color: var(--amber); }
.feature-check svg { width: 12px; height: 12px; }
.product-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.guardian .product-link { color: var(--cyan); }
.aim .product-link { color: var(--amber); }
.product-link:hover { gap: 0.85rem; }

/* ─── WHY SECTION ─── */
.why { padding: 7rem 0; }
.why-header { margin-bottom: 4rem; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--navy-mid);
  border: 1px solid rgba(0,212,255,0.06);
  border-radius: 14px;
  padding: 2.25rem;
  transition: all 0.3s ease;
}
.why-card:hover {
  border-color: rgba(0,212,255,0.15);
  transform: translateY(-3px);
}
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cyan-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--cyan); fill: none; stroke-width: 1.5; }
.why-card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.88rem; color: var(--steel);
  line-height: 1.65;
}

/* ─── CTA ─── */
.cta-section {
  padding: 7rem 0;
}
.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 24px;
  padding: 5rem;
  text-align: center;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0,212,255,0.06), transparent 50%);
  pointer-events: none;
}
.cta-box .section-title { margin-bottom: 1rem; }
.cta-box .section-desc {
  margin: 0 auto 2.5rem;
  max-width: 640px;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.contact-forms {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
  text-align: left;
}
.form-card {
  background: rgba(10, 22, 40, 0.72);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 16px;
  padding: 2rem;
}
.form-heading {
  margin-bottom: 1.5rem;
}
.form-heading h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.form-heading p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.form-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.form-field span {
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(197, 206, 217, 0.18);
  border-radius: 8px;
  background: rgba(10, 22, 40, 0.86);
  color: var(--white);
  font: inherit;
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}
.form-card button {
  width: 100%;
  justify-content: center;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(0,212,255,0.06);
  padding: 4rem 0 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem; color: var(--steel);
  line-height: 1.6; margin-top: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--silver);
  font-weight: 700; margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  color: var(--steel); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 2rem;
  border-top: 1px solid rgba(0,212,255,0.06);
  font-size: 0.8rem; color: var(--steel);
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: var(--steel); text-decoration: none; }
.footer-legal a:hover { color: var(--silver); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ─── SUCCESS PAGE ─── */
.success-page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.success-panel {
  max-width: 680px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 20px;
  padding: 4rem;
}
.success-panel .section-desc {
  margin-bottom: 2rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .product-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-forms { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 680px) {
  .container,
  .nav-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .nav-links { display: none; }
  nav.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 2rem 1.5rem;
    background: rgba(10, 22, 40, 0.98);
    border-bottom: 1px solid rgba(0,212,255,0.08);
  }
  nav.nav-open .nav-links a {
    display: block;
    padding: 0.8rem 0;
  }
  nav.nav-open .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 2.4rem; }
  .shield-graphic {
    width: min(320px, 100%);
    height: auto;
    aspect-ratio: 360 / 400;
  }
  .cta-box { padding: 3rem 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .success-panel { padding: 3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
