/* ============================================================
   claimapproved.ai  ·  Investor / Partner Landing Page CSS
   Brand: Navy #0E2A5A · Blue #1E7BE8 · Green #2FA37E
   Fonts: Manrope 800 (headings) · Inter 400/500/600 (body)
   ============================================================ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --navy:          #0E2A5A;
  --navy-deep:     #070f1f;
  --navy-mid:      #0c1e42;
  --blue:          #1E7BE8;
  --blue-light:    #4f9ef5;
  --blue-dim:      rgba(30,123,232,.18);
  --green:         #2FA37E;
  --green-dark:    #1f7a5e;
  --green-dim:     rgba(47,163,126,.18);
  --gold:          #f0b429;
  --ink:           #0f172a;
  --muted:         #64748b;
  --surface:       #f8fafc;
  --surface-2:     #f1f5f9;
  --line:          #e2e8f0;
  --white:         #ffffff;

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     28px;
  --radius-xl:     40px;

  --shadow-sm:     0 1px 3px rgba(14,42,90,.08), 0 1px 2px rgba(14,42,90,.06);
  --shadow-md:     0 4px 16px rgba(14,42,90,.12), 0 2px 6px rgba(14,42,90,.08);
  --shadow-lg:     0 12px 40px rgba(14,42,90,.18), 0 4px 12px rgba(14,42,90,.10);
  --shadow-glow-blue:  0 0 48px rgba(30,123,232,.28);
  --shadow-glow-green: 0 0 48px rgba(47,163,126,.22);

  --max-w:         1140px;
  --section-py:    clamp(72px, 9vw, 120px);
}

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

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

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 700; }
p  { font-size: clamp(0.95rem, 1.6vw, 1.0625rem); color: var(--muted); line-height: 1.75; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
section { padding-block: var(--section-py); }

/* ── Nav ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 16px;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.site-nav.scrolled {
  background: rgba(7,15,31,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 32px; width: auto; }
.nav-wordmark {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}
.nav-wordmark span:nth-child(1) { color: rgba(255,255,255,.95); }
.nav-wordmark span:nth-child(2) { color: var(--blue-light); }
.nav-wordmark span:nth-child(3) { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: color 0.2s;
}
.nav-links a:hover { color: rgba(255,255,255,1); }
@media (max-width: 680px) { .nav-links { display: none; } }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #1557b0 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,123,232,.40);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(30,123,232,.55);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.22);
}
.btn-outline:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.4);
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(47,163,126,.38);
}
.btn-green:hover {
  box-shadow: 0 8px 32px rgba(47,163,126,.52);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: #f0f6ff; }

.btn-lg {
  padding: 18px 36px;
  font-size: 1.0625rem;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--navy-deep);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-block: 130px 90px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(30,123,232,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(47,163,126,.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(30,123,232,.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 860px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  background: rgba(30,123,232,.12);
  border: 1px solid rgba(30,123,232,.28);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.65; transform:scale(1.35); }
}

.hero h1 {
  color: var(--white);
  max-width: 20ch;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,.65) !important;
  max-width: 58ch;
  font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
  line-height: 1.7 !important;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-block-start: 8px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  font-size: 0.8125rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-proof-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.15);
}
@media (max-width: 580px) { .hero-proof-divider { display: none; } }

.hero-scroll {
  position: absolute;
  inset-block-end: 32px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.28);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll svg { animation: bounce-y 2.2s ease-in-out infinite; }
@keyframes bounce-y {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

/* ── TAM Stats ───────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-block: 1px solid rgba(255,255,255,.05);
}
.stats-bar > .container {
  padding-block: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stat-item {
  padding: 40px 28px;
  text-align: center;
  border-inline-end: 1px solid rgba(255,255,255,.07);
  transition: background 0.2s;
}
.stat-item:last-child { border-inline-end: none; }
.stat-item:hover { background: rgba(255,255,255,.03); }
.stat-number {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-block-end: 8px;
}
.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.stat-source {
  display: block;
  font-size: 0.675rem;
  color: rgba(255,255,255,.2);
  margin-block-start: 5px;
}

/* ── Problem ─────────────────────────────────────────────── */
.problem-section { background: var(--surface); }
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-block-end: 14px;
}
.section-header {
  max-width: 56ch;
  margin-block-end: 60px;
}
.section-header h2 { color: var(--ink); margin-block-end: 14px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,123,232,.2);
}
.problem-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-block-end: 24px;
  font-size: 1.5rem;
}
.problem-icon.red   { background: #fee2e2; }
.problem-icon.amber { background: #fef3c7; }
.problem-icon.blue  { background: #dbeafe; }
.problem-icon.green { background: #d1fae5; }
.problem-card h3 { color: var(--ink); margin-block-end: 10px; }

/* ── What We Built ───────────────────────────────────────── */
.built-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.built-section::before {
  content: '';
  position: absolute;
  inset-block-start: -200px;
  inset-inline-end: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30,123,232,.08) 0%, transparent 65%);
  pointer-events: none;
}
.built-section .section-eyebrow { color: var(--blue-light); }
.built-section .section-header h2 { color: var(--white); }
.built-section .section-header p  { color: rgba(255,255,255,.52); }

.built-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.built-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: background 0.2s, border-color 0.2s;
}
.built-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(30,123,232,.25);
}
.built-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-block-end: 16px;
  padding: 4px 10px;
  border-radius: 100px;
}
.status-done {
  background: rgba(47,163,126,.15);
  color: #4ade80;
  border: 1px solid rgba(47,163,126,.25);
}
.status-done::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
}
.built-card h3 { color: var(--white); margin-block-end: 10px; font-size: 1.05rem; }
.built-card p  { color: rgba(255,255,255,.46); font-size: 0.9rem; }

/* ── Privacy / Moat ──────────────────────────────────────── */
.moat-section {
  background: linear-gradient(160deg, #eef5ff 0%, var(--white) 65%);
}
.moat-section .section-eyebrow { color: var(--blue); }

.moat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 800px) { .moat-grid { grid-template-columns: 1fr; } }

.moat-features { display: flex; flex-direction: column; gap: 28px; }
.moat-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.moat-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #1557b0);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(30,123,232,.28);
}
.moat-feature h3 { color: var(--ink); margin-block-end: 6px; }
.moat-feature p  { font-size: 0.9rem; }

.shield-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.shield-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(30,123,232,.18);
  animation: spin-slow 32s linear infinite;
}
.shield-ring:nth-child(2) {
  inset: 14%;
  border-color: rgba(47,163,126,.18);
  animation-direction: reverse;
  animation-duration: 24s;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.shield-center {
  position: relative;
  z-index: 2;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  display: grid;
  place-items: center;
  font-size: 3.8rem;
  box-shadow: var(--shadow-glow-blue);
  animation: morph 9s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  50%      { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.floating-badge:nth-child(3) {
  inset-block-start: 16%;
  inset-inline-end: 4%;
  animation: float 4.5s ease-in-out -1.2s infinite;
}
.floating-badge:nth-child(4) {
  inset-block-end: 18%;
  inset-inline-start: 3%;
  animation: float 4.5s ease-in-out -2.8s infinite;
}
.floating-badge:nth-child(5) {
  inset-block-start: 54%;
  inset-inline-end: -2%;
  animation: float 4.5s ease-in-out -0.5s infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.badge-dot.green  { background: var(--green); }
.badge-dot.blue   { background: var(--blue); }
.badge-dot.gold   { background: var(--gold); }

/* ── Go-To-Market ────────────────────────────────────────── */
.gtm-section { background: var(--surface); }
.gtm-section .section-eyebrow { color: var(--green); }

.gtm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.gtm-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.gtm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47,163,126,.25);
}
.gtm-route {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-block-end: 8px;
}
.gtm-card.primary-route { border-color: rgba(47,163,126,.3); }
.gtm-card.primary-route .gtm-route { color: var(--green); }
.primary-tag {
  position: absolute;
  inset-block-start: 20px;
  inset-inline-end: 20px;
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.gtm-card h3 { color: var(--ink); margin-block-end: 10px; font-size: 1.1rem; }
.gtm-card p  { font-size: 0.9rem; }
.gtm-metric {
  margin-block-start: 20px;
  padding-block-start: 20px;
  border-block-start: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--muted);
}
.gtm-metric strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-block-end: 2px;
}

/* ── CTA / Investor Contact ──────────────────────────────── */
.cta-section {
  background: var(--navy-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(30,123,232,.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 75% 40%, rgba(47,163,126,.10) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-inline: auto;
}
.cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-block-end: 20px;
}
.cta-section h2 { color: var(--white); margin-block-end: 18px; }
.cta-section p  { color: rgba(255,255,255,.58); max-width: 52ch; margin-inline: auto; margin-block-end: 40px; font-size: 1.05rem !important; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #040a14;
  padding-block: 48px 32px;
  border-block-start: 1px solid rgba(255,255,255,.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { height: 28px; width: auto; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,.35); max-width: 36ch; }
.footer-copy { margin-block-start: 14px; font-size: 0.7rem; color: rgba(255,255,255,.2); }
.footer-links { display: flex; flex-direction: column; gap: 10px; text-align: end; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,.35); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,.75); }

/* ── Scroll-reveal ───────────────────────────────────────── */
@supports ((animation-timeline: view()) and (animation-range: entry)) {
  .reveal {
    animation: fade-up linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 28%;
  }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@supports not ((animation-timeline: view()) and (animation-range: entry)) {
  .reveal { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
  .shield-ring, .shield-center, .floating-badge, .hero-badge-dot { animation: none; }
}

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
