@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════
   MODLY — DESIGN SYSTEM
   Naming: semantic kebab-case
   Layout: CSS Grid primary, Flex secondary
   ═══════════════════════════════════════════════ */

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

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

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

ul, ol { list-style: none; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
}

/* ─── TOKENS ─────────────────────────────────── */
:root {
  /* Colors */
  --c-navy-950: #050814;
  --c-navy-900: #090d1f;
  --c-navy-800: #0f1530;
  --c-navy-700: #1a2045;
  --c-navy-600: #242c5c;

  --c-violet: #7c3aed;
  --c-violet-light: #9d5ff5;
  --c-coral: #ff5f57;
  --c-coral-light: #ff8a82;
  --c-lime: #b6f542;
  --c-lime-dim: #8ec932;

  --c-white: #ffffff;
  --c-white-90: rgba(255,255,255,0.90);
  --c-white-70: rgba(255,255,255,0.70);
  --c-white-40: rgba(255,255,255,0.40);
  --c-white-12: rgba(255,255,255,0.12);
  --c-white-06: rgba(255,255,255,0.06);

  /* Gradient */
  --g-brand: linear-gradient(135deg, #7c3aed 0%, #c0376e 50%, #ff5f57 100%);
  --g-brand-text: linear-gradient(90deg, #9d5ff5 0%, #ff7a6e 100%);
  --g-card: linear-gradient(160deg, rgba(124,58,237,0.18) 0%, rgba(255,95,87,0.10) 100%);
  --g-hero-bg: radial-gradient(ellipse 80% 60% at 60% 20%, rgba(124,58,237,0.28) 0%, transparent 70%),
               radial-gradient(ellipse 50% 40% at 90% 70%, rgba(255,95,87,0.18) 0%, transparent 60%);

  /* Typography */
  --f-display: 'Space Grotesk', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;

  /* Spacing scale (base-8) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 9999px;

  /* Shadow */
  --sh-card: 0 4px 24px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.25);
  --sh-glow-violet: 0 0 40px rgba(124,58,237,0.35);
  --sh-glow-lime: 0 0 20px rgba(182,245,66,0.30);
  --sh-btn: 0 4px 20px rgba(124,58,237,0.45);
  --sh-btn-coral: 0 4px 20px rgba(255,95,87,0.40);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms;
  --t-mid: 300ms;
}

/* ─── BASE ───────────────────────────────────── */
html, body {
  height: 100%;
}

body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-white-90);
  background-color: var(--c-navy-950);
  background-image: var(--g-hero-bg);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── CONTAINER ──────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-white);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; }
h5 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

p {
  color: var(--c-white-70);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  max-width: 68ch;
}

p.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--c-white-90);
  font-weight: 400;
  max-width: 58ch;
}

strong { color: var(--c-white); font-weight: 600; }

/* Gradient text utility */
.grad-text {
  background: var(--g-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-lime);
  background: rgba(182,245,66,0.10);
  border: 1px solid rgba(182,245,66,0.25);
  border-radius: var(--r-pill);
  padding: var(--sp-1) var(--sp-4);
  margin-bottom: var(--sp-4);
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-lime);
  flex-shrink: 0;
}

/* ─── LINKS ──────────────────────────────────── */
a.text-link {
  color: var(--c-violet-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
a.text-link:hover { color: var(--c-coral-light); }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-md);
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out),
              opacity var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--g-brand);
  color: #fff;
  box-shadow: var(--sh-btn);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(124,58,237,0.55);
}
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  background: var(--c-white-06);
  color: var(--c-white-90);
  border: 1px solid var(--c-white-12);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--c-white-12);
  border-color: var(--c-white-40);
  transform: translateY(-2px);
}

.btn-lime {
  background: var(--c-lime);
  color: #0a1a00;
  box-shadow: var(--sh-glow-lime);
}
.btn-lime:hover {
  background: #cbfc5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(182,245,66,0.45);
}

.btn-sm {
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-sm);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 0.95rem 2rem;
}

/* ─── HEADER / NAV ───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

/* Row 1 — announcement bar */
.header-topbar {
  background: var(--g-brand);
  padding: var(--sp-2) 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.02em;
}

.header-topbar a {
  color: var(--c-lime);
  font-weight: 700;
  margin-left: var(--sp-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Row 2 — main nav */
.header-main {
  background: rgba(9,13,31,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--c-white-06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding-block: var(--sp-4);
}

/* Brand */
.site-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.site-brand-logo {
  width: 34px;
  height: 34px;
}

.site-brand-name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.03em;
}

.site-brand-name span {
  background: var(--g-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-white-70);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--c-white);
  background: var(--c-white-06);
}

.nav-list a.active {
  color: var(--c-lime);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav-login {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-white-70);
  transition: color var(--t-fast);
}
.nav-login:hover { color: var(--c-white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  background: var(--c-white-06);
  border: 1px solid var(--c-white-12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t-mid) var(--ease-out), opacity var(--t-fast);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-4) 0 var(--sp-6);
  border-top: 1px solid var(--c-white-06);
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-white-70);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-mobile a:hover { color: var(--c-white); background: var(--c-white-06); }

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-white-06);
}

/* ─── HERO ───────────────────────────────────── */
.section-hero {
  padding-block: clamp(5rem, 12vw, 9rem) clamp(4rem, 10vw, 7rem);
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 30%, rgba(124,58,237,0.22) 0%, transparent 65%),
              radial-gradient(ellipse 40% 35% at 85% 75%, rgba(255,95,87,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-6);
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-white-70);
  max-width: 50ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.82rem;
  color: var(--c-white-40);
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--c-navy-900);
  background: var(--g-brand);
  margin-left: -8px;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.hero-trust-avatars .hero-trust-avatar:first-child { margin-left: 0; }

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-white-12);
  box-shadow: var(--sh-card), var(--sh-glow-violet);
  background: var(--c-navy-800);
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 320px;
  object-fit: cover;
  opacity: 0.9;
}

.hero-image-placeholder {
  width: 100%;
  min-height: 380px;
  background: var(--g-card);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-white-12);
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(124,58,237,0.06) 20px,
    rgba(124,58,237,0.06) 40px
  );
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--c-navy-800);
  border: 1px solid var(--c-white-12);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--sh-card);
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-lime);
  box-shadow: 0 0 10px var(--c-lime);
  flex-shrink: 0;
}

.hero-badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-white-90);
  line-height: 1.3;
}

.hero-badge-text small {
  display: block;
  color: var(--c-white-40);
  font-weight: 400;
  font-size: 0.72rem;
}

/* ─── SECTIONS (generic) ─────────────────────── */
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-sm {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section-dark {
  background: var(--c-navy-900);
}

.section-darker {
  background: var(--c-navy-950);
}

.section-mid {
  background: var(--c-navy-800);
}

.section-grad {
  background: var(--g-brand);
  position: relative;
  overflow: hidden;
}

.section-grad::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9,13,31,0.35);
  pointer-events: none;
}

.section-grad .wrap { position: relative; z-index: 1; }

/* Section header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header p {
  margin-inline: auto;
  margin-top: var(--sp-4);
}

/* ─── CARDS ──────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.card-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.card {
  background: var(--c-navy-800);
  border: 1px solid var(--c-white-06);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease-out),
              border-color var(--t-mid),
              box-shadow var(--t-mid);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g-brand);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--c-white-12);
  box-shadow: var(--sh-card), var(--sh-glow-violet);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.card h3 {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin-bottom: var(--sp-3);
}

.card p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--c-white-70);
  max-width: none;
}

/* Highlight card variant */
.card-highlight {
  background: var(--g-card);
  border-color: rgba(124,58,237,0.30);
}

/* ─── STATS ──────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.stat-item {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--c-white-06);
  border: 1px solid var(--c-white-06);
  transition: transform var(--t-mid) var(--ease-out);
}

.stat-item:hover { transform: translateY(-3px); }

.stat-number {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  background: var(--g-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-white-70);
  line-height: 1.4;
}

/* ─── CTA BAND ───────────────────────────────── */
.cta-band {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(124,58,237,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band .wrap { position: relative; z-index: 1; }

.cta-band h2 { margin-bottom: var(--sp-4); }

.cta-band p {
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  align-items: center;
}

/* ─── FAQ ─────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  background: var(--c-navy-800);
  border: 1px solid var(--c-white-06);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item:hover { border-color: var(--c-white-12); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  text-align: left;
  background: none;
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  transition: color var(--t-fast);
}

.faq-question:hover { color: var(--c-violet-light); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-white-06);
  border: 1px solid var(--c-white-12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--c-violet-light);
  transition: transform var(--t-mid) var(--ease-out), background var(--t-fast);
}

details[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(124,58,237,0.20);
}

.faq-answer {
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--c-white-70);
  font-size: 0.93rem;
  line-height: 1.7;
  max-width: none;
}

/* ─── CONTENT SECTION ────────────────────────── */
.content-section {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.content-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* ─── LOGO STRIP ─────────────────────────────── */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  justify-content: center;
}

.logo-strip-item {
  font-family: var(--f-display);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 700;
  color: var(--c-white-40);
  letter-spacing: -0.01em;
  transition: color var(--t-fast);
}

.logo-strip-item:hover { color: var(--c-white-70); }

/* ─── DIVIDER ─────────────────────────────────── */
.divider {
  border: none;
  height: 1px;
  background: var(--c-white-06);
  margin: 0;
}

/* ─── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--c-navy-950);
  border-top: 1px solid var(--c-white-06);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.footer-brand-name {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.03em;
}

.footer-brand-name span {
  background: var(--g-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--c-white-40);
  line-height: 1.6;
  max-width: 28ch;
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--c-white-06);
  border: 1px solid var(--c-white-12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--c-white-70);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.footer-social-link:hover {
  background: rgba(124,58,237,0.20);
  border-color: rgba(124,58,237,0.40);
  color: var(--c-violet-light);
}

.footer-col-label {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-white-40);
  margin-bottom: var(--sp-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--c-white-70);
  transition: color var(--t-fast);
  width: fit-content;
}

.footer-links a:hover { color: var(--c-white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--c-white-06);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--c-white-40);
}

.footer-legal {
  display: flex;
  gap: var(--sp-6);
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--c-white-40);
  transition: color var(--t-fast);
}

.footer-legal a:hover { color: var(--c-white-70); }

/* ─── FORMS ──────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-white-70);
}

.form-input {
  background: var(--c-navy-800);
  border: 1px solid var(--c-white-12);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  color: var(--c-white);
  font-size: 0.95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}

.form-input::placeholder { color: var(--c-white-40); }

.form-input:focus {
  outline: none;
  border-color: var(--c-violet-light);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.20);
}

.form-inline {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.form-inline .form-input { flex: 1; min-width: 200px; }

/* ─── PILL / BADGE ───────────────────────────── */
.pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--r-pill);
  background: rgba(182,245,66,0.15);
  color: var(--c-lime);
  border: 1px solid rgba(182,245,66,0.25);
  letter-spacing: 0.04em;
}

.pill-violet {
  background: rgba(124,58,237,0.20);
  color: var(--c-violet-light);
  border-color: rgba(124,58,237,0.30);
}

.pill-coral {
  background: rgba(255,95,87,0.15);
  color: var(--c-coral-light);
  border-color: rgba(255,95,87,0.25);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-placeholder {
    min-height: 260px;
  }
}

@media (max-width: 700px) {
  .nav-list, .nav-actions { display: none; }

  .nav-toggle { display: flex; }

  .nav-mobile.open { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .form-inline {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* ─── UTILITY ─────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
html{-webkit-text-size-adjust:100%}
*{box-sizing:border-box}
body{margin:0}
img,svg,video{max-width:100%;height:auto}
