/* ========== Everwatch Design System ========== */
:root {
  --navy-900: #0A1628;
  --navy-800: #0F1E3A;
  --navy-700: #142850;
  --navy-600: #1E3A6B;
  --navy-500: #2A4A80;
  --blue-500: #2563EB;
  --blue-400: #3B82F6;
  --blue-300: #60A5FA;
  --blue-100: #DBEAFE;
  --blue-50:  #EFF6FF;
  --amber-500: #D97706;
  --amber-400: #F59E0B;
  --amber-100: #FEF3C7;
  --amber-50:  #FFFBEB;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --bg:        #FAFBFC;
  --bg-tint:   #F4F7FB;
  --white:     #FFFFFF;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.04), 0 1px 3px rgba(10, 22, 40, 0.04);
  --shadow:    0 4px 12px rgba(10, 22, 40, 0.06), 0 2px 4px rgba(10, 22, 40, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(10, 22, 40, 0.12), 0 8px 16px -8px rgba(10, 22, 40, 0.06);
  --shadow-xl: 0 40px 80px -20px rgba(10, 22, 40, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

/* ========== Typography ========== */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(42px, 6vw, 84px); letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 4.2vw, 60px); letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; }

p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow.dark { color: var(--blue-300); }
.eyebrow.dark::before { background: var(--blue-300); box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.18); }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.75; }
}

/* ========== Layout ========== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 20px; }
.section-head .lede {
  font-size: 19px;
  color: var(--slate-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 8px 20px -8px rgba(10,22,40,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 14px 28px -10px rgba(10,22,40,0.55); }
.btn-accent {
  background: var(--blue-500); color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(37,99,235,0.5);
}
.btn-accent:hover { transform: translateY(-2px); background: var(--blue-400); }
.btn-ghost {
  background: transparent;
  padding: 15px 0;
  color: var(--slate-700);
}
.btn-ghost:hover { color: var(--blue-500); }
.btn-ghost .arrow { transition: transform .2s ease; }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-light {
  background: var(--white); color: var(--navy-900);
  box-shadow: 0 8px 20px -8px rgba(10,22,40,0.3);
}
.btn-light:hover { transform: translateY(-2px); }

/* ========== Nav ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 28px;
  transition: backdrop-filter .2s ease, background .2s ease, border-color .2s ease;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 24px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(10,22,40,0.06);
  border-radius: 999px;
  box-shadow: 0 4px 24px -8px rgba(10,22,40,0.06);
}
.nav.scrolled .nav-inner {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 32px -12px rgba(10,22,40,0.12);
}
.logo {
  display: flex; align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-logo .logo-img {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.nav-links {
  display: flex; align-items: center; gap: 30px;
  font-size: 14.5px; font-weight: 500;
  color: var(--slate-700);
}
.nav-links a { color: inherit; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--navy-900); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 18px; font-size: 14px; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { padding: 8px 12px 8px 16px; gap: 10px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 9px 14px; font-size: 13px; white-space: nowrap; }
  .nav-cta .btn-ghost { padding: 8px 4px !important; font-size: 13px !important; }
  .logo-img { height: 44px; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 6px 10px 6px 12px; gap: 6px; }
  .nav-cta { gap: 4px; }
  .nav-cta .btn-accent { font-size: 12px; padding: 8px 12px; }
  .nav-cta .btn-ghost { padding: 6px 2px !important; font-size: 12px !important; }
  .logo-img { height: 38px; }
}

/* ========== Hero: photo background ========== */
.hero {
  position: relative;
  padding: 140px 0 0;
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
}
.hero-photo .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(0.72) saturate(0.85) contrast(0.95);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10,22,40,0.72) 0%,
      rgba(10,22,40,0.48) 35%,
      rgba(10,22,40,0.25) 60%,
      rgba(10,22,40,0.1) 100%),
    linear-gradient(180deg,
      rgba(10,22,40,0.2) 0%,
      rgba(10,22,40,0.0) 40%,
      rgba(10,22,40,0.45) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
  min-height: 620px;
  max-width: 1280px;
  display: block;
}
.hero-left { position: relative; z-index: 3; max-width: 680px; }

/* Hero support band — own dark section below the hero */
.hero-support-band {
  background: var(--navy-900);
  color: #fff;
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-support-band .hero-below {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.hero-support-band .hero-support {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 60ch;
}
.hero-support-band .hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.hero-support-band .stat {
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-support-band .stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero-support-band .stat .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 900px) {
  .hero-support-band .hero-below { grid-template-columns: 1fr; gap: 32px; }
}

/* Light up text on dark photo */
.hero-photo .hero-title { color: #fff !important; }
.hero-photo .hero-title .word {
  color: #fff !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.hero-photo .hero-title .word.accent {
  background: linear-gradient(135deg, #ffffff 0%, var(--blue-300) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}
.hero-photo .hero-sub { color: rgba(255,255,255,0.95) !important; }
.hero-photo .live-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-photo .btn-primary { background: #fff; color: var(--navy-900); }
.hero-photo .btn-primary:hover { background: var(--blue-50); }
.hero-photo .btn-ghost { color: #fff !important; }
.hero-photo .btn-ghost .arrow { color: #fff !important; }
.hero-photo .btn-ghost:hover { color: var(--blue-300) !important; }

@media (max-width: 900px) {
  .hero-inner { min-height: auto; padding-bottom: 64px; }
}

.hero-title {
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 14ch;
  overflow: visible;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s cubic-bezier(.2,.7,.1,1) forwards;
  line-height: 1.15;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--blue-500), var(--navy-900) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--slate-700);
  max-width: 32ch;
  margin-bottom: 36px;
  line-height: 1.35;
  font-weight: 500;
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}
.hero-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 72px; }

/* live ticker beside headline */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10,22,40,0.07);
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--slate-700);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
  animation: pulse 1.6s ease-in-out infinite;
}

/* ========== Pillars ========== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px 36px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--blue-500), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.pillar:hover::before { opacity: 1; }
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border: 1px solid var(--slate-200);
  display: grid; place-items: center;
  margin-bottom: 28px;
  color: var(--blue-500);
}
.pillar h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.pillar p {
  font-size: 14.5px;
  color: var(--slate-600);
  line-height: 1.55;
}
.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-400);
  letter-spacing: 0.12em;
  position: absolute;
  top: 24px; right: 24px;
}
@media (max-width: 900px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pillars-grid { grid-template-columns: 1fr; } }

/* ========== Transparency section ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.right-heavy { grid-template-columns: 1fr 1.1fr; }
@media (max-width: 900px) { .split, .split.right-heavy { grid-template-columns: 1fr; gap: 48px; } }

.feature-list { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.feature-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--slate-200);
}
.feature-item:last-child { border-bottom: 1px solid var(--slate-200); }
.feature-item .icon-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-500);
  display: grid; place-items: center;
}
.feature-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.feature-item p { font-size: 14.5px; color: var(--slate-600); line-height: 1.55; }

/* Transparency visual: stacked cards */
.visual-stack {
  position: relative;
  max-width: 380px;
  width: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.viz-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  width: 100%;
  transition: transform .4s cubic-bezier(.2,.7,.1,1);
}
.viz-card-2 {
  background: var(--navy-900); color: #fff; border-color: var(--navy-700);
}
.visual-stack:hover .viz-card { transform: translateY(-4px); }

.viz-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-500);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.viz-card.viz-card-2 .viz-label { color: var(--blue-300); }
.viz-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.viz-card.viz-card-2 .viz-num { color: #fff; }
.viz-sub {
  font-size: 13px; color: var(--slate-500); margin-top: 6px;
}
.viz-card.viz-card-2 .viz-sub { color: rgba(255,255,255,0.65); }
.viz-bars {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px;
  align-items: end; height: 52px; margin-top: 16px;
}
.viz-bar {
  background: var(--blue-500);
  border-radius: 2px;
  opacity: 0.85;
}

.viz-notif {
  display: flex; gap: 12px; align-items: flex-start;
}
.viz-notif-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber-400);
  margin-top: 7px; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.18);
}
.viz-notif strong {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 14.5px;
  display: block;
  margin-bottom: 2px;
}
.viz-notif span { font-size: 13px; color: var(--slate-500); }
.viz-notif time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
}

/* ========== Responsive / Always-on section ========== */
.responsive {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.responsive::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(37,99,235,0.25), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(37,99,235,0.12), transparent 55%);
  pointer-events: none;
}
.responsive h2 { color: #fff; }
.responsive .container { position: relative; z-index: 2; }

/* 24h clock ring */
.clock-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
.clock-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
}
.clock-ring.r2 { inset: 10%; border-color: rgba(255,255,255,0.08); }
.clock-ring.r3 { inset: 22%; border-color: rgba(255,255,255,0.06); }
.clock-ring.r4 {
  inset: 34%;
  background: radial-gradient(circle, rgba(37,99,235,0.35), transparent 70%);
  border: none;
  animation: pulseCore 3s ease-in-out infinite;
}
@keyframes pulseCore {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* Clock center readout — below the dial */
.clock-center {
  position: absolute;
  top: calc(100% + 24px); left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  z-index: 3;
}
.clock-center .big {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
  background: linear-gradient(135deg, #fff, var(--blue-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.clock-center .ampm {
  font-size: 0.55em;
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.14em;
  font-weight: 600;
  color: rgba(147,197,253,0.95);
  text-transform: uppercase;
  line-height: 1;
  align-self: flex-start;
  margin-top: 0.1em;
}
.clock-center .small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  display: block;
}

.clock-tick {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px; height: 12px;
  background: rgba(255,255,255,0.25);
}
.clock-tick.major { background: rgba(255,255,255,0.5); height: 18px; }

/* Analog hands */
.clock-face {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.clock-hand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 50% 100%;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.4s cubic-bezier(.2,.7,.1,1);
}
.hand-hour {
  width: 4px;
  height: 22%;
  margin-left: -2px;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.85) 100%);
  box-shadow: 0 0 16px rgba(96,165,250,0.5);
}
.hand-minute {
  width: 3px;
  height: 32%;
  margin-left: -1.5px;
  background: linear-gradient(180deg, #fff 0%, rgba(147,197,253,0.9) 100%);
  box-shadow: 0 0 14px rgba(96,165,250,0.4);
}
.hand-second {
  width: 1.5px;
  height: 36%;
  margin-left: -0.75px;
  background: var(--blue-300);
  opacity: 0.8;
  transition: transform 0.15s cubic-bezier(.4,1.6,.5,1);
}
.clock-cap {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  margin-left: -7px; margin-top: -7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(10,22,40,0.9), 0 0 20px rgba(96,165,250,0.6);
  z-index: 3;
}

.clock-event {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  animation: eventFade .8s ease-out backwards;
}
@media (max-width: 500px) {
  .clock-event {
    white-space: normal;
    max-width: 42%;
    padding: 7px 10px;
    font-size: 11px;
    gap: 6px;
    border-radius: 10px;
  }
  .clock-event time { font-size: 9.5px; margin-left: 0; }
}
.clock-event .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-300);
  box-shadow: 0 0 0 3px rgba(96,165,250,0.2);
}
.clock-event time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-left: 4px;
}
@keyframes eventFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.proof-points {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 36px;
}
.proof-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px; align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.proof-point:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.proof-point .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.proof-point .text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ========== Human-Led section (dark, redesigned) ========== */
.section.human {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section.human::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.06), transparent 50%);
  pointer-events: none;
}
.section.human .container { position: relative; z-index: 2; }
.section.human h2 { color: #fff; }

/* Centered intro */
.human-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.human-intro h2 { margin-top: 16px; margin-bottom: 28px; }
.human-credential {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
  justify-content: center;
}
.human-credential .sep { color: rgba(255,255,255,0.25); }

/* Superhuman capabilities block */
.superhuman-block {
  max-width: 860px;
  margin: 0 auto;
}
.superhuman-intro {
  text-align: center;
  margin-bottom: 48px;
}
.superhuman-intro .sh-eq {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-300);
  display: block;
  margin-bottom: 16px;
}
.superhuman-intro p {
  font-size: 19px;
  font-family: var(--font-display);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.superhuman-list {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.superhuman-list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.sh-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.02em;
  padding-top: 2px;
}
.sh-body {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}
.sh-body strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.superhuman-closing {
  margin-top: 56px;
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.superhuman-closing p {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: -0.01em;
  line-height: 1.45;
  max-width: 52ch;
  margin: 0 auto;
}
.superhuman-closing em {
  font-style: normal;
  color: var(--blue-300);
}

/* Staggered reveal for capability rows */
.superhuman-list li.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.superhuman-list li.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .superhuman-list li { grid-template-columns: 1fr; gap: 10px; }
  .human-intro { margin-bottom: 48px; }
  .superhuman-intro p { font-size: 17px; }
  .sh-label { font-size: 18px; }
}

/* ========== Comparison ========== */
.compare {
  background: var(--white);
}
.compare-table {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: #fff;
  box-shadow: var(--shadow);
}
.compare-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  border-top: 1px solid var(--slate-200);
}
.compare-row:first-child { border-top: none; }
.compare-row.head { background: var(--slate-50); }
.compare-row.head > div {
  padding: 20px 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 500;
}
.compare-row.head .ev-col {
  color: var(--blue-500);
  background: var(--blue-50);
  position: relative;
}
.compare-row.head .ev-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue-500);
}
.compare-row > div { padding: 24px 28px; }
.compare-cat {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  font-size: 16px;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 12px;
}
.compare-cat .dotnum {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-400);
  font-weight: 400;
}
.compare-trad {
  color: var(--slate-500);
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  padding-left: 44px !important;
}
.compare-trad::before {
  content: '';
  position: absolute;
  left: 28px; top: 28px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--slate-400);
}
.compare-ev {
  color: var(--navy-900);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.5;
  background: linear-gradient(90deg, var(--blue-50) 0%, rgba(239,246,255,0) 100%);
  position: relative;
  padding-left: 44px !important;
}
.compare-ev::before {
  content: '';
  position: absolute;
  left: 28px; top: 26px;
  width: 10px; height: 10px;
  background:
    linear-gradient(var(--blue-500), var(--blue-500)) center/6px 2px no-repeat,
    linear-gradient(var(--blue-500), var(--blue-500)) center/2px 6px no-repeat;
}
@media (max-width: 760px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row.head { display: none; }
  .compare-cat {
    padding: 18px 20px 10px !important;
    border-bottom: 1px solid var(--slate-100);
  }
  .compare-trad {
    padding: 10px 20px 10px 20px !important;
    padding-top: 28px !important;
    border-bottom: 1px solid var(--slate-100);
  }
  .compare-trad::after {
    content: 'TRADITIONAL';
    position: absolute;
    top: 10px; left: 20px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--slate-400);
    font-weight: 500;
  }
  .compare-trad::before { display: none; }
  .compare-ev {
    padding: 10px 20px 18px 20px !important;
    padding-top: 28px !important;
    background: linear-gradient(90deg, var(--blue-50) 0%, rgba(239,246,255,0.4) 100%);
  }
  .compare-ev::after {
    content: 'EVERWATCH';
    position: absolute;
    top: 10px; left: 20px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--blue-500);
    font-weight: 600;
  }
  .compare-ev::before { display: none; }
}

/* ========== How it works ========== */
.how { background: var(--slate-50); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--slate-200) 20%, var(--slate-200) 80%, transparent);
  z-index: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-top: 3px solid var(--blue-500);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  z-index: 1;
  transition: all .3s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 28px;
  position: relative;
}
.step h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.step-subtitle { font-size: 14.5px; color: var(--slate-600); line-height: 1.55; margin-bottom: 20px; max-width: 92%; }
.step-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.step-list li { font-size: 13px; font-weight: 400; color: var(--slate-500); line-height: 1.4; display: flex; align-items: flex-start; gap: 10px; }
.step-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); flex-shrink: 0; margin-top: 5px; opacity: 0.7; }
.step-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

/* ========== Pricing ========== */
.pricing-card {
  background: linear-gradient(135deg, #fff, var(--blue-50));
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 60%);
  border-radius: 50%;
}
.pricing-left { position: relative; z-index: 2; }
.pricing-left .eyebrow { margin-bottom: 16px; }
.pricing-left h3 { font-size: 32px; margin-bottom: 16px; color: var(--navy-900); }
.pricing-left p { font-size: 15px; color: var(--slate-600); line-height: 1.6; margin-bottom: 24px; }
.pricing-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.pricing-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
  color: var(--slate-700);
}
.pricing-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--blue-500);
  background-image: linear-gradient(white, white);
  background-size: 8px 2px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.pricing-right {
  position: relative; z-index: 2;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.035em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-amount .unit {
  font-size: 18px;
  color: var(--slate-500);
  font-weight: 500;
  letter-spacing: 0;
}
.pricing-amount-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: 10px;
}
.pricing-placeholder {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--slate-200);
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.5;
}
.pricing-placeholder strong {
  color: var(--slate-700); font-weight: 600;
  display: block; margin-bottom: 4px;
  font-family: var(--font-display);
}
@media (max-width: 760px) {
  .pricing-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
}

/* ========== Pricing Tabs ========== */
.pricing-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--slate-100);
  border-radius: var(--radius-xl);
  padding: 5px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.pricing-tab {
  flex: 1 1 0;
  min-width: 0;
  padding: 11px 16px;
  border: none;
  border-radius: calc(var(--radius-xl) - 4px);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--slate-600);
  transition: background 200ms, color 200ms, box-shadow 200ms;
  text-align: center;
  line-height: 1.3;
  word-break: break-word;
}
.pricing-tab:hover { color: var(--navy-900); }
.pricing-tab.active {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.pricing-tabs { margin-bottom: 40px; }

/* ========== Pricing Panels ========== */
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

/* ========== Fee Card Grid ========== */
.pricing-fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.pricing-fee-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-fee-card.featured {
  background: var(--blue-50);
  border-color: var(--blue-500);
  border-top-width: 3px;
  box-shadow: var(--shadow);
}
.pricing-fee-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  display: block;
  margin-bottom: 10px;
}
.pricing-fee-card.featured .pricing-fee-eyebrow { color: var(--blue-500); }
.pricing-fee-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-fee-pct {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
}
.pricing-fee-label {
  font-size: 13.5px;
  color: var(--slate-600);
  margin-top: 6px;
  line-height: 1.4;
}
.pricing-fee-min {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: 4px;
}
.pricing-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pricing-feature-list li {
  font-size: 13.5px;
  color: var(--slate-700);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.pricing-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
}
.pricing-fee-card.featured .pricing-feature-list li::before { background: var(--blue-500); }

/* ========== Transparent by Design band ========== */
.pricing-transparent-band {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.ptb-left { flex-shrink: 0; min-width: 200px; }
.ptb-left p { font-size: 14px; color: var(--slate-600); margin-top: 10px; line-height: 1.5; }
.ptb-right { flex: 1; }
.ptb-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 12px;
}
.ptb-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.ptb-list li {
  font-size: 13.5px;
  color: var(--slate-500);
  padding-left: 18px;
  position: relative;
  text-decoration: line-through;
  text-decoration-color: var(--slate-400);
}
.ptb-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  color: var(--slate-400);
  line-height: 1.6;
}

/* ========== Tenant Placement grid ========== */
.pricing-placement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.placement-main-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.placement-service { padding: 4px 0; }
.placement-service-header { margin-bottom: 16px; }
.placement-divider {
  border: none;
  border-top: 1px dashed var(--slate-200);
  margin: 24px 0;
}
.placement-marketing-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.placement-mkt-header p { font-size: 13.5px; color: var(--slate-600); margin-top: 10px; }
.placement-mkt-tiers { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mkt-tier {
  padding: 14px 0;
  border-bottom: 1px solid var(--slate-100);
}
.mkt-tier:last-child { border-bottom: none; }
.mkt-tier-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.mkt-tier-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
}
.mkt-tier-price {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-500);
}
.mkt-tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mkt-tier-list li {
  font-size: 13px;
  color: var(--slate-600);
  padding-left: 14px;
  position: relative;
}
.mkt-tier-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--slate-400);
}
.mkt-addon {
  border-top: 1px solid var(--slate-200);
  padding-top: 16px;
}
.mkt-addon-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
  display: block;
  margin-bottom: 8px;
}
.mkt-addon-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13.5px;
  color: var(--slate-700);
}
.mkt-addon-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-500);
}

/* ========== Pricing responsive ========== */
@media (max-width: 900px) {
  .pricing-transparent-band { flex-direction: column; gap: 20px; }
  .ptb-list { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .pricing-tabs { max-width: 100%; }
  .pricing-tab { font-size: 13px; padding: 10px 12px; }
  .pricing-fee-grid { grid-template-columns: 1fr; }
  .pricing-placement-grid { grid-template-columns: 1fr; }
  .pricing-fee-amount { font-size: 40px; }
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--slate-200);
}
.faq-item {
  border-bottom: 1px solid var(--slate-200);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  transition: color .2s;
}
.faq-q:hover { color: var(--blue-500); }
.faq-q .icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  display: grid; place-items: center;
  color: var(--slate-600);
  transition: all .25s ease;
}
.faq-item.open .faq-q .icon {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 28px;
}
.faq-a p {
  font-size: 15.5px;
  color: var(--slate-600);
  line-height: 1.65;
  max-width: 68ch;
}

/* ========== Final CTA ========== */
.final-cta {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(37,99,235,0.3), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(37,99,235,0.15), transparent 55%);
}
.final-cta .container { position: relative; z-index: 2; text-align: center; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 24px;
}
.final-cta .lede {
  color: rgba(255,255,255,0.7);
  font-size: 19px;
  max-width: 56ch;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.final-ctas {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.final-contact {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.final-contact a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.final-contact a:hover { border-color: var(--blue-300); }

/* ========== Footer ========== */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 36ch; }
.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer a:hover { color: var(--blue-300); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ========== Lead Capture Modal ========== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 520px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  position: relative;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.22s cubic-bezier(.2,.7,.1,1);
  outline: none;
}
.modal-backdrop.open .modal {
  transform: scale(1) translateY(0);
}
.modal-body {
  padding: 32px 44px 32px;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-500);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  z-index: 2;
}
.modal-close:hover {
  background: var(--slate-100);
  color: var(--navy-900);
  border-color: var(--slate-300);
}
.modal-sub {
  font-size: 15px;
  color: var(--slate-500);
  margin-top: 8px;
  margin-bottom: 20px;
  line-height: 1.55;
}

/* Form fields */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.005em;
}
.form-group label span { color: var(--blue-500); }
.form-group input {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--slate-800);
  background: var(--white);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-group input::placeholder { color: var(--slate-400); }
.form-group input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.form-group input.invalid {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.field-error {
  font-size: 13px;
  color: #DC2626;
  margin-top: -4px;
  display: none;
}
.form-group.has-error .field-error { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--slate-800);
  background: var(--white);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  resize: vertical;
  line-height: 1.5;
}
.form-group textarea::placeholder { color: var(--slate-400); }
.form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.field-optional {
  color: var(--slate-400);
  font-weight: 400;
  font-size: 13px;
}

.form-error-banner {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sm);
  color: #B91C1C;
  font-size: 13.5px;
  padding: 12px 16px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.form-error-banner a { color: #B91C1C; font-weight: 600; }

.modal-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}
.modal-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* Success state */
.modal-success {
  text-align: center;
  padding: 12px 0 8px;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-500);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 1.5px solid var(--blue-100);
}
.modal-success h4 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.modal-success p {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.6;
  max-width: 34ch;
  margin: 0 auto;
}
.success-contact {
  margin-top: 12px !important;
  font-size: 13.5px !important;
  color: var(--slate-500) !important;
}
.success-contact a {
  color: var(--blue-500);
  text-decoration: none;
  font-weight: 600;
}

/* Mobile: bottom sheet */
@media (max-width: 540px) {
  .modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }
  .modal {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-width: 100%;
    max-height: 92dvh;
    transform: translateY(24px);
  }
  .modal-backdrop.open .modal {
    transform: translateY(0);
  }
  .modal-body {
    padding: 36px 28px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal-backdrop, .modal { transition: none; }
}

/* Address autocomplete suggestions dropdown (fixed to body, escapes modal overflow) */
.address-suggestions {
  position: fixed;
  z-index: 10001;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 4px 0;
  margin: 0;
  max-height: 260px;
  overflow-y: auto;
}
.address-suggestion-item {
  padding: 10px 16px;
  font-size: 14.5px;
  color: var(--slate-700);
  cursor: pointer;
  line-height: 1.4;
  transition: background 0.1s;
}
.address-suggestion-item:hover {
  background: var(--blue-50);
  color: var(--navy-900);
}

/* ========== Scroll reveal ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
