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

/* ============================================
   TOKENS — dark blue + white
   ============================================ */
:root {
  --bg:          #050b1f;
  --bg-2:        #07112e;
  --surface:     #0b1738;
  --surface-2:   #102046;
  --text:        #ffffff;
  --text-muted:  #aab4cc;
  --text-dim:    #6a7596;
  --accent:      #6aa8ff;
  --accent-2:    #8ec5ff;
  --accent-dark: #3a78d6;
  --border:      #14224a;
  --border-mid:  #1e3066;
  --gold:        #f4cf6b;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --container: 75rem;
  --radius: 6px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --space-2xs: clamp(0.25rem, 0.5vw, 0.375rem);
  --space-xs:  clamp(0.5rem, 1vw, 0.75rem);
  --space-sm:  clamp(0.75rem, 1.5vw, 1rem);
  --space-md:  clamp(1rem, 2vw, 1.5rem);
  --space-lg:  clamp(1.5rem, 3vw, 2.5rem);
  --space-xl:  clamp(2rem, 4vw, 3.5rem);
  --space-2xl: clamp(3rem, 6vw, 5rem);
  --space-3xl: clamp(4rem, 9vw, 7.5rem);
  --space-4xl: clamp(5rem, 12vw, 10rem);

  --gutter: clamp(1rem, 4vw, 2.5rem);

  --fs-xs:         clamp(0.625rem, 1.2vw, 0.6875rem);
  --fs-sm:         clamp(0.75rem, 1.4vw, 0.8125rem);
  --fs-base:       clamp(0.875rem, 1.6vw, 0.9375rem);
  --fs-md:         clamp(1rem, 1.8vw, 1.125rem);
  --fs-lg:         clamp(1.125rem, 2.2vw, 1.375rem);
  --fs-display-sm: clamp(1.25rem, 2.8vw, 1.625rem);
  --fs-display-md: clamp(1.5rem, 3.6vw, 2.25rem);
  --fs-display-lg: clamp(2rem, 5.5vw, 3rem);
}

/* ============================================
   BASE
   ============================================ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 0;
  position: relative;
}

/* ============================================
   BACKGROUND FX LAYER STACK
   ============================================ */

/* Aurora orbs — slow drift */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.bg-orb-1 {
  width: 38rem; height: 38rem;
  background: radial-gradient(circle, rgba(106,168,255,0.35), transparent 60%);
  top: -10rem; right: -8rem;
  animation: orbDrift1 22s ease-in-out infinite;
}
.bg-orb-2 {
  width: 30rem; height: 30rem;
  background: radial-gradient(circle, rgba(244,207,107,0.18), transparent 60%);
  bottom: -6rem; left: -10rem;
  animation: orbDrift2 28s ease-in-out infinite;
}
.bg-orb-3 {
  width: 26rem; height: 26rem;
  background: radial-gradient(circle, rgba(142,197,255,0.25), transparent 60%);
  top: 40%; left: 30%;
  animation: orbDrift3 34s ease-in-out infinite;
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-6rem, 4rem) scale(1.1); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(8rem, -5rem) scale(1.15); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-40%,-60%) scale(1.2); }
}

/* Grid pattern — faint */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(106,168,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106,168,255,0.04) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}

/* Grain noise — SVG turbulence */
.bg-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Mouse follow glow */
#mouse-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  transition: background 0.05s linear;
}

/* Lift content above bg fx */
main, .nav, .announcement-bar, .footer, .mobile-menu {
  position: relative;
  z-index: 1;
}
html { overflow-x: hidden; max-width: 100vw; }
img, svg, video { max-width: 100%; height: auto; }

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.fade-up { opacity: 0; transform: translateY(1.75rem); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3 { transition-delay: 0.24s; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #051124;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: center;
  padding: 0.625rem var(--space-md);
  letter-spacing: 0.03em;
  line-height: 1.45;
}
.announcement-bar span { display: inline-block; max-width: 100%; }
.announcement-bar a {
  border-bottom: 1px solid rgba(5,17,36,0.4);
  padding-bottom: 1px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 11, 31, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  color: var(--text);
}

.nav-logo-mark {
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(106,168,255,0.12);
}

.nav-links { display: none; align-items: center; gap: 0.25rem; }

.nav-link {
  color: var(--text-muted);
  font-size: var(--fs-base);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: color 0.2s;
  min-height: 2.75rem;
  display: inline-flex; align-items: center;
}
.nav-link:hover { color: var(--text); }

.nav-cta {
  color: #051124;
  background: var(--accent);
  font-size: var(--fs-base);
  font-weight: 700;
  padding: 0.5625rem 1.375rem;
  border-radius: var(--radius);
  margin-left: 0.75rem;
  transition: background 0.2s, transform 0.15s;
  min-height: 2.75rem;
  display: inline-flex; align-items: center;
}
.nav-cta:hover { background: var(--accent-2); transform: translateY(-1px); }

.nav-hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 0.3125rem; background: none; border: none; padding: 0.5rem;
  z-index: 200; min-width: 2.75rem; min-height: 2.75rem; align-items: center;
}
.nav-hamburger span {
  display: block; width: 1.375rem; height: 2px; background: var(--text);
  transition: all 0.3s var(--ease-out); transform-origin: center;
}
.nav-hamburger.active span:first-child { transform: translateY(0.4375rem) rotate(45deg); }
.nav-hamburger.active span:last-child  { transform: translateY(-0.4375rem) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; background: var(--bg); z-index: 99;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-100%); transition: transform 0.5s var(--ease-out);
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: var(--space-lg); padding: var(--space-md); }
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.mobile-link:hover { color: var(--accent); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: clamp(36rem, 86vh, 56rem);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40rem 30rem at 80% 10%, rgba(106,168,255,0.18), transparent 60%),
    radial-gradient(30rem 22rem at 10% 90%, rgba(244,207,107,0.10), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  position: relative;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: var(--space-lg);
  padding: 0.4375rem 1rem;
  border: 1px solid rgba(106,168,255,0.3);
  border-radius: 100px;
  background: rgba(106,168,255,0.06);
}
.hero-tag-dot { width: 0.4375rem; height: 0.4375rem; border-radius: 50%; background: var(--accent); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: var(--space-xl);
  max-width: 22ch;
  word-break: break-word;
  hyphens: auto;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero-headline .gold { color: var(--gold); font-style: italic; font-weight: 500; }

.hero-body { display: flex; flex-direction: column; gap: var(--space-lg); max-width: 60rem; }
.hero-sub {
  font-size: var(--fs-md);
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 36rem;
}

.hero-actions {
  display: flex; flex-direction: column; gap: 0.875rem;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #051124;
  font-size: var(--fs-base);
  font-weight: 700;
  padding: 1.125rem 2.25rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
  min-height: 2.75rem;
  box-shadow: 0 8px 24px -8px rgba(106,168,255,0.4);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: var(--fs-base);
  font-weight: 600;
  padding: 1.125rem 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-mid);
  text-align: center;
  min-height: 2.75rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); background: rgba(106,168,255,0.08); }

.hero-creds {
  display: flex; flex-direction: column;
  margin-top: var(--space-xl);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(11,23,56,0.5);
  backdrop-filter: blur(6px);
  width: 100%;
  max-width: 36rem;
}
.hero-cred { padding: 0.875rem 1.25rem; transition: background 0.2s; }
.hero-cred + .hero-cred { border-top: 1px solid var(--border-mid); }
.hero-cred:hover { background: rgba(106,168,255,0.06); }
.hero-cred-label {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 0.25rem;
}
.hero-cred-val { font-size: var(--fs-sm); color: var(--text); font-weight: 500; }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 1rem 0;
}
.marquee-content {
  display: inline-flex; align-items: center; gap: 1.75rem;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
  font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.mq-dot { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   SECTION COMMON
   ============================================ */
.section { padding: var(--space-3xl) 0; border-bottom: 1px solid var(--border); }
.section-tag {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: var(--space-md);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--accent); font-weight: 500; }
.section-header { margin-bottom: var(--space-2xl); max-width: 50rem; }
.section-sub {
  font-size: var(--fs-md);
  color: var(--text-muted);
  margin-top: var(--space-md);
  line-height: 1.7;
  max-width: 40rem;
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  padding: var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stat-item:last-child { border-bottom: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-label { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.55; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: var(--space-xl) var(--space-lg);
  transition: background 0.25s;
}
.service-card:hover { background: var(--surface-2); }
.service-number {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.service-name {
  font-family: var(--font-display);
  font-size: var(--fs-display-sm);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.875rem;
  line-height: 1.2;
}
.service-desc {
  font-size: var(--fs-base);
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.service-list { display: flex; flex-direction: column; gap: 0.5rem; }
.service-list li {
  font-size: var(--fs-sm);
  color: var(--text-dim);
  padding-left: 1.125rem;
  position: relative;
  line-height: 1.55;
}
.service-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent); font-size: 0.75rem; top: 0.125rem;
}

/* ============================================
   STORY (founder origin)
   ============================================ */
.story-section { background: var(--bg-2); }
.story-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-xl);
}
.story-aside {
  border: 1px solid var(--border-mid);
  padding: var(--space-lg);
  border-radius: var(--radius);
  background: var(--surface);
}
.story-aside h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.story-aside h3 + p + h3 { margin-top: 1.5rem; }
.story-aside p { color: var(--text-muted); font-size: var(--fs-base); line-height: 1.7; }
.story-prose p {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.story-prose p strong { color: var(--text); font-weight: 600; }
.story-pull {
  font-family: var(--font-display);
  font-size: var(--fs-display-sm);
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1rem;
  margin: var(--space-md) 0;
  line-height: 1.4;
  word-break: break-word;
}

/* ============================================
   PROCESS
   ============================================ */
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}
.process-item:first-child { border-top: 1px solid var(--border); }
.process-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.process-title {
  font-family: var(--font-display);
  font-size: var(--fs-display-sm);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.process-desc { font-size: var(--fs-base); color: var(--text-muted); line-height: 1.7; max-width: 42rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 50rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  background: none; border: none;
  color: var(--text);
  font-size: var(--fs-md); font-weight: 600;
  text-align: left;
  transition: color 0.2s;
  min-height: 2.75rem;
  font-family: inherit;
  line-height: 1.45;
}
.faq-q > span:first-child, .faq-q { word-break: break-word; }
.faq-q:hover { color: var(--accent); }
.faq-chevron { font-size: var(--fs-lg); color: var(--text-muted); transition: transform 0.25s; flex-shrink: 0; line-height: 1.45; }
.faq-item.open .faq-chevron { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 42.5rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 40rem; padding-bottom: var(--space-md); }

/* ============================================
   CTA
   ============================================ */
.cta-section { padding: var(--space-4xl) 0; border-bottom: 1px solid var(--border); position: relative; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(40rem 25rem at 50% 50%, rgba(106,168,255,0.12), transparent 60%);
  pointer-events: none;
}
.cta-inner { text-align: center; max-width: 50rem; margin: 0 auto; position: relative; }
.cta-tag {
  display: inline-block;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: var(--space-md);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text);
  margin-bottom: var(--space-lg);
}
.cta-title em { font-style: italic; color: var(--accent); font-weight: 500; }
.cta-sub {
  font-size: var(--fs-md);
  line-height: 1.72;
  color: var(--text-muted);
  margin: 0 auto var(--space-xl);
  max-width: 38rem;
}
.cta-actions {
  display: flex; flex-direction: column; align-items: stretch; gap: 0.875rem;
  margin-bottom: var(--space-lg);
}
.cta-location { font-size: var(--fs-sm); color: var(--text-dim); }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: var(--space-2xl) 0; background: var(--bg-2); }
.footer-inner {
  display: flex; flex-direction: column; gap: var(--space-lg);
}
.footer-logo {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: var(--fs-sm); color: var(--text-muted); max-width: 22rem; line-height: 1.6; }
.footer-copy { font-size: var(--fs-sm); color: var(--text-dim); margin-top: var(--space-md); }
.footer-cols { display: flex; flex-direction: column; gap: var(--space-lg); }
.footer-right { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-col-head {
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 0.5rem;
}
.footer-link {
  font-size: var(--fs-base);
  color: var(--text-muted);
  transition: color 0.2s;
  min-height: 2.5rem;
  display: inline-flex; align-items: center;
}
.footer-link:hover { color: var(--text); }
.footer-disclaimer {
  font-size: var(--fs-xs);
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  max-width: 60rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tiny phones (<23em / 368px) */
@media (max-width: 22.99em) {
  :root { --gutter: 0.875rem; }
  .nav-inner { height: 3.75rem; }
  .nav-logo { font-size: 0.95rem; }
  .hero-tag { font-size: 0.625rem; padding: 0.375rem 0.75rem; }
  .hero-headline { font-size: 2rem; letter-spacing: -0.025em; }
  .service-card, .pg-feature-card { padding: 1.5rem 1rem; }
  .story-aside { padding: 1.25rem 1rem; }
  .stat-item { padding: 1.25rem 1rem; }
  .btn-primary, .btn-secondary { padding: 1rem 1.25rem; font-size: 0.875rem; }
  .announcement-bar { font-size: 0.7rem; }
}

@media (min-width: 40em) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: none; border-right: 1px solid var(--border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .hero-actions { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .cta-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

@media (min-width: 48em) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-cols { display: flex; gap: var(--space-2xl); }
  .process-item { grid-template-columns: 6rem 1fr; gap: 2.5rem; align-items: start; padding: 2.5rem 0; }
  .story-grid { grid-template-columns: 1.6fr 1fr; gap: 4rem; }
}

@media (min-width: 64em) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-item { border-right: 1px solid var(--border); border-bottom: none; padding: 2.5rem 2.25rem; }
  .stat-item:nth-child(2n) { border-right: 1px solid var(--border); }
  .stat-item:last-child { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
