/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #0f172a;
  --navy-light:  #1e293b;
  --navy-mid:    #334155;
  --amber:       #f59e0b;
  --amber-hover: #fbbf24;
  --amber-dark:  #d97706;
  --amber-soft:  #fffbeb;
  --amber-border:#fcd34d;
  --amber-text:  #92400e;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --gray-900:    #0f172a;
  --green-soft:  #f0fdf4;
  --green-border:#86efac;
  --green-text:  #166534;
  --teal:        #0d9488;
  --font-sans:   -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-width:   1200px;
  --content-width: 780px;
  --shadow-sm:   0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg:   0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--amber-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--amber); }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--amber);
  color: var(--navy);
  padding: 8px 16px;
  z-index: 100;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== NAVIGATION ===== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--amber); }
.nav-logo svg { width: 30px; height: 30px; flex-shrink: 0; }
.nav-logo .logo-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 2px;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links .nav-cta {
  background: var(--amber);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 7px 16px;
}
.nav-links .nav-cta:hover {
  background: var(--amber-hover);
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 60%, var(--navy-light) 100%);
  color: var(--white);
  padding: clamp(72px, 11vw, 130px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(245,158,11,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero h1 {
  font-size: clamp(30px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero .subtitle {
  font-size: clamp(16px, 2.2vw, 21px);
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 18px rgba(245,158,11,0.35);
}
.btn-primary:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
  color: var(--navy);
}

.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.hero-trust {
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-trust svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section {
  padding: clamp(56px, 7vw, 96px) 24px;
}
.section--alt   { background: var(--gray-50); }
.section--dark  { background: var(--navy); color: var(--white); }
.section--amber { background: linear-gradient(135deg, var(--amber-dark) 0%, var(--amber) 100%); color: var(--navy); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 10px;
}
.section--dark .section-label { color: var(--amber); }

.section-title {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section--dark .section-title { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.section--dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ===== PROBLEM STRIP ===== */
.problem-strip {
  background: var(--navy-light);
  padding: clamp(32px, 4vw, 52px) 24px;
}
.problem-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
}
.problem-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
}
.problem-item:last-child { border-right: none; }
.problem-stat {
  font-size: 40px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.problem-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 8px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.product-card--flagship {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), var(--shadow-md);
}
.product-card--flagship:hover {
  box-shadow: 0 0 0 1px var(--amber-hover), var(--shadow-lg);
}
.product-card--coming-soon {
  opacity: 0.9;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.product-badge--flagship {
  background: var(--amber-soft);
  color: var(--amber-text);
  border: 1px solid var(--amber-border);
}
.product-badge--soon {
  background: var(--gray-100);
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.product-icon--flagship { background: var(--amber-soft); }
.product-icon--soon     { background: var(--gray-100); }
.product-icon svg { width: 28px; height: 28px; }

.product-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.product-domain {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.product-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  margin-bottom: 28px;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 10px;
}
.product-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}
.product-card--coming-soon .product-features li svg { color: var(--gray-300); }

.btn-product {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, color 0.2s;
}
.btn-product--flagship {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 3px 12px rgba(245,158,11,0.3);
}
.btn-product--flagship:hover {
  background: var(--amber-hover);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn-product--soon {
  background: var(--gray-100);
  color: var(--gray-400);
  cursor: default;
  pointer-events: none;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-dark) 100%);
  opacity: 0.2;
}

.step-item {
  padding: 0 24px;
  text-align: center;
}
.step-number {
  width: 72px;
  height: 72px;
  background: var(--navy);
  color: var(--amber);
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--amber);
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== WHO IT'S FOR ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.audience-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: background 0.2s, border-color 0.2s;
}
.audience-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,158,11,0.3);
}
.audience-icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}
.audience-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.audience-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== MISSION SECTION ===== */
.mission-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.mission-quote {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.mission-quote em {
  font-style: normal;
  color: var(--amber-dark);
}
.mission-body {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
  padding: clamp(56px, 7vw, 96px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(245,158,11,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; }
.cta-banner h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px 32px;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand .brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.footer-brand .brand-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
  line-height: 1.5;
}
.footer-links-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 9px; }
.footer-links-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--amber); }
.footer-links-inline {
  display: flex;
  gap: 20px;
}

/* ===== NOTIFY FORM (RiskScent waitlist) ===== */
.notify-form {
  margin-top: 8px;
}
.notify-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notify-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-sans);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.notify-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}
.notify-input::placeholder { color: var(--gray-400); }
.notify-btn {
  width: 100%;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s;
}
.notify-btn:hover { background: var(--navy-mid); }
.notify-btn:disabled { opacity: 0.6; cursor: default; }
.notify-status {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  min-height: 20px;
}
.notify-status.success { color: var(--green-text); }
.notify-status.error   { color: #dc2626; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 10px 14px; }
  .nav-toggle { display: flex; }

  .problem-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .problem-item:last-child { border-bottom: none; }

  .steps-grid::before { display: none; }
  .step-item { padding: 0 12px 32px; }

  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-ghost, .btn-primary { width: 100%; max-width: 340px; text-align: center; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links-inline { justify-content: center; }

  .score-bands-mini { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
}
