@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --sp-blue:         #0077ff;
  --sp-blue-deep:    #005fd1;
  --sp-blue-soft:    rgba(0, 119, 255, 0.11);
  --sp-blue-glow:    rgba(0, 119, 255, 0.22);
  --sp-navy:         #070f1e;
  --sp-slate:        #101e32;
  --sp-bg:           #f2f6fc;
  --sp-surface:      #ffffff;
  --sp-border:       rgba(10, 22, 44, 0.08);
  --sp-border-blue:  rgba(0, 119, 255, 0.14);
  --sp-ink:          #0d1f35;
  --sp-muted:        #5a6e88;
  --sp-muted-light:  #8a9ab0;
  --sp-shadow-card:  0 2px 8px rgba(10, 22, 44, 0.04), 0 12px 32px rgba(10, 22, 44, 0.06);
  --sp-shadow-hero:  0 24px 64px rgba(7, 15, 30, 0.22);
  --sp-shadow-hover: 0 4px 16px rgba(10, 22, 44, 0.06), 0 20px 48px rgba(10, 22, 44, 0.10);
  --sp-r-xl:         28px;
  --sp-r-lg:         22px;
  --sp-r-md:         16px;
  --sp-r-sm:         10px;
  --sp-head:        'Outfit', -apple-system, sans-serif;
  --sp-body:        'DM Sans', -apple-system, sans-serif;
  --sp-ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset & Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--sp-bg);
  color: var(--sp-ink);
  font-family: var(--sp-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; }

/* ─── Shell ───────────────────────────────────────────────────────── */
.static-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 36px 24px 88px;
}

/* ─── Hero ────────────────────────────────────────────────────────── */
.static-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--sp-navy) 0%, #0a1828 55%, #0d2240 100%);
  border-radius: var(--sp-r-xl);
  padding: 52px 52px 48px;
  color: #fff;
  box-shadow: var(--sp-shadow-hero);
}

/* Ambient glow orbs */
.static-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 480px 320px at 92% -20%, rgba(0, 119, 255, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 240px 200px at 8% 110%, rgba(0, 180, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Dot grid texture */
.static-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.static-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.static-eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--sp-blue);
}

.static-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-family: var(--sp-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}

.static-hero p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 680px;
  font-size: 15.5px;
  line-height: 1.72;
  color: rgba(255,255,255,0.65);
}

/* ─── Meta chips ──────────────────────────────────────────────────── */
.static-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.static-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.static-meta-chip i {
  font-size: 11px;
  color: var(--sp-blue);
  opacity: 0.9;
}

/* ─── Grid ────────────────────────────────────────────────────────── */
.static-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

/* ─── Cards ───────────────────────────────────────────────────────── */
.static-card {
  grid-column: span 12;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-r-lg);
  padding: 28px 30px;
  box-shadow: var(--sp-shadow-card);
  transition: box-shadow 0.25s var(--sp-ease), transform 0.25s var(--sp-ease);
}

.static-card:hover {
  box-shadow: var(--sp-shadow-hover);
  transform: translateY(-2px);
}

.static-card.col-4 { grid-column: span 4; }
.static-card.col-6 { grid-column: span 6; }
.static-card.col-8 { grid-column: span 8; }

.static-card h2 {
  margin: 0 0 14px;
  font-family: var(--sp-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--sp-ink);
  line-height: 1.2;
}

.static-card h3 {
  margin: 0 0 12px;
  font-family: var(--sp-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sp-ink);
}

.static-card p {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--sp-muted);
}

.static-card p:last-child { margin-bottom: 0; }

/* ─── Badge ───────────────────────────────────────────────────────── */
.static-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sp-blue-soft);
  color: var(--sp-blue-deep);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ─── Kicker (section number) ─────────────────────────────────────── */
.static-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sp-blue-deep);
}

.static-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sp-blue);
  flex-shrink: 0;
}

/* ─── Lists ───────────────────────────────────────────────────────── */
.static-list,
.static-steps {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.static-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--sp-muted);
}

.static-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sp-blue);
  flex-shrink: 0;
}

.static-steps li {
  position: relative;
  padding-left: 54px;
  min-height: 40px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--sp-muted);
}

.static-steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--sp-blue-soft);
  border: 1px solid var(--sp-border-blue);
  flex-shrink: 0;
}

.static-steps strong {
  display: block;
  margin-bottom: 3px;
  color: var(--sp-ink);
  font-size: 14px;
  font-weight: 700;
}

/* ─── Metrics ─────────────────────────────────────────────────────── */
.static-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.static-metric {
  border-radius: var(--sp-r-md);
  background: linear-gradient(145deg, #f6faff 0%, #edf4ff 100%);
  border: 1px solid rgba(0,119,255,0.1);
  padding: 20px 18px;
  transition: transform 0.2s var(--sp-ease);
}

.static-metric:hover {
  transform: translateY(-2px);
}

.static-metric .value {
  display: block;
  font-family: var(--sp-head);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--sp-ink);
  margin-bottom: 4px;
}

.static-metric .label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sp-muted-light);
}

/* ─── Contact & Social grids ──────────────────────────────────────── */
.contact-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.contact-card,
.social-card {
  border-radius: var(--sp-r-md);
  border: 1px solid var(--sp-border);
  background: #fbfdff;
  padding: 20px 18px;
  transition: border-color 0.2s, transform 0.2s var(--sp-ease), box-shadow 0.2s;
}

.contact-card:hover,
.social-card:hover {
  border-color: var(--sp-border-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,119,255,0.07);
}

.contact-card i,
.social-card i {
  font-size: 20px;
  color: var(--sp-blue);
  margin-bottom: 14px;
  display: block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background: var(--sp-blue-soft);
  border-radius: 12px;
}

.contact-card strong,
.social-card strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--sp-ink);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--sp-muted);
  margin-bottom: 10px;
}

.contact-card a,
.social-card a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sp-blue-deep);
  word-break: break-all;
}

.contact-card a:hover,
.social-card a:hover {
  color: var(--sp-blue);
}

/* ─── Inline link ─────────────────────────────────────────────────── */
.static-inline-link {
  color: var(--sp-blue-deep);
  font-weight: 700;
  border-bottom: 1.5px solid rgba(0,119,255,0.25);
  transition: border-color 0.15s, color 0.15s;
}

.static-inline-link:hover {
  color: var(--sp-blue);
  border-color: var(--sp-blue);
}

/* ─── CTA block ───────────────────────────────────────────────────── */
.static-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--sp-r-md);
  background: linear-gradient(135deg, rgba(0,119,255,0.08) 0%, rgba(0,119,255,0.03) 100%);
  border: 1px solid var(--sp-border-blue);
}

.static-cta-text h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.static-cta-text p {
  margin: 0;
  font-size: 13.5px;
}

/* ─── Buttons ─────────────────────────────────────────────────────── */
.static-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--sp-blue);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.18s, transform 0.18s var(--sp-ease), box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(0,119,255,0.28);
}

.static-button:hover {
  background: var(--sp-blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,119,255,0.32);
}

.static-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0,119,255,0.22);
}

.static-button.alt {
  background: #edf4ff;
  color: var(--sp-blue-deep);
  box-shadow: none;
  border: 1px solid rgba(0,119,255,0.18);
}

.static-button.alt:hover {
  background: #dbeafe;
  box-shadow: none;
}

/* ─── Link list (Terms ToC) ───────────────────────────────────────── */
.static-link-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.static-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--sp-r-md);
  border: 1px solid var(--sp-border);
  background: #fbfdff;
  color: var(--sp-ink);
  font-size: 13.5px;
  font-weight: 600;
  transition: border-color 0.15s, transform 0.15s var(--sp-ease), background 0.15s, box-shadow 0.15s;
}

.static-link-list a:hover {
  border-color: var(--sp-border-blue);
  background: #f0f7ff;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(0,119,255,0.06);
}

.static-link-list a i {
  color: var(--sp-blue);
  font-size: 12px;
  flex-shrink: 0;
}

/* ─── Divider ─────────────────────────────────────────────────────── */
.static-divider {
  height: 1px;
  margin: 12px 0 0;
  background: linear-gradient(90deg, rgba(0,119,255,0.15), transparent);
  border-radius: 999px;
}

/* ══════════════════════════════════════════════════════════════════ */
/*  MOBILE — 920 px and below                                         */
/* ══════════════════════════════════════════════════════════════════ */
@media (max-width: 920px) {
  .static-card.col-4,
  .static-card.col-6,
  .static-card.col-8 {
    grid-column: span 12;
  }

  .static-hero {
    padding: 38px 30px 34px;
  }

  .static-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══════════════════════════════════════════════════════════════════ */
/*  MOBILE — 640 px and below (primary phone target)                  */
/* ══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Shell */
  .static-shell {
    padding: 16px 14px 80px;
  }

  /* Hero */
  .static-hero {
    padding: 28px 20px 26px;
    border-radius: 22px;
  }

  .static-hero h1 {
    font-size: 28px;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
  }

  .static-hero p {
    font-size: 14px;
    line-height: 1.68;
  }

  /* Meta chips — shrink & allow wrapping nicely */
  .static-meta {
    gap: 8px;
    margin-top: 20px;
  }

  .static-meta-chip {
    font-size: 11.5px;
    padding: 8px 12px;
    gap: 6px;
  }

  /* Grid */
  .static-grid {
    gap: 12px;
    margin-top: 14px;
  }

  /* Cards */
  .static-card {
    padding: 20px 18px;
    border-radius: 18px;
    /* lift hover off on touch — avoid sticky hover */
  }

  .static-card:hover {
    transform: none;
    box-shadow: var(--sp-shadow-card);
  }

  .static-card h2 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .static-card h3 {
    font-size: 15.5px;
    margin-bottom: 8px;
  }

  .static-card p {
    font-size: 13.5px;
    line-height: 1.72;
  }

  /* Badge */
  .static-badge {
    font-size: 9.5px;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  /* Metrics — stack to single col */
  .static-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .static-metric {
    padding: 16px 14px;
  }

  .static-metric .value {
    font-size: 26px;
  }

  .static-metric .label {
    font-size: 10px;
  }

  /* Steps */
  .static-steps li {
    padding-left: 48px;
    min-height: 36px;
  }

  .static-steps li::before {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  /* Lists */
  .static-list li {
    font-size: 13.5px;
  }

  /* Contact / social grid — single col */
  .contact-grid,
  .social-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-card,
  .social-card {
    padding: 18px 16px;
  }

  /* CTA block — stack vertically */
  .static-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    gap: 14px;
    margin-top: 22px;
  }

  .static-cta .static-button {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;       /* bigger tap target */
    font-size: 14px;
  }

  /* All standalone buttons full-width on mobile */
  .static-card > .static-button {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 15px 20px;
  }

  /* Link list */
  .static-link-list a {
    padding: 15px 14px;       /* larger tap target */
    font-size: 13px;
  }

  .static-link-list a:hover {
    transform: none;          /* no translate on touch */
  }

  /* Eyebrow */
  .static-eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
  }

  /* Kicker */
  .static-kicker {
    font-size: 10px;
  }
}

/* ══════════════════════════════════════════════════════════════════ */
/*  Very small screens — 380 px and below                             */
/* ══════════════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .static-shell {
    padding: 12px 10px 72px;
  }

  .static-hero {
    padding: 24px 16px 22px;
    border-radius: 18px;
  }

  .static-hero h1 {
    font-size: 24px;
  }

  .static-metrics {
    grid-template-columns: 1fr;
  }

  .static-meta-chip {
    font-size: 11px;
    padding: 7px 11px;
  }
}

/* ─── Safe-area bottom padding (notched phones) ───────────────────── */
@supports (padding: max(0px)) {
  .static-shell {
    padding-bottom: max(80px, calc(env(safe-area-inset-bottom) + 60px));
  }
}