/* ==========================================================================
   myImpact Design Tokens
   ========================================================================== */
:root {
  /* Brand */
  --navy-950: #060f24;
  --navy-900: #0a1a3a;
  --navy-800: #0e2354;
  --navy-700: #14306e;
  --blue-500: #3fa9f5;
  --blue-400: #6cc2f8;
  --blue-300: #a4dbfb;
  --blue-100: #e7f5fe;
  --orange-700: #a2270b;
  --orange-600: #d2330f;
  --orange-500: #f15b39;
  --orange-400: #f6917a;
  --orange-100: #fbe4df;

  /* Semantic */
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --ink: #0b1220;
  --ink-soft: #4a5568;
  --line: #e2e8f0;
  --surface: #ffffff;

  /* Type */
  --font-display: 'Archivo Black', 'Geist', sans-serif;
  --font-body: 'Geist', sans-serif;

  /* Scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 7rem;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(10, 26, 58, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 26, 58, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 26, 58, 0.18);

  --ease-out: cubic-bezier(.16,.84,.44,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

:root[data-theme="dark"], .theme-dark {
  --bg: #060f24;
  --bg-alt: #0a1a3a;
  --ink: #f4f8ff;
  --ink-soft: #b9c6e0;
  --line: rgba(255,255,255,0.12);
  --surface: #0e2354;
}

/* This site commits to a single light theme by design — no automatic
   prefers-color-scheme dark variant. (A previous version auto-switched
   --ink to near-white here while several cards kept hardcoded #fff
   backgrounds, making testimonial/pricing text unreadable in dark mode.) */

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--orange-700);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

@media (max-width: 640px) {
  .container { padding: 0 var(--space-2); }
}

section { position: relative; }

/* Focus visibility (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  min-height: 44px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 220ms var(--ease-spring), box-shadow 220ms var(--ease-out), background 220ms var(--ease-out), color 220ms var(--ease-out), border-color 220ms var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 10px 24px rgba(241, 91, 57, 0.35);
}
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 14px 32px rgba(241, 91, 57, 0.45); }

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: #fff; }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }

.btn-icon {
  width: 14px; height: 14px;
  transition: transform 220ms var(--ease-out);
}
.btn:hover .btn-icon { transform: translateX(4px); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 280ms var(--ease-out), background 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(6, 15, 36, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 30px rgba(6,15,36,0.25);
}

.logo { display: inline-flex; align-items: center; }
.logo img { height: 30px; width: auto; display: block; }
.footer-brand .logo img { height: 32px; }
@media (max-width: 480px) {
  .logo img { height: 25px; }
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.82);
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { background: rgba(255,255,255,0.12); color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  color: #fff;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    top: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: var(--navy-950);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 28px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 340ms var(--ease-out);
    box-shadow: -20px 0 60px rgba(0,0,0,0.35);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn span.btn-label-full { display: none; }
}

.nav-scrim {
  position: fixed; inset: 0; background: rgba(6,15,36,0.55);
  opacity: 0; pointer-events: none; transition: opacity 300ms var(--ease-out);
  z-index: 90;
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, var(--navy-700) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: #fff;
  padding: 168px 0 120px;
  overflow: hidden;
  isolation: isolate;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}
.hero-blob.b1 { width: 420px; height: 420px; background: var(--orange-500); top: -120px; right: -80px; opacity: 0.35; }
.hero-blob.b2 { width: 360px; height: 360px; background: var(--blue-500); bottom: -140px; left: -100px; opacity: 0.4; animation-delay: -6s; }
.hero-blob.b3 { width: 220px; height: 220px; background: var(--blue-400); top: 40%; left: 55%; opacity: 0.25; animation-delay: -3s; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.08); }
  66% { transform: translate(-24px,26px) scale(0.95); }
}

.hero-grid {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 30% 20%, black, transparent 75%);
}

.hero-inner { max-width: 880px; }

.hero h1 {
  font-size: clamp(2.5rem, 3vw + 1.6rem, 4.6rem);
  margin: 22px 0 26px;
}
.hero h1 .accent { color: var(--orange-400); }
.hero h1 .accent-blue { color: var(--blue-300); }

.hero-sub {
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.3rem);
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 0 0 40px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: var(--space-5);
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat .num { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 700; color: #fff; }
.hero-stat .num .plus { color: var(--orange-400); }
.hero-stat .label { font-size: 0.86rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .hero-stats { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* Word-by-word reveal */
.split-words span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) rotate(2deg);
  animation: word-in 700ms var(--ease-out) forwards;
}
@keyframes word-in { to { opacity: 1; transform: translateY(0) rotate(0); } }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 750ms var(--ease-out), transform 750ms var(--ease-out);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 750ms var(--ease-out), transform 750ms var(--ease-out);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) {
  /* Side-slides read oddly once feat-block columns stack to full width; fall back to a fade-up like everything else. */
  .reveal-left, .reveal-right { transform: translateY(28px); }
  .reveal-left.is-visible, .reveal-right.is-visible { transform: translateY(0); }
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 450ms; }

/* ==========================================================================
   Section helpers
   ========================================================================== */
.section { padding: var(--space-7) 0; }
.section-head { max-width: 680px; margin-bottom: var(--space-5); }
.section-head h2 { font-size: clamp(1.9rem, 1.6vw + 1.3rem, 3rem); margin-top: 16px; }
.section-head p { font-size: 1.08rem; color: var(--ink-soft); margin-top: 18px; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); color: #fff; }
.section-navy .ink-soft { color: rgba(255,255,255,0.72); }
.section-navy .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--orange-400); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Feature cards
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-3); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: transform 320ms var(--ease-spring), box-shadow 320ms var(--ease-out), border-color 320ms;
  height: 100%;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* Typographic word-mark used instead of decorative icons (e.g. TRIAL / PARTNER / COMMUNITY) */
.num-mark {
  font-family: var(--font-display); font-weight: 800; line-height: 1;
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}

.feature-card h3 { font-size: clamp(1.3rem, 0.6vw + 1.1rem, 1.6rem); margin-bottom: 12px; }
.feature-card p { color: var(--ink-soft); font-size: 0.98rem; }
.feature-card .tag {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.02em;
  color: var(--orange-700); margin-bottom: 14px;
}

.partner-logo {
  width: 100%; height: auto; aspect-ratio: 680 / 359; object-fit: cover;
  border-radius: var(--radius-md); margin-bottom: var(--space-3);
  display: block;
}
.section-partners { background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); }

/* ==========================================================================
   Product mock panel (Workspace / AI Studio / Community previews)
   ========================================================================== */
.mock-panel {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.mock-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(63,169,245,0.14), transparent 60%);
  pointer-events: none;
}
.mock-topbar { display: flex; gap: 7px; margin-bottom: 16px; }
.mock-topbar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.mock-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.86rem;
}
.mock-row .chip {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  padding: 3px 9px; border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}
.chip-blue { background: rgba(63,169,245,0.18); color: var(--blue-300); }
.chip-orange { background: rgba(241,91,57,0.18); color: var(--orange-400); }
.chip-green { background: rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.92); }
.mock-row .bar { flex: 1; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.1); overflow: hidden; }
.mock-row .bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--blue-500), var(--orange-500)); }

/* ==========================================================================
   Geometric collage (illustrated brand accent, no icons/mascots)
   ========================================================================== */
.geo-collage {
  position: relative;
  aspect-ratio: 1 / 0.92;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  padding: 3px;
}
.geo-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
}
.geo-tile.span-2 { grid-column: span 2; }
.geo-tile.span-2-row { grid-row: span 2; }
.geo-tile .shape { position: absolute; }
.geo-shape-circle { border-radius: 50%; }
.geo-shape-ring { border-radius: 50%; background: none !important; }
.geo-shape-tri {
  width: 0; height: 0;
  border-style: solid;
  background: none !important;
}
.geo-tile .dot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; position: absolute; }
.geo-tile .dot-grid span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); }
@media (prefers-reduced-motion: no-preference) {
  .geo-tile .shape.float { animation: bob 7s ease-in-out infinite; }
}

/* ==========================================================================
   Product screenshot frame (real UI screenshots)
   ========================================================================== */
.shot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  position: relative;
}
.shot-frame img { width: 100%; height: auto; display: block; }
.shot-frame-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.02em;
  background: var(--navy-950); color: #fff;
  padding: 7px 14px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Friendly callout badges (speech-bubble / floating pill accents)
   ========================================================================== */
.callout-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--navy-900);
  font-family: var(--font-display); font-weight: 700; font-size: 0.86rem;
  padding: 10px 18px 10px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.callout-badge .dot-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange-500); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.callout-badge .dot-icon svg { width: 14px; height: 14px; }
.callout-float {
  position: absolute; z-index: 3;
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.speech-tag {
  position: absolute; z-index: 3;
  background: #fff; color: var(--navy-900);
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  padding: 9px 16px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.speech-tag::after {
  content: "";
  position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%);
  height: 16px;
  border-left: 2px dashed rgba(10,26,58,0.25);
}
.speech-tag.on-dark::after { border-left-color: rgba(255,255,255,0.4); }
.speech-dot {
  position: absolute; z-index: 3;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(241,91,57,0.2);
}

/* Friendly hand-drawn style illustration accents */
.illo-blob {
  position: absolute; border-radius: 50%;
  z-index: -1; filter: blur(2px);
}

/* Friendly mascot blobs (illustrated character accents) */
.mascot { width: 88px; height: 88px; flex-shrink: 0; }
.mascot-float { position: absolute; z-index: 3; animation: bob 6s ease-in-out infinite; }
.mascot-float.delay { animation-delay: -3s; }
.mascot-sm { width: 56px; height: 56px; }
@media (prefers-reduced-motion: reduce) { .mascot-float { animation: none; } }
@media (max-width: 700px) { .mascot-hide-mobile { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .callout-float { animation: none; }
}

/* ==========================================================================
   Stats / impact counters
   ========================================================================== */
.stat-block { text-align: center; }
.stat-block .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-block .label { color: var(--ink-soft); font-weight: 600; margin-top: 6px; }

/* ==========================================================================
   Testimonial
   ========================================================================== */
.quote-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  max-width: 760px;
}
.quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--orange-600); line-height: 1; margin-bottom: 8px; }
.quote-card p.quote-text { font-size: 1.25rem; color: var(--ink); font-weight: 500; margin-bottom: 22px; }
.quote-person { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-800));
  flex-shrink: 0;
}
.quote-person strong { font-family: var(--font-display); }
.quote-person span { color: var(--ink-soft); font-size: 0.9rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--orange-500), var(--orange-600));
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,0.12); top: -140px; right: -80px;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 520px; }
.cta-band .btn-primary { background: #fff; color: var(--orange-600); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.cta-band .btn-primary:hover { background: var(--navy-950); color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.75); padding: var(--space-6) 0 var(--space-3); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--space-4); padding-bottom: var(--space-5); }
.footer-brand p { max-width: 320px; color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 0.94rem; }
.footer-col h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.01em; color: #fff; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.94rem; transition: color 200ms; }
.footer-col a:hover { color: var(--blue-300); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms, transform 200ms;
}
.footer-social a:hover { background: var(--blue-500); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-3);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.86rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom-links { display: flex; gap: 20px; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Utility spacing
   ========================================================================== */
.mt-1{margin-top:var(--space-1)} .mt-2{margin-top:var(--space-2)} .mt-3{margin-top:var(--space-3)} .mt-4{margin-top:var(--space-4)} .mt-5{margin-top:var(--space-5)}
.mb-1{margin-bottom:var(--space-1)} .mb-2{margin-bottom:var(--space-2)} .mb-3{margin-bottom:var(--space-3)} .mb-4{margin-bottom:var(--space-4)} .mb-5{margin-bottom:var(--space-5)}
.flex { display: flex; } .items-center { align-items: center; } .gap-2 { gap: 1rem; } .flex-wrap { flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  background: radial-gradient(120% 140% at 85% 0%, var(--navy-700) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: #fff;
  padding: 156px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.5rem, 3vw + 1.6rem, 4.6rem); margin-top: 18px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin-top: 18px; }
.breadcrumb { font-size: 0.86rem; color: rgba(255,255,255,0.55); display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: #fff; }

/* Pricing */
.price-card {
  background: var(--surface); border: 2px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-4); display: flex; flex-direction: column; height: 100%;
  transition: border-color 260ms, transform 260ms;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.is-featured { border-color: var(--orange-500); box-shadow: var(--shadow-lg); position: relative; }
.price-card.is-featured::before {
  content: "Most Chosen"; position: absolute; top: -14px; left: var(--space-4);
  background: var(--orange-500); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.01em; padding: 6px 14px; border-radius: var(--radius-pill);
}
.price-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.price-desc { color: var(--ink-soft); font-size: 0.92rem; margin: 8px 0 20px; }
.price-amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; }
.price-amount span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.price-list { margin: 22px 0; flex: 1; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.94rem; }
.price-list svg { width: 18px; height: 18px; color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }

/* Checkmark bullet list (reused on get-involved.html and what-we-do.html) */
.feat-list { margin-top: 24px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--ink-soft); }
.feat-list svg { width: 20px; height: 20px; color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-3); }
.field label { font-weight: 600; font-size: 0.92rem; }
.field .hint { font-size: 0.82rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: var(--font-body); font-size: 1rem;
  background: var(--surface); color: var(--ink);
  transition: border-color 200ms;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); outline: none; }
.field-error { border-color: #e0472c !important; }
.field-error-msg { color: #c53030; font-size: 0.84rem; display: none; }
.field.has-error .field-error-msg { display: block; }
.field select:disabled, .field input:disabled { background: var(--bg-alt); color: var(--ink-soft); cursor: not-allowed; }

.phone-input-group {
  display: flex; align-items: stretch;
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 200ms;
}
.phone-input-group:focus-within { border-color: var(--blue-500); }
.phone-input-group .phone-dial {
  display: flex; align-items: center; justify-content: center;
  padding: 0 14px; font-family: var(--font-display); font-weight: 700;
  background: var(--bg-alt); color: var(--ink-soft); border-right: 2px solid var(--line);
  flex-shrink: 0; min-width: 56px;
}
.phone-input-group input {
  border: none !important; border-radius: 0 !important; flex: 1; min-width: 0;
}
.phone-input-group input:focus { outline: none; }

.form-note {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 0.9rem; color: var(--ink-soft); margin-bottom: var(--space-3);
}
.form-note strong { color: var(--ink); }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-5); box-shadow: var(--shadow-md); }

/* Values / timeline */
.value-row { display: flex; gap: var(--space-3); padding: var(--space-3) 0; border-top: 1px solid var(--line); }
.value-row:first-child { border-top: none; }
.value-num { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--blue-500); width: 56px; flex-shrink: 0; }
.value-row h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-row p { color: var(--ink-soft); }

/* Logo strip */
.logo-strip { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; justify-content: center; opacity: 0.75; }
.logo-strip span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink-soft); }

/* Back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px;
  border-radius: 50%; background: var(--navy-900); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 80;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity 260ms, transform 260ms;
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top svg { width: 20px; height: 20px; }
