/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #080c12;
  --bg-card:   #0e1420;
  --bg-subtle: #131a26;
  --border:    #1e2a3a;
  --blue:      #3b82f6;
  --blue-glow: rgba(59,130,246,0.25);
  --blue-dark: #1d4ed8;
  --cyan:      #06b6d4;
  --text:      #f0f4ff;
  --muted:     #8fa0b8;
  --radius:    14px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── Layout helpers ───────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 28px var(--blue-glow);
}
.btn-primary:hover { background: #2563eb; box-shadow: 0 0 40px rgba(59,130,246,.4); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ─── NAV ──────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,12,18,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.3px;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 12px; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-text { text-align: left; }
.hero-globe-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-canvas-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-canvas-ring-1 {
  width: 340px; height: 340px;
  border: 1px solid rgba(59,130,246,0.15);
  animation: hring1 14s linear infinite;
}
.hero-canvas-ring-2 {
  width: 380px; height: 140px;
  border: 1px solid rgba(59,130,246,0.08);
  animation: hring2 9s linear infinite reverse;
}
.hero-canvas-ring .ring-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px #3b82f6, 0 0 20px rgba(59,130,246,.5);
}
@keyframes hring1 {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes hring2 {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
canvas#hero-globe {
  width: 300px !important;
  height: 300px !important;
  border-radius: 50%;
  display: block;
  box-shadow:
    0 0 40px rgba(59,130,246,.5),
    0 0 80px rgba(59,130,246,.2),
    0 0 140px rgba(10,50,180,.12);
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(59,130,246,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.3);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 900px;
  margin: 0 auto 24px;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* ─── SOCIAL PROOF STRIP ───────────────────────────────────── */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.strip-inner {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 36px 24px;
}
.stat { text-align: center; }
.stat-num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(90deg, var(--text), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ─── PROBLEMS → SOLUTION ──────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.problem-card .icon { font-size: 28px; margin-bottom: 16px; }
.problem-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.problem-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── SECTION HEADER ───────────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header p { font-size: 16px; color: var(--muted); line-height: 1.7; }

/* ─── VALUE PROPS ──────────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 64px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.value-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity .2s;
}
.value-card:hover::before { opacity: 1; }
.value-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.value-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.value-icon {
  width: 48px; height: 48px;
  background: rgba(59,130,246,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.how-bg { background: var(--bg-subtle); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 40px;
  font-size: 20px;
  color: var(--border);
}
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px var(--blue-glow);
}
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── SERVICES ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 64px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}
.service-card h3 { font-size: 18px; font-weight: 800; letter-spacing: -.3px; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.service-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ─── TESTIMONIAL ──────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 64px;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.stars { color: #fbbf24; font-size: 14px; margin-bottom: 16px; }
.testimonial blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
}
.author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.author-info strong { font-size: 14px; font-weight: 700; display: block; }
.author-info span  { font-size: 12px; color: var(--muted); }

/* ─── CTA FINAL ────────────────────────────────────────────── */
.cta-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  bottom: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,.15), transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta-section h2 span {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-section p { font-size: 17px; color: var(--muted); max-width: 480px; margin: 0 auto 44px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: var(--muted); margin-top: 20px; }

/* ─── FOOTER ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.65; }
.footer-links h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-links li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ─── SUBPAGE HEADER ───────────────────────────────────────── */
.subpage-hero {
  padding: 80px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.subpage-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.subpage-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── CONTENT PROSE (articles & legal) ────────────────────── */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 0 96px;
}
.prose section { margin-bottom: 40px; }
.prose h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.3px;
  margin-bottom: 12px;
  color: var(--text);
}
.prose p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.prose ul, .prose ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prose li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── ARTICLE LIST ─────────────────────────────────────────── */
.article-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.article-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: border-color .2s, transform .2s;
}
.article-list li:hover { border-color: var(--blue); transform: translateY(-2px); }
.article-list a {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  transition: color .2s;
  display: block;
  margin-bottom: 6px;
}
.article-list a:hover { color: var(--blue); }
.article-list .excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-globe-wrap { order: 1; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  canvas#hero-globe { width: 220px !important; height: 220px !important; }
  .hero-canvas-ring-1 { width: 250px; height: 250px; }
  .hero-canvas-ring-2 { width: 280px; height: 104px; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .strip-inner { gap: 32px; }
  .prose { padding: 48px 0 64px; }
}
