/* ─── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600&family=JetBrains+Mono:wght@500&display=swap');

/* ─── Brand Tokens — sampled from brand_assets/image.png ───────────────────── */
:root {
  /* Colors */
  --navy-deep:    #0B1C32;   /* badge banner, footer, hero bg */
  --navy-mid:     #1B3263;   /* shirt, floating card, nav on dark */
  --ice-blue:     #1E72B3;   /* cooling context, links, icons */
  --ice-accent:   #72D1F0;   /* snowflake highlights, CTA glow */
  --orange:       #F97316;   /* CTA buttons + urgency only */
  --orange-deep:  #C45010;   /* hover darken, flame base */
  --white:        #F5F8FA;
  --charcoal:     #374151;
  --gray-soft:    #8B99AA;
  --gray-border:  #D4DCE5;
  --surface:      #F8FAFC;   /* section background alternate */

  /* Typography */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Spacing scale (8px base) */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Border radius — intentionally varied */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-pill: 9999px;

  /* Layered, color-tinted shadows */
  --shadow-sm:   0 1px 3px rgba(11,28,50,.10), 0 1px 2px rgba(11,28,50,.06);
  --shadow-md:   0 4px 12px rgba(11,28,50,.12), 0 2px 6px rgba(11,28,50,.08);
  --shadow-lg:   0 8px 28px rgba(11,28,50,.16), 0 4px 12px rgba(11,28,50,.10);
  --shadow-ice:  0 6px 20px rgba(30,114,179,.22), 0 2px 8px rgba(30,114,179,.14);
  --shadow-fire: 0 6px 24px rgba(249,115,22,.28), 0 2px 8px rgba(249,115,22,.16);

  /* Z-index scale */
  --z-base:    1;
  --z-raised:  10;
  --z-float:   20;
  --z-nav:     40;
  --z-overlay: 100;
  --z-cursor:  9999;

  /* Easing */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:     cubic-bezier(0.64, 0, 0.78, 0);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Dark backing behind transparent nav — kills the white-top-strip on every page */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;               /* nav padding + pill height */
  background: var(--navy-deep);
  z-index: calc(var(--z-nav) - 2);   /* behind nav pill, above content */
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy-deep);
}

.mono       { font-family: var(--font-mono); font-weight: 500; }
.tabular    { font-variant-numeric: tabular-nums; }

/* ─── Custom Cursor ────────────────────────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }

  #cursor-dot {
    position: fixed;
    width: 7px;
    height: 7px;
    background: var(--navy-deep);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
  }

  #cursor-ring {
    position: fixed;
    width: 28px;
    height: 28px;
    border: 2px solid var(--ice-accent);
    background: rgba(114, 209, 240, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: width  0.22s var(--ease-spring),
                height 0.22s var(--ease-spring),
                border-color 0.18s,
                background   0.18s,
                opacity 0.15s;
  }

  #cursor-ring.hover {
    width: 42px;
    height: 42px;
    border-color: var(--orange);
    background: rgba(249, 115, 22, 0.07);
  }

  #cursor-ring.cooling {
    border-color: var(--ice-accent);
    background: rgba(114, 209, 240, 0.07);
  }

  #cursor-ring.heating {
    border-color: var(--orange);
    background: rgba(249, 115, 22, 0.07);
  }
}

@media (prefers-reduced-motion: reduce) {
  #cursor-ring { transition: none !important; }
}

/* ─── Buttons — pill shape, nebula glow (ref: 21st Nebula CTA + Glow Button) ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;            /* TRUE PILL — biggest single change */
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform  0.20s var(--ease-out),
              box-shadow 0.20s var(--ease-out),
              opacity 0.15s;
}

.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; border-radius: 100px; }
.btn:active        { transform: scale(0.96) !important; }

/* Glare sweep on hover (from Glow Button #5793) */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255,255,255,.16) 50%,
    transparent 80%
  );
  transform: translateX(-110%);
  transition: transform 0.45s var(--ease-out);
  pointer-events: none;
  border-radius: 100px;
}
.btn:hover::after { transform: translateX(110%); }

/* Primary — orange nebula glow (from Nebula CTA Glow #19349) */
.btn-primary {
  background: linear-gradient(135deg, #FF9040 0%, #F97316 50%, #C45010 100%);
  color: #fff;
  border-color: rgba(249,115,22,.5);
  box-shadow:
    0 0 0 1px rgba(249,115,22,.45),
    0 0 22px rgba(249,115,22,.55),
    0 0 55px rgba(249,115,22,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
  animation: btn-nebula-orange 2.8s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  animation-play-state: paused;
  box-shadow:
    0 0 0 1px rgba(249,115,22,.7),
    0 0 36px rgba(249,115,22,.75),
    0 0 80px rgba(249,115,22,.35),
    inset 0 1px 0 rgba(255,255,255,.18);
}

@keyframes btn-nebula-orange {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(249,115,22,.45), 0 0 22px rgba(249,115,22,.55), 0 0 55px rgba(249,115,22,.22), inset 0 1px 0 rgba(255,255,255,.18);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(249,115,22,.65), 0 0 34px rgba(249,115,22,.72), 0 0 75px rgba(249,115,22,.30), inset 0 1px 0 rgba(255,255,255,.18);
  }
}

/* Secondary — ghost pill on dark backgrounds */
.btn-secondary {
  background: rgba(245,248,250,.05);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-color: rgba(245,248,250,.28);
}
.btn-secondary:hover {
  background: rgba(245,248,250,.10);
  border-color: rgba(245,248,250,.55);
  transform: translateY(-2px);
}

/* Outline — on light backgrounds */
.btn-outline {
  background: transparent;
  color: var(--navy-deep);
  border-color: rgba(11,28,50,.55);
}
.btn-outline:hover {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,28,50,.22);
}

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

/* ─── Utility Bar — badge pill format ──────────────────────────────────────── */
.utility-bar {
  background: color-mix(in srgb, var(--navy-deep) 95%, var(--ice-blue) 5%);
  border-bottom: 1px solid rgba(114,209,240,.08);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 6px var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-1);
  position: relative;
  z-index: calc(var(--z-nav) + 1);
}

.util-items {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

/* Each item is a compact pill badge with icon */
.util-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: rgba(245,248,250,.05);
  border: 1px solid rgba(245,248,250,.09);
  color: rgba(245,248,250,.72);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.12s, border-color 0.12s;
}

.util-badge svg { flex-shrink: 0; opacity: 0.7; }

.util-badge.emergency {
  background: rgba(249,115,22,.10);
  border-color: rgba(249,115,22,.20);
  color: rgba(249,190,100,.90);
}

.util-badge.cta {
  text-decoration: none;
  background: rgba(30,114,179,.12);
  border-color: rgba(114,209,240,.22);
  color: var(--ice-accent);
  font-weight: 500;
}

.util-badge.cta:hover {
  background: rgba(30,114,179,.22);
  border-color: rgba(114,209,240,.40);
}

.util-sep { display: none; /* hidden — gaps replaced by badge layout */ }

/* ─── Main Nav — floating pill, transparent so hero shows through ────────────── */
.main-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  padding: 8px 16px;
  background: transparent;        /* hero background bleeds through */
  transition: padding 0.25s var(--ease-out);
}

/* When scrolled over white content, add dark backing */
.main-nav.scrolled {
  background: rgba(11,28,50,.96);
}

/* The pill container — dark navy glassmorphism matching the hero */
.nav-pill {
  max-width: 1300px;
  margin: 0 auto;
  background: rgba(11, 28, 50, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 14px;
  border: 1px solid rgba(114, 209, 240, 0.14);
  box-shadow:
    0 2px 16px rgba(0,0,0,.22),
    0 1px 0 rgba(114,209,240,.08) inset;
  transition: box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.main-nav.scrolled .nav-pill {
  background: rgba(11, 28, 50, 0.88);
  box-shadow: 0 8px 32px rgba(0,0,0,.30), 0 1px 0 rgba(114,209,240,.08) inset;
  border-color: rgba(114, 209, 240, 0.20);
}

.nav-inner {
  padding: 0 var(--sp-3);
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 46px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo-text .brand-sub {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: rgba(245,248,250,.45);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(245,248,250,.72);
  padding: 7px 10px;
  border-radius: var(--r-sm);
  transition: color 0.12s, background 0.12s;
  white-space: nowrap;
}
.nav-links a:hover  { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--ice-accent); background: rgba(114,209,240,.10); }

/* Right cluster */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.nav-phone {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(245,248,250,.75);
  text-decoration: none;
  transition: color 0.12s;
}
.nav-phone:hover { color: var(--ice-accent); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
  border-radius: var(--r-sm);
  transition: background 0.12s;
}
.nav-toggle:hover { background: rgba(255,255,255,.10); }

/* Mobile overlay nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: calc(var(--z-nav) + 5);
  flex-direction: column;
  padding: var(--sp-4);
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }

.nav-mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-6);
}

.nav-mobile-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background 0.12s;
}
.nav-mobile-close:hover { background: rgba(245,248,250,.08); }

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nav-mobile-links a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(245,248,250,.85);
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(245,248,250,.08);
  transition: color 0.13s, transform 0.15s var(--ease-out);
}
.nav-mobile-links a:hover { color: var(--ice-accent); transform: translateX(8px); }

.nav-mobile-footer {
  padding-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  margin-top: -74px;                  /* pulls hero behind transparent nav */
  padding-top: 74px;                  /* hero content starts below nav */
  min-height: 100svh;                 /* full viewport since nav overlays */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

/* Layered background cross-fade */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-cooling {
  background:
    radial-gradient(ellipse 75% 90% at 15% 65%, rgba(30,114,179,.38) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 85% 15%, rgba(114,209,240,.10) 0%, transparent 55%),
    var(--navy-deep);
  transition: opacity 0.65s var(--ease-out);
}

.hero-bg-heating {
  background:
    radial-gradient(ellipse 75% 90% at 85% 65%, rgba(249,115,22,.38) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 15% 15%, rgba(196,80,16,.12) 0%, transparent 55%),
    var(--navy-deep);
  opacity: 0;
  transition: opacity 0.65s var(--ease-out);
}

.hero.heating .hero-bg-cooling { opacity: 0; }
.hero.heating .hero-bg-heating { opacity: 1; }

/* SVG grain */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Depth glow orbs — blurred blobs giving z-plane depth per CLAUDE.md */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: background 0.7s var(--ease-out);
}

.hero-orb-tl {
  width: 560px;
  height: 560px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle,
    rgba(30,114,179,.10) 0%,
    rgba(30,114,179,.04) 45%,
    transparent 70%);
  filter: blur(60px);
  animation: orb-drift-a 16s ease-in-out infinite;
}

.hero-orb-br {
  width: 440px;
  height: 440px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle,
    rgba(114,209,240,.07) 0%,
    transparent 65%);
  filter: blur(70px);
  animation: orb-drift-b 22s ease-in-out infinite;
}

.hero.heating .hero-orb-tl {
  background: radial-gradient(circle,
    rgba(249,115,22,.10) 0%,
    rgba(249,115,22,.04) 45%,
    transparent 70%);
}

.hero.heating .hero-orb-br {
  background: radial-gradient(circle,
    rgba(196,80,16,.08) 0%,
    transparent 65%);
}

@keyframes orb-drift-a {
  0%,100% { transform: translate(0,0);     }
  33%      { transform: translate(30px,-20px); }
  66%      { transform: translate(-15px,25px); }
}

@keyframes orb-drift-b {
  0%,100% { transform: translate(0,0);     }
  40%      { transform: translate(-25px,20px); }
  70%      { transform: translate(20px,-30px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb { animation: none !important; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-4) calc(var(--sp-10) + 56px);
  width: 100%;
  display: grid;
  grid-template-columns: 5fr 4fr;   /* text left, mascot right */
  gap: var(--sp-8);
  align-items: center;
}

/* Toggle */
.hero-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(245,248,250,.06);
  border: 1px solid rgba(245,248,250,.12);
  border-radius: var(--r-pill);
  padding: 4px;
  gap: 3px;
  margin-bottom: var(--sp-4);
  backdrop-filter: blur(10px);
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: none;
  background: transparent;
  color: rgba(245,248,250,.5);
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease-out),
              color 0.25s,
              box-shadow 0.25s;
}

.toggle-btn.active-cooling {
  background: rgba(30,114,179,.30);
  color: var(--white);
  box-shadow:
    0 0 18px rgba(114,209,240,.55),
    0 0 6px  rgba(114,209,240,.30),
    inset 0 0 0 1px rgba(114,209,240,.25),
    inset 0 1px 0 rgba(255,255,255,.10);
  animation: led-pulse-cool 2.4s ease-in-out infinite;
}

.toggle-btn.active-heating {
  background: rgba(249,115,22,.30);
  color: var(--white);
  box-shadow:
    0 0 18px rgba(249,115,22,.58),
    0 0 6px  rgba(249,115,22,.32),
    inset 0 0 0 1px rgba(249,115,22,.28),
    inset 0 1px 0 rgba(255,255,255,.10);
  animation: led-pulse-heat 2.4s ease-in-out infinite;
}

@keyframes led-pulse-cool {
  0%, 100% { box-shadow: 0 0 18px rgba(114,209,240,.55), 0 0 6px rgba(114,209,240,.30), inset 0 0 0 1px rgba(114,209,240,.25), inset 0 1px 0 rgba(255,255,255,.10); }
  50%       { box-shadow: 0 0 28px rgba(114,209,240,.75), 0 0 10px rgba(114,209,240,.45), inset 0 0 0 1px rgba(114,209,240,.35), inset 0 1px 0 rgba(255,255,255,.10); }
}

@keyframes led-pulse-heat {
  0%, 100% { box-shadow: 0 0 18px rgba(249,115,22,.58), 0 0 6px rgba(249,115,22,.32), inset 0 0 0 1px rgba(249,115,22,.28), inset 0 1px 0 rgba(255,255,255,.10); }
  50%       { box-shadow: 0 0 30px rgba(249,115,22,.80), 0 0 12px rgba(249,115,22,.50), inset 0 0 0 1px rgba(249,115,22,.40), inset 0 1px 0 rgba(255,255,255,.10); }
}

@media (prefers-reduced-motion: reduce) {
  .toggle-btn.active-cooling,
  .toggle-btn.active-heating { animation: none; }
}

/* Hero content */
.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,248,250,.07);
  border: 1px solid rgba(245,248,250,.14);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 0.70rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ice-accent);
  margin-bottom: var(--sp-3);
}

.hero-headline-wrap {
  position: relative;
  min-height: 5rem;
  margin-bottom: var(--sp-3);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);  /* 45→77px — 2 clean lines guaranteed */
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
}

.hero-headline .accent-word {
  display: block;
  color: var(--ice-accent);
  transition: color 0.5s var(--ease-out);
}

.hero.heating .hero-headline .accent-word { color: var(--orange); }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(245,248,250,.68);
  max-width: 500px;
  margin-bottom: var(--sp-5);
  transition: opacity 0.35s var(--ease-out);
}

.hero-ctas { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

/* Mascot — larger, bleeds into composition, toggle-reactive glow */
.hero-mascot {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

/* Blurred glow blob behind mascot, color-reacts to toggle */
.hero-mascot::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,209,240,.22) 0%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  transition: background 0.7s var(--ease-out), opacity 0.7s;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
}

.hero.heating .hero-mascot::before {
  background: radial-gradient(circle, rgba(249,115,22,.26) 0%, transparent 70%);
}

.hero-mascot img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;        /* substantially larger */
  margin-right: -48px;     /* bleeds well past column boundary */
  filter:
    drop-shadow(0 0 44px rgba(114,209,240,.38))
    drop-shadow(0 28px 56px rgba(0,0,0,.50));
  animation: float 6s ease-in-out infinite;
  will-change: transform;
  transition: filter 0.7s var(--ease-out);
}

.hero.heating .hero-mascot img {
  filter:
    drop-shadow(0 0 44px rgba(249,115,22,.42))
    drop-shadow(0 28px 56px rgba(0,0,0,.50));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mascot img { animation: none; }
}

/* ─── Floating Trust Strip ──────────────────────────────────────────────────── */
.floating-strip {
  position: relative;
  z-index: var(--z-raised);
  margin-top: -52px;
  padding: 0 var(--sp-4);
}

.floating-strip-inner {
  max-width: 1020px;
  margin: 0 auto;
  background: rgba(11, 28, 50, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--r-xl);
  border: 1px solid rgba(114,209,240,.12);
  box-shadow:
    0 24px 48px rgba(0,0,0,.35),
    0 8px 18px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.06);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  text-decoration: none;
  color: var(--white);
  border-radius: var(--r-xl);
  transition: background 0.15s;
}

.strip-item + .strip-item {
  border-left: 1px solid rgba(245,248,250,.07);
}

.strip-item:hover { background: rgba(255,255,255,.04); }

.strip-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: rgba(114,209,240,.10);
  color: var(--ice-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.strip-item.emergency .strip-icon {
  background: rgba(249,115,22,.12);
  color: var(--orange);
}

.strip-label {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245,248,250,.45);
  display: block;
}

.strip-value {
  font-family: var(--font-mono);
  font-size: 0.93rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  display: block;
  line-height: 1.3;
}

/* ─── Sections ─────────────────────────────────────────────────────────────── */
/* Sections — subtle brand-tinted mesh gradients, not flat white */
.section {
  padding: var(--sp-12) var(--sp-4);
  background:
    radial-gradient(ellipse 60% 55% at 95% 8%,  rgba(30,114,179,.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 4%  92%,  rgba(30,114,179,.03) 0%, transparent 50%),
    #ffffff;
}

.section-sm  { padding: var(--sp-8) var(--sp-4); }
.section-lg  { padding: var(--sp-16) var(--sp-4); }

.section-alt {
  background:
    radial-gradient(ellipse 70% 60% at 90% 5%,  rgba(30,114,179,.055) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 8%  95%,  rgba(249,115,22,.022) 0%, transparent 50%),
    var(--surface);
}

/* Dark section — for emergency/heating page accent sections */
.section.section-dark {
  background:
    radial-gradient(ellipse 70% 80% at 15% 55%, rgba(30,114,179,.14) 0%, transparent 60%),
    radial-gradient(ellipse 55% 60% at 85% 25%, rgba(114,209,240,.06) 0%, transparent 55%),
    var(--navy-deep);
}

.section.section-dark .section-title,
.section.section-dark h2,
.section.section-dark h3 { color: var(--white); }
.section.section-dark .section-body,
.section.section-dark p { color: rgba(245,248,250,.65); }
.section.section-dark .eyebrow { color: var(--ice-accent); }

/* Trust items inside dark sections */
.section.section-dark .trust-icon   { background: rgba(114,209,240,.10); color: var(--ice-accent); }
.section.section-dark .trust-item h3 { color: var(--white); }
.section.section-dark .trust-item p  { color: rgba(245,248,250,.62); }

.container { max-width: 1320px; margin: 0 auto; }

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto var(--sp-8);
}

.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.69rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ice-blue);
  margin-bottom: var(--sp-1);
}
.eyebrow.fire { color: var(--orange); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-2);
}

.section-body {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.72;
}

/* ─── Service Cards (card grid still used on service sub-pages) ─────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-3);
}

/* ─── Editorial numbered service list (home page, not card grid) ────────────── */
.svc-list {
  list-style: none;
  border-top: 1px solid rgba(11,28,50,.08);
}

.svc-link {
  display: grid;
  grid-template-columns: 44px 1fr auto 44px;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(11,28,50,.08);
  transition: padding-left 0.28s var(--ease-out),
              border-color  0.28s,
              background    0.28s;
  border-radius: 0;
}

.svc-link:hover {
  padding-left: 18px;
  border-bottom-color: var(--ice-blue);
  background: rgba(30,114,179,.025);
  border-radius: var(--r-md);
}

.svc-link:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: var(--r-sm); }

.svc-num {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  color: var(--ice-blue);
  letter-spacing: 0.08em;
  font-weight: 500;
  opacity: 0.8;
}

.svc-body h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.svc-body p {
  font-size: 0.865rem;
  color: var(--gray-soft);
  line-height: 1.5;
}

.svc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.svc-tag {
  background: rgba(30,114,179,.07);
  color: var(--ice-blue);
  border: 1px solid rgba(30,114,179,.14);
  border-radius: 100px;
  padding: 3px 11px;
  font-size: 0.67rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.svc-arrow {
  font-size: 1.3rem;
  color: var(--gray-border);
  transition: color 0.2s, transform 0.2s var(--ease-out);
  text-align: right;
}

.svc-link:hover .svc-arrow {
  color: var(--ice-blue);
  transform: translateX(5px);
}

/* Emergency / heating row variants */
.svc-item.emg .svc-num,
.svc-item.emg .svc-tag { color: var(--orange); }
.svc-item.emg .svc-tag { background: rgba(249,115,22,.07); border-color: rgba(249,115,22,.14); }
.svc-item.emg .svc-link:hover { border-bottom-color: var(--orange); background: rgba(249,115,22,.025); }
.svc-item.emg .svc-link:hover .svc-arrow { color: var(--orange); }

.svc-item.heat .svc-num,
.svc-item.heat .svc-tag { color: var(--orange); }
.svc-item.heat .svc-tag { background: rgba(249,115,22,.07); border-color: rgba(249,115,22,.14); }
.svc-item.heat .svc-link:hover { border-bottom-color: var(--orange); background: rgba(249,115,22,.025); }
.svc-item.heat .svc-link:hover .svc-arrow { color: var(--orange); }

/* Trust inline line — replaces utility bar on service pages */
.page-trust-line {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  color: rgba(245,248,250,.28);
  margin-bottom: var(--sp-2);
  display: block;
}

@media (max-width: 640px) {
  .svc-link { grid-template-columns: 36px 1fr 36px; }
  .svc-tags { display: none; }
}

.service-card {
  display: block;
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.20s var(--ease-out),
              box-shadow 0.20s var(--ease-out),
              border-color 0.20s;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ice-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-ice);
  border-color: rgba(30,114,179,.18);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* Service icons — no pastel box. Icon stands alone with direct glow. */
.service-icon {
  width: 44px;
  height: 44px;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice-blue);
  margin-bottom: var(--sp-3);
  transition: filter 0.20s var(--ease-out), transform 0.20s var(--ease-out);
}

/* Icon has its own brand-colored drop shadow — the 21st.dev-level polish */
.service-icon svg {
  width: 38px;
  height: 38px;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(30,114,179,.38));
  transition: filter 0.20s var(--ease-out);
}

.service-card:hover .service-icon { transform: translateY(-2px); }
.service-card:hover .service-icon svg {
  filter: drop-shadow(0 5px 14px rgba(30,114,179,.55));
}

.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}

.card-arrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ice-blue);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.service-card:hover .card-arrow { gap: 8px; }

/* Heating card variant (orange icons) */
.service-card.heating-card .service-icon        { color: var(--orange); }
.service-card.heating-card .service-icon svg    { filter: drop-shadow(0 3px 10px rgba(249,115,22,.40)); }
.service-card.heating-card:hover .service-icon svg { filter: drop-shadow(0 5px 14px rgba(249,115,22,.58)); }
.service-card.heating-card .card-arrow          { color: var(--orange); }
.service-card.heating-card::after               { background: var(--orange); }
.service-card.heating-card:hover                { box-shadow: var(--shadow-fire); border-color: rgba(249,115,22,.18); }

/* Emergency variant */
.service-card.emergency::after                 { background: var(--orange); }
.service-card.emergency .service-icon          { background: none; color: var(--orange); }
.service-card.emergency .service-icon svg      { filter: drop-shadow(0 3px 10px rgba(249,115,22,.42)); }
.service-card.emergency:hover                  { box-shadow: var(--shadow-fire); border-color: rgba(249,115,22,.18); }
.service-card.emergency .card-arrow            { color: var(--orange); }
.service-card.emergency:hover .service-icon svg { filter: drop-shadow(0 5px 16px rgba(249,115,22,.58)); }

/* ─── Trust Pillars ─────────────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--sp-4);
}

.trust-item { text-align: center; padding: var(--sp-3); }

.trust-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-xl);
  background: rgba(30,114,179,.07);
  color: var(--ice-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-2);
}

.trust-item h3 { font-size: 1.0rem; margin-bottom: 6px; }

.trust-item p { font-size: 0.875rem; line-height: 1.6; }

/* ─── CTA Banner ────────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  padding: var(--sp-10) var(--sp-4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(30,114,179,.11) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner .section-title { color: var(--white); margin-bottom: var(--sp-2); }
.cta-banner .section-body  { color: rgba(245,248,250,.65); max-width: 540px; margin: 0 auto var(--sp-5); }
.cta-btns { display: flex; gap: var(--sp-2); justify-content: center; flex-wrap: wrap; }

.cta-trust-line {
  margin-top: var(--sp-3);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(245,248,250,.28);
}

/* ─── Testimonials Marquee ──────────────────────────────────────────────────── */
.marquee-outer {
  overflow: hidden;
  position: relative;
}

.marquee-fade {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: var(--sp-3);
  width: max-content;
  animation: marquee-l 42s linear infinite;
}
.marquee-track.rev { animation: marquee-r 42s linear infinite; margin-top: var(--sp-3); }

.marquee-outer:hover .marquee-track,
.marquee-outer:hover .marquee-track.rev { animation-play-state: paused; }

@keyframes marquee-l { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0);     } }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .marquee-track.rev { animation: none; }
}

.review-card {
  flex-shrink: 0;
  width: 296px;
  background: var(--navy-deep);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  border: 1px solid rgba(114,209,240,.09);
}

.review-stars {
  color: var(--ice-accent);
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-1);
}

.review-card p {
  font-size: 0.875rem;
  color: rgba(245,248,250,.72);
  line-height: 1.62;
  margin-bottom: var(--sp-1);
}

.review-card .reviewer {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray-soft);
  letter-spacing: 0.04em;
}

/* ─── Plan Teaser ───────────────────────────────────────────────────────────── */
.plan-teaser {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-5);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(114,209,240,.10);
}

.plan-teaser::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(114,209,240,.07) 0%, transparent 70%);
  pointer-events: none;
}

.plan-teaser h2 { color: var(--white); font-size: 1.55rem; margin-bottom: 6px; }
.plan-teaser p  { color: rgba(245,248,250,.60); font-size: 0.95rem; }
.plan-teaser-btns { display: flex; gap: var(--sp-2); flex-wrap: wrap; flex-shrink: 0; }

/* ─── Page Hero (service pages) ─────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: calc(var(--sp-10) + 74px) var(--sp-4) var(--sp-8);  /* top pad = sp-10 + nav height */
  margin-top: -74px;                /* pull up behind transparent nav */
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 85% at 20% 50%, rgba(30,114,179,.20) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero.heating-page::before {
  background: radial-gradient(ellipse 65% 85% at 80% 50%, rgba(249,115,22,.20) 0%, transparent 60%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: var(--sp-2); }
.page-hero p  { color: rgba(245,248,250,.68); font-size: 1.05rem; max-width: 580px; margin-bottom: var(--sp-5); }
.page-hero .ctas { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

/* Emergency page top alert */
.emergency-alert {
  background: var(--orange);
  padding: 10px var(--sp-4);
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: calc(var(--z-nav) + 2);
}

.emergency-phone {
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin: var(--sp-3) 0;
  font-variant-numeric: tabular-nums;
  transition: color 0.12s;
}
.emergency-phone:hover { color: var(--orange); }

/* ─── Content Sections (service pages) ──────────────────────────────────────── */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.content-two-col.reverse { direction: rtl; }
.content-two-col.reverse > * { direction: ltr; }

.img-block {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  counter-reset: step;
}

.process-list li {
  display: flex;
  gap: var(--sp-2);
  counter-increment: step;
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ice-blue);
  background: rgba(30,114,179,.08);
  border-radius: var(--r-sm);
  padding: 3px 7px;
  height: fit-content;
  flex-shrink: 0;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
  text-align: left;
  transition: background 0.12s;
  gap: var(--sp-2);
}

.faq-question:hover { background: var(--surface); }
.faq-question:focus-visible { outline: 2px solid var(--orange); outline-offset: -2px; }

.faq-chevron {
  flex-shrink: 0;
  color: var(--ice-blue);
  transition: transform 0.25s var(--ease-out);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 var(--sp-4) var(--sp-3);
  border-top: 1px solid var(--gray-border);
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p { font-size: 0.925rem; color: var(--charcoal); line-height: 1.7; padding-top: var(--sp-2); }

/* ─── Tabs (Residential/Commercial) ─────────────────────────────────────────── */
.tab-nav {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--gray-border);
  border-radius: var(--r-lg);
  padding: 4px;
  max-width: 380px;
  margin: 0 auto var(--sp-8);
}

.tab-btn {
  flex: 1;
  padding: 12px var(--sp-3);
  border: none;
  background: transparent;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-soft);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

.tab-btn.active {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.tab-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── Maintenance Plans ─────────────────────────────────────────────────────── */
.plans-intro {
  background: var(--navy-deep);
  padding: calc(var(--sp-8) + 74px) var(--sp-4) var(--sp-6);
  margin-top: -74px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.plans-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 20% 50%, rgba(30,114,179,.14) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 80% 50%, rgba(249,115,22,.10) 0%, transparent 60%);
  pointer-events: none;
}

.plans-intro-inner { position: relative; z-index: 1; }
.plans-intro h1    { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--sp-2); }
.plans-intro p     { color: rgba(245,248,250,.62); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  max-width: 860px;
  margin: 0 auto var(--sp-6);
}

.pricing-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-5);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-border);
  position: relative;
  transition: transform 0.20s var(--ease-out), box-shadow 0.20s;
}

.pricing-card.featured {
  border-color: var(--orange);
  transform: translateY(-10px);
  box-shadow: var(--shadow-fire), var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy-deep);
  margin-bottom: var(--sp-2);
}

.pricing-amount {
  font-family: var(--font-mono);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pricing-amount sup {
  font-size: 1.4rem;
  vertical-align: super;
  margin-top: 0.3em;
  font-weight: 500;
}

.pricing-period {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray-soft);
  margin-top: 4px;
  margin-bottom: var(--sp-3);
  display: block;
}

.pricing-features {
  list-style: none;
  border-top: 1px solid var(--gray-border);
  padding-top: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--charcoal);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-border);
  line-height: 1.45;
}

.pricing-features li:last-child { border-bottom: none; }

.check-icon { color: var(--ice-blue); flex-shrink: 0; margin-top: 2px; }
.pricing-card.featured .check-icon { color: var(--orange); }

.pricing-extra {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray-soft);
  text-align: center;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--gray-border);
  letter-spacing: 0.03em;
}

/* Addons grid */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-3);
  max-width: 860px;
  margin: 0 auto;
}

.addon-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-3);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s;
}

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

.addon-price {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy-deep);
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}

.addon-name { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }

/* ─── Contact Form ──────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-8);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-3);
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-deep);
  font-family: var(--font-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px var(--sp-2);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-deep);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ice-blue);
  box-shadow: 0 0 0 3px rgba(30,114,179,.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── About Page ────────────────────────────────────────────────────────────── */
.about-hero {
  background: var(--navy-deep);
  padding: calc(var(--sp-12) + 74px) var(--sp-4) var(--sp-12);
  margin-top: -74px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 20% 50%, rgba(30,114,179,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(249,115,22,.12) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.about-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: var(--sp-2); }
.about-hero p  { color: rgba(245,248,250,.65); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

.about-mascot-hero {
  width: 200px;
  margin: 0 auto var(--sp-4);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.4));
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--sp-10) var(--sp-4) var(--sp-6);
}

.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(245,248,250,.09);
}

.footer-brand img { height: 60px; width: auto; margin-bottom: var(--sp-2); }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(245,248,250,.80);
  line-height: 1.45;
  margin-bottom: var(--sp-2);
}

.footer-tagline .orange { color: var(--orange); }

.footer-desc {
  font-size: 0.83rem;
  color: rgba(245,248,250,.4);
  line-height: 1.65;
  max-width: 250px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice-accent);
  margin-bottom: var(--sp-3);
}

.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  color: rgba(245,248,250,.58);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.12s;
}
.footer-nav a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }

.footer-phone {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  transition: color 0.12s;
}
.footer-phone:hover { color: var(--orange); }

.footer-email {
  font-size: 0.875rem;
  color: var(--ice-accent);
  text-decoration: none;
  transition: opacity 0.12s;
}
.footer-email:hover { opacity: .75; }

.footer-location { font-size: 0.83rem; color: rgba(245,248,250,.45); }

.footer-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }

.city-chip {
  background: rgba(245,248,250,.05);
  border: 1px solid rgba(245,248,250,.09);
  border-radius: var(--r-pill);
  padding: 2px 9px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(245,248,250,.42);
  letter-spacing: 0.03em;
}

.footer-license {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(245,248,250,.28);
  letter-spacing: 0.04em;
  margin-top: var(--sp-2);
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(245,248,250,.28);
}

.footer-trust-line {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(245,248,250,.34);
}

.footer-trust-line .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(245,248,250,.2);
}

/* ─── Scroll Progress Bar ──────────────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--ice-accent), var(--orange));
  z-index: calc(var(--z-cursor) - 1);
  border-radius: 0 2px 2px 0;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ─── Hero entrance keyframes ──────────────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(48px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0)    scale(1);    }
}

/* ─── Enhanced Scroll Reveal ───────────────────────────────────────────────── */
/* Base (from below) */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity    0.65s cubic-bezier(0.22,1,0.36,1),
    transform  0.65s cubic-bezier(0.22,1,0.36,1),
    filter     0.65s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}

/* Directional variants */
.reveal[data-dir="left"]  { transform: translateX(-52px); }
.reveal[data-dir="right"] { transform: translateX(52px);  }
.reveal[data-dir="scale"] { transform: scale(0.88) translateY(14px); }
.reveal[data-dir="blur"]  { filter: blur(7px); transform: translateY(18px); }

/* Triggered state */
.reveal.revealed,
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ─── Stagger children ─────────────────────────────────────────────────────── */
[data-stagger-child] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   0.58s cubic-bezier(0.22,1,0.36,1),
    transform 0.58s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}

[data-stagger-child].revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-stagger-child] { opacity: 1 !important; transform: none !important; filter: none !important; }
  #scroll-progress { display: none; }
}

/* ─── Screen-reader only ────────────────────────────────────────────────────── */
.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;
}

/* ─── Interactive Hover Button — circle-expand mechanic (21st component) ─────── */
.btn-ihv {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 13px 30px;
  overflow: hidden;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  -webkit-user-select: none;
  user-select: none;
}

.btn-ihv:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.btn-ihv:active        { transform: scale(0.97); }

/* The expanding circle — transform: scale(0) makes it physically invisible */
.ihv-dot {
  position: absolute;
  left: 22%;
  top: 38%;
  width: 10px; height: 10px;
  border-radius: 9999px;
  transform: scale(0);                  /* physically zero-size until hover */
  transition: transform 0.40s cubic-bezier(0.34, 1.2, 0.64, 1);
  pointer-events: none;
  z-index: 1;
}
.btn-ihv:hover .ihv-dot { transform: scale(38); }

/* Current text — slides right and fades on hover */
.ihv-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.26s ease, opacity 0.26s ease;
}
.btn-ihv:hover .ihv-text { transform: translateX(54px); opacity: 0; }

/* Reveal content — slides in from left on hover */
.ihv-reveal {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transform: translateX(-54px);
  opacity: 0;
  transition: transform 0.26s ease, opacity 0.26s ease;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}
.btn-ihv:hover .ihv-reveal { transform: translateX(0); opacity: 1; }

/* Orange variant (primary CTA) */
.btn-ihv-orange {
  color: var(--white);
  border-color: rgba(249,115,22,.45);
  background: rgba(249,115,22,.10);
}
.btn-ihv-orange .ihv-dot      { background: var(--orange); }
.btn-ihv-orange:hover          { border-color: var(--orange); }

/* Ghost variant (secondary CTA on dark bg) */
.btn-ihv-ghost {
  color: var(--white);
  border-color: rgba(245,248,250,.28);
  background: rgba(245,248,250,.05);
  backdrop-filter: blur(8px);
}
.btn-ihv-ghost .ihv-dot       { background: rgba(245,248,250,.85); }
.btn-ihv-ghost:hover           { border-color: rgba(245,248,250,.55); }

/* Outline variant (on light backgrounds) */
.btn-ihv-outline {
  color: var(--navy-deep);
  border-color: rgba(11,28,50,.50);
  background: transparent;
}
.btn-ihv-outline .ihv-dot      { background: var(--navy-deep); }
.btn-ihv-outline .ihv-reveal   { color: var(--white); }
.btn-ihv-outline:hover          { border-color: var(--navy-deep); }

@media (prefers-reduced-motion: reduce) {
  .ihv-dot  { transition: none; }
  .ihv-text, .ihv-reveal { transition: none; }
  .btn-ihv:hover .ihv-text    { transform: none; opacity: 1; }
  .btn-ihv:hover .ihv-reveal  { display: none; }
  .btn-ihv:hover .ihv-dot     { transform: scale(1); }
}

/* ─── Glassmorphism Trust Hero — right column cards (21st component) ─────────── */

/* Hero inner: 7/5 split for trust hero layout */
/* Override applied directly on .hero-inner */

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  justify-content: center;
}

/* Ghost mascot — shines dimly through the glass cards */
.hero-mascot-ghost {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 440px; height: 440px;
  pointer-events: none;
  z-index: 0;
}
.hero-mascot-ghost img {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.16;
  filter: drop-shadow(0 0 50px rgba(114,209,240,.22));
  -webkit-mask-image: radial-gradient(circle, black 25%, transparent 70%);
  mask-image: radial-gradient(circle, black 25%, transparent 70%);
}

/* Glass stats card */
.glass-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  padding: var(--sp-5);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.08);
}

/* Inner glow blob (top-right) */
.gc-glow {
  position: absolute;
  top: -48px; right: -48px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  filter: blur(35px);
  pointer-events: none;
}

.gc-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.gc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.gc-stat-num {
  font-family: var(--font-mono);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.gc-stat-label {
  font-size: 0.78rem;
  color: rgba(245,248,250,.48);
  margin-top: 3px;
}

.gc-bar { margin-bottom: var(--sp-4); }
.gc-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(245,248,250,.50);
  margin-bottom: 8px;
}
.gc-bar-labels span:last-child { color: var(--white); font-weight: 500; }
.gc-bar-track {
  height: 6px;
  background: rgba(255,255,255,.10);
  border-radius: 100px;
  overflow: hidden;
}
.gc-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(245,248,250,.45), rgba(245,248,250,.88));
}

.gc-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.09);
  margin: 0 0 var(--sp-3);
}

.gc-mini-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  text-align: center;
  margin-bottom: var(--sp-4);
}
.gc-mini-div {
  width: 1px; height: 32px;
  background: rgba(255,255,255,.10);
  margin: 0 auto;
}
.gc-mini-val {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.gc-mini-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,248,250,.38);
  margin-top: 2px;
}

.gc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.gc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 4px 11px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  color: rgba(245,248,250,.62);
}
/* ─── Pricing split layout (ref: images #15 / #16) ─────────────────────────── */
.pricing-split-section {
  background: var(--surface);
  padding: var(--sp-12) var(--sp-4);
}

.pricing-split-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.pricing-split-header h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-1);
}

.pricing-split-body {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--sp-8);
  align-items: start;
}

.pricing-includes h3 {
  font-family: var(--font-mono);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-soft);
  margin-bottom: var(--sp-3);
}

.pi-list { list-style: none; }
.pi-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.875rem;
  color: var(--charcoal);
}
.pi-list li:last-child { border-bottom: none; }
.pi-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.pi-check svg { color: #fff; }

.pricing-configurator {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
}

.pc-label {
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gray-soft);
  display: block;
  margin-bottom: 10px;
}

.plan-toggle {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--gray-border);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
  margin-bottom: var(--sp-4);
}

.plan-toggle-btn {
  flex: 1;
  padding: 11px var(--sp-2);
  border: none;
  background: transparent;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}

.plan-toggle-btn.active {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(11,28,50,.22);
}

.plan-toggle-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.plan-price-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(11,28,50,.08);
  color: var(--navy-deep);
}
.plan-toggle-btn.active .plan-price-tag { background: rgba(255,255,255,.18); color: rgba(245,248,250,.85); }

.premium-extras {
  border: 1px solid rgba(249,115,22,.20);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  background: rgba(249,115,22,.03);
  margin-bottom: var(--sp-4);
}
.premium-extras.hidden { display: none; }
.pe-label {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}
.pe-list { list-style: none; }
.pe-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.84rem; color: var(--charcoal);
  padding: 5px 0;
  border-bottom: 1px solid rgba(249,115,22,.10);
}
.pe-list li:last-child { border-bottom: none; }
.pe-check { color: var(--orange); flex-shrink: 0; margin-top: 1px; }

.pc-divider { border: none; border-top: 1px solid var(--gray-border); margin: var(--sp-3) 0; }

.pc-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.pc-price {
  font-family: var(--font-mono);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pc-price sup { font-size: 1.4rem; vertical-align: super; }
.pc-period { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gray-soft); }
.pc-extra { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gray-soft); margin-bottom: var(--sp-4); }
.pc-cta .btn-ihv, .pc-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 768px) {
  .pricing-split-body { grid-template-columns: 1fr; gap: var(--sp-5); }
}

.gc-tag.live {
  border-color: rgba(74,222,128,.25);
  background: rgba(74,222,128,.07);
  color: rgba(134,239,172,.85);
}

.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  position: relative;
  flex-shrink: 0;
}
.live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4ade80;
  animation: ld-ping 1.4s ease-in-out infinite;
}
@keyframes ld-ping {
  0%   { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(2.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .live-dot::before { animation: none; } }

/* Glass marquee card */
.glass-marquee {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: var(--sp-3) 0;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.05);
}
.gm-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(245,248,250,.38);
  padding: 0 var(--sp-4);
  margin-bottom: 10px;
  display: block;
}
.gm-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.gm-track {
  display: flex;
  white-space: nowrap;
  animation: gm-left 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245,248,250,.78);
  letter-spacing: 0.04em;
}
.gm-wrap:hover .gm-track { animation-play-state: paused; }
@keyframes gm-left {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .gm-track { animation: none; } }

/* ─── Shader Feature Cards — CSS gradient simulates @paper-design/shaders-react ─ */
.shader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.shader-card {
  position: relative;
  height: 308px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s;
}
.shader-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0,0,0,.36); }
.shader-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* Animated gradient — replaces WebGL Warp shader with CSS approximation */
.shader-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, var(--sc1), var(--sc2), var(--sc3), var(--sc4));
  background-size: 400% 400%;
  animation: sc-swirl 9s ease-in-out infinite;
}
/* Stagger animation phase per card */
.shader-card:nth-child(2) .shader-bg { animation-delay: -1.5s; }
.shader-card:nth-child(3) .shader-bg { animation-delay: -3.0s; }
.shader-card:nth-child(4) .shader-bg { animation-delay: -4.5s; }
.shader-card:nth-child(5) .shader-bg { animation-delay: -6.0s; }
.shader-card:nth-child(6) .shader-bg { animation-delay: -7.5s; }

@keyframes sc-swirl {
  0%   { background-position: 0% 50%;   }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%;   }
}
@media (prefers-reduced-motion: reduce) { .shader-bg { animation: none; } }

/* Dark glass overlay (like component's bg-black/80) */
.shader-ov {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.76);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  transition: background 0.22s;
}
.shader-card:hover .shader-ov { background: rgba(0,0,0,.68); }

/* Content */
.shader-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-4);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.shader-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: var(--sp-3);
  filter: drop-shadow(0 2px 10px rgba(255,255,255,.22));
}
.shader-icon svg { width: 40px; height: 40px; }
.shader-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.shader-card p {
  font-size: 0.855rem;
  color: rgba(245,248,250,.78);
  line-height: 1.58;
  flex: 1;
}
.shader-learn {
  margin-top: var(--sp-2);
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(245,248,250,.62);
  transition: color 0.15s, gap 0.15s;
}
.shader-card:hover .shader-learn { color: #fff; gap: 9px; }

@media (max-width: 1024px) { .shader-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .shader-grid { grid-template-columns: 1fr; } }

/* ─── Scroll reveal ─────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: calc(var(--sp-8) + 56px);
    padding-top: var(--sp-6);
  }
  .hero-toggle, .hero-badge, .hero-ctas { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  /* On mobile: text first, glass cards follow */
  .hero-right { order: 2; margin-top: var(--sp-4); }
  .hero-mascot-ghost { display: none; }
  .glass-card { padding: var(--sp-3); }
  .gc-mini-grid { grid-template-columns: 1fr auto 1fr; } /* hide middle stat on mobile */
  .gc-mini-grid > :nth-child(3),
  .gc-mini-grid > :nth-child(4) { display: none; }

  .floating-strip-inner { grid-template-columns: 1fr; border-radius: var(--r-xl); }
  .strip-item + .strip-item { border-left: none; border-top: 1px solid rgba(245,248,250,.07); }

  .content-two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .pricing-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .pricing-card.featured { transform: none; }

  .plan-teaser { flex-direction: column; text-align: center; }
  .plan-teaser-btns { justify-content: center; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .plan-teaser { padding: var(--sp-5); }
}

/* ─── Service Area Map ───────────────────────────────────────────────────────── */

.service-area-section {
  overflow: hidden;
}

/* Stats bar above the map */
.sa-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}

.sa-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.sa-stat-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.sa-stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-soft);
}

.sa-stat-sep {
  width: 1px;
  height: 28px;
  background: var(--gray-border);
  flex-shrink: 0;
}

/* Map container */
.sa-map-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(30,114,179,.18),
    0 8px 32px rgba(11,28,50,.30),
    0 2px 8px rgba(11,28,50,.15);
}

#service-area-map {
  height: 500px;
  width: 100%;
  background: var(--navy-deep);
  display: block;
  z-index: 1;
}

/* Leaflet tile tint — keeps it close to --navy-deep */
#service-area-map .leaflet-tile-pane {
  filter: brightness(0.92) saturate(0.82);
}

/* Coverage polygon — stroke drawn via JS stroke-dasharray */
.coverage-poly {
  /* fill-opacity is also set via JS style attribute for animation */
}

/* ── City marker wrapper — replaces leaflet-div-icon white box ── */
.cb-marker {
  background: none !important;
  border: none !important;
  cursor: pointer;
}

.cb-marker--hub {
  cursor: default;
  z-index: 1000 !important;
}

/* City pin — ice-blue dot */
.cb-pin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #72D1F0;
  border: 2px solid rgba(30,114,179,.55);
  box-shadow:
    0 0 8px rgba(114,209,240,.60),
    0 0 0 3px rgba(114,209,240,.12);
  transform: scale(1);
  opacity: 1;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity   0.30s ease;
  will-change: transform, opacity;
}

/* Hidden initial state — removed by JS when animating in */
.cb-pin--hidden {
  transform: scale(0);
  opacity: 0;
}

/* Hover scale for non-hub pins */
.cb-marker:hover .cb-pin:not(.cb-pin--hub) {
  transform: scale(1.55);
  box-shadow:
    0 0 14px rgba(114,209,240,.85),
    0 0 0 4px rgba(114,209,240,.18);
}

/* Austin hub pin — orange pulsing */
.cb-pin--hub {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.cb-dot {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    0 0 12px rgba(249,115,22,.70),
    0 0 24px rgba(249,115,22,.35);
  z-index: 2;
}

/* Pulsing rings radiating outward from Austin */
.cb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  inset: 0;
  opacity: 0;
  animation: cb-ring-pulse 2.4s ease-out infinite;
}

.cb-ring--1 { animation-delay: 0s;    }
.cb-ring--2 { animation-delay: 1.2s;  }

@keyframes cb-ring-pulse {
  0%   { inset: 4px;  opacity: 0.80; }
  100% { inset: -18px; opacity: 0;   }
}

@media (prefers-reduced-motion: reduce) {
  .cb-ring { animation: none; opacity: 0; }
}

/* ── Tooltips ── */
.cb-tip {
  background: rgba(11,28,50,.95) !important;
  border: 1px solid rgba(114,209,240,.28) !important;
  border-radius: 8px !important;
  padding: 5px 12px !important;
  font-family: 'Oswald', 'Arial Narrow', sans-serif !important;
  font-size: 0.83rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  color: #F5F8FA !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.50) !important;
  backdrop-filter: blur(8px) !important;
}

/* Arrow color */
.cb-tip.leaflet-tooltip-top::before {
  border-top-color: rgba(11,28,50,.95) !important;
}
.leaflet-tooltip-top.cb-tip::before {
  border-top-color: rgba(11,28,50,.95) !important;
}

/* Austin hub tooltip — slightly different style */
.cb-tip--hub {
  background: rgba(249,115,22,.92) !important;
  border-color: rgba(249,115,22,.50) !important;
  color: #fff !important;
  font-size: 0.88rem !important;
}

.cb-tip--hub.leaflet-tooltip-top::before,
.leaflet-tooltip-top.cb-tip--hub::before {
  border-top-color: rgba(249,115,22,.92) !important;
}

/* Leaflet attribution — brand-tinted */
#service-area-map .leaflet-control-attribution {
  background: rgba(11,28,50,.80) !important;
  color: rgba(245,248,250,.28) !important;
  font-size: 0.58rem !important;
  padding: 2px 8px !important;
  border-radius: 6px 0 0 0 !important;
  backdrop-filter: blur(4px) !important;
}

#service-area-map .leaflet-control-attribution a {
  color: rgba(114,209,240,.45) !important;
}

/* ── City chips — below the map ── */
.sa-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-4);
  justify-content: center;
}

.sa-chip {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  letter-spacing: 0.05em;
  background: rgba(30,114,179,.07);
  border: 1px solid rgba(30,114,179,.18);
  color: var(--navy-mid);
  border-radius: var(--r-pill);
  padding: 4px 13px;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
  white-space: nowrap;
}

.sa-chip--hub {
  background: rgba(249,115,22,.08);
  border-color: rgba(249,115,22,.25);
  color: var(--orange-deep);
  font-weight: 500;
}

.sa-chip:hover {
  background: rgba(30,114,179,.14);
  border-color: rgba(30,114,179,.35);
  color: var(--ice-blue);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  #service-area-map { height: 400px; }
}

@media (max-width: 640px) {
  #service-area-map { height: 300px; }

  .sa-stats {
    gap: var(--sp-2);
    flex-direction: column;
    align-items: center;
  }

  .sa-stat-sep { display: none; }

  .sa-stat-num { font-size: 1.25rem; }
  .sa-stat-label { font-size: 0.62rem; }
}

/* ─── Contact Page — Polar Bear Glassmorphism ────────────────────────────────── */

.contact-bear-section {
  position: relative;
  overflow: hidden;
  padding: var(--sp-10) var(--sp-4);
}

/* Polar bear full-bleed background */
.contact-bear-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact-bear-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

/* Vignette overlay — single radial, light in center so bear face shows */
.contact-bear-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 75% 85% at 50% 42%,
    rgba(11,28,50,.22) 0%,
    rgba(11,28,50,.52) 55%,
    rgba(11,28,50,.80) 100%
  );
  z-index: 1;
}

.contact-bear-inner {
  position: relative;
  z-index: 2;
}

.contact-bear-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: var(--sp-5);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

/* Glass card shared style */
.contact-glass-card {
  background: rgba(11, 28, 50, 0.52);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(114, 209, 240, 0.18);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.45),
    0 2px 12px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 0 1px rgba(114, 209, 240, 0.05);
}

/* Glass card — headings/text overrides for dark bg */
.contact-glass-card h3 {
  color: var(--white);
}

.contact-glass-card .sa-chip {
  color: rgba(245,248,250,.72);
  background: rgba(30,114,179,.14);
  border-color: rgba(30,114,179,.30);
}

.contact-glass-card .sa-chip--hub {
  color: rgba(249,190,100,.88);
  background: rgba(249,115,22,.12);
  border-color: rgba(249,115,22,.28);
}

/* Glass form inputs */
.glass-label {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: rgba(245, 248, 250, 0.80) !important;
}

.glass-input {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1.5px solid rgba(114, 209, 240, 0.22) !important;
  color: var(--white) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.glass-input::placeholder {
  color: rgba(245, 248, 250, 0.28) !important;
}

.glass-input:focus {
  border-color: var(--ice-accent) !important;
  box-shadow: 0 0 0 3px rgba(114, 209, 240, 0.14) !important;
  background: rgba(255, 255, 255, 0.10) !important;
  outline: none;
}

/* Select options on dark bg */
.glass-input option {
  background: var(--navy-deep);
  color: var(--white);
}

/* Contact info detail labels (mono eyebrows) */
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(114, 209, 240, 0.60);
  display: block;
  margin-bottom: 5px;
}

/* Horizontal rule inside glass card */
.glass-rule {
  border: none;
  border-top: 1px solid rgba(114, 209, 240, 0.10);
  margin: var(--sp-3) 0;
}

@media (max-width: 900px) {
  .contact-bear-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .contact-bear-section {
    padding: var(--sp-8) var(--sp-3);
  }
}

/* ─── From the Field Gallery ─────────────────────────────────────────────────── */
.field-gallery-section {
  background:
    radial-gradient(ellipse 60% 80% at 15% 40%, rgba(30,114,179,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 60%, rgba(114,209,240,.06) 0%, transparent 55%),
    var(--navy-deep);
  overflow: hidden;
  position: relative;
}

/* Subtle grain overlay */
.field-gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.field-gallery-section .section-title { color: var(--white); }
.field-gallery-section .section-body  { color: rgba(245,248,250,.60); }
.field-gallery-section .eyebrow       { color: var(--ice-accent); }

.field-row-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.field-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 4px 0;
}

.field-track-l { animation: field-left  52s linear infinite; }
.field-track-r { animation: field-right 60s linear infinite; }

.field-row-wrap:hover .field-track-l,
.field-row-wrap:hover .field-track-r { animation-play-state: paused; }

@keyframes field-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes field-right { from { transform: translateX(-50%); } to { transform: translateX(0);     } }

@media (prefers-reduced-motion: reduce) {
  .field-track-l,
  .field-track-r { animation: none !important; }
}

.field-card {
  flex-shrink: 0;
  width: 230px;
  height: 310px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(114,209,240,.09);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s;
  cursor: pointer;
}

.field-card.wide {
  width: 370px;
}

.field-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow:
    0 24px 48px rgba(0,0,0,.55),
    0 0 0 1px rgba(114,209,240,.18);
}

.field-card img,
.field-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

.field-card:hover img,
.field-card:hover video { transform: scale(1.07); }

/* Base gradient — always present, subtle */
.field-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,28,50,.90) 0%,
    rgba(11,28,50,.20) 40%,
    transparent 65%
  );
  opacity: 0.35;
  transition: opacity 0.28s;
}

.field-card:hover .field-card-overlay { opacity: 1; }

.field-card-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.28s var(--ease-out), opacity 0.28s;
}

.field-card:hover .field-card-caption {
  transform: translateY(0);
  opacity: 1;
}

.field-caption-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.60rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ice-accent);
  margin-bottom: 4px;
}

.field-caption-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* Video card play icon — always visible */
.field-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.20);
  color: var(--white);
  pointer-events: none;
  transition: transform 0.28s var(--ease-out), background 0.28s;
}

.field-card:hover .field-play-icon {
  transform: translate(-50%, -50%) scale(1.14);
  background: rgba(249,115,22,.55);
  border-color: rgba(249,115,22,.40);
}

/* Live pulse dot on video card */
.field-card-video .field-card-overlay { opacity: 0.45; }
