/* ============================================================
   WatchTower 15 — Marketing Site Design System
   ============================================================ */

/* === TOKENS === */
:root {
  --ground:       #0B0F1A;
  --surface:      #131C2E;
  --surface-2:    #1A2540;
  --surface-3:    #1F2D4D;
  --border:       #1E2D4A;
  --border-light: #243355;
  --accent:       #6366f1;
  --accent-dim:   rgba(99,102,241,0.12);
  --accent-glow:  rgba(99,102,241,0.22);
  --cyan:         #22d3ee;
  --cyan-dim:     rgba(34,211,238,0.12);
  --text:         #E2E8F0;
  --text-dim:     #94A3B8;
  --muted:        #64748B;
  --good:         #22c55e;
  --good-dim:     rgba(34,197,94,0.12);
  --warn:         #f59e0b;
  --warn-dim:     rgba(245,158,11,0.12);
  --danger:       #ef4444;
  --danger-dim:   rgba(239,68,68,0.12);
  --sans:         system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono:         ui-monospace, 'Cascadia Code', 'SF Mono', 'Fira Code', 'Consolas', monospace;
  --r:            8px;
  --r-lg:         14px;
  --r-xl:         20px;
  --nav-h:        64px;
  --container:    1120px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ground);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }
ul, ol { list-style: none; }

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--sm { padding: 64px 0; }
.section--xs { padding: 40px 0; }

/* === TYPOGRAPHY === */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}
h1, .h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.025em;
}
h2, .h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h3, .h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h4, .h4 { font-size: 18px; font-weight: 600; line-height: 1.3; }
h5, .h5 { font-size: 15px; font-weight: 600; }
.lead { font-size: 18px; color: var(--text-dim); line-height: 1.75; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.text-cyan { color: var(--cyan); }
.text-good { color: var(--good); }
.text-center { text-align: center; }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #5254d4;
  box-shadow: 0 0 28px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1.5px solid var(--border-light);
}
.btn-ghost:hover {
  color: var(--text);
  background: var(--surface);
  border-color: var(--muted);
}
.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(99,102,241,0.4);
}
.btn-outline-accent:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-accent { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(99,102,241,0.2); }
.badge-good   { background: var(--good-dim);   color: var(--good);   border: 1px solid rgba(34,197,94,0.2); }
.badge-cyan   { background: var(--cyan-dim);   color: var(--cyan);   border: 1px solid rgba(34,211,238,0.2); }
.badge-warn   { background: var(--warn-dim);   color: var(--warn);   border: 1px solid rgba(245,158,11,0.2); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  flex-direction: column;
  transition: background 0.2s, border-color 0.2s, backdrop-filter 0.2s;
}
.site-nav.scrolled {
  background: rgba(11,15,26,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  flex-shrink: 0;
}
.logo-wordmark {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-wordmark span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s;
  padding: 4px 0;
  position: relative;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav-cta { margin-left: 24px; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--text-dim);
  margin-left: auto;
  border-radius: var(--r);
  transition: background 0.15s, color 0.15s;
}
.nav-toggle:hover { background: var(--surface); color: var(--text); }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  padding: 10px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}
.nav-mobile .nav-link:last-of-type { border-bottom: none; }
.nav-mobile .btn { margin-top: 12px; width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.13) 0%, transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-content h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Terminal */
.terminal {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.terminal-bar {
  background: var(--surface-2);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.t-dot-r { background: #ef4444; opacity: 0.7; }
.t-dot-y { background: var(--warn); opacity: 0.7; }
.t-dot-g { background: var(--good); opacity: 0.7; }
.terminal-label {
  margin-left: auto;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--muted);
}
.terminal-body {
  padding: 20px 22px 24px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  min-height: 230px;
}
.t-prompt  { color: var(--cyan); }
.t-out     { color: var(--text-dim); }
.t-success { color: var(--good); }
.t-cursor  {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--accent);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: blink 1s step-end infinite;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}
.trust-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.sh { margin-bottom: 64px; }
.sh .eyebrow { margin-bottom: 14px; }
.sh h2 { margin-bottom: 16px; }
.sh .lead { max-width: 580px; }
.sh.centered { text-align: center; }
.sh.centered .lead { margin: 0 auto; }

/* ============================================================
   PILLAR CARDS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pillar:hover {
  border-color: var(--border-light);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.pillar-uptime::before   { background: linear-gradient(90deg, var(--accent), #818cf8); }
.pillar-agent::before    { background: linear-gradient(90deg, var(--cyan), var(--good)); }
.pillar-security::before { background: linear-gradient(90deg, var(--good), var(--accent)); }
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.pillar-icon-uptime   { background: var(--accent-dim); }
.pillar-icon-agent    { background: var(--cyan-dim); }
.pillar-icon-security { background: var(--good-dim); }
.pillar h3 { margin-bottom: 10px; }
.pillar p  { color: var(--text-dim); font-size: 15px; line-height: 1.7; }
.pillar-check-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dim);
}
.pillar-check-list li::before {
  content: '✓';
  color: var(--good);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FEATURE HIGHLIGHTS GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 0.2s;
}
.feature-item:hover { border-color: var(--border-light); }
.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.feature-icon-cyan { background: var(--cyan-dim); }
.feature-icon-good { background: var(--good-dim); }
.feature-icon-warn { background: var(--warn-dim); }
.feature-item h4 { margin-bottom: 6px; }
.feature-item p { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comp-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.comp-table thead tr { background: var(--surface-2); }
.comp-table th {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.comp-table th:first-child { width: 200px; }
.comp-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.comp-row-wt15 { background: rgba(99,102,241,0.05) !important; }
.comp-row-wt15 td:first-child { font-weight: 700; color: var(--text); }
.ci   { color: var(--good); font-size: 15px; }   /* check */
.cx   { color: var(--danger); font-size: 15px; } /* cross */
.cp   { color: var(--warn); font-size: 12px; font-weight: 500; }  /* partial */
.cn   { color: var(--muted); font-size: 12px; }  /* n/a */
.comp-pricing { font-family: var(--mono); font-size: 12px; color: var(--text-dim); }
.comp-pricing-bad  { color: #f87171; }
.comp-pricing-good { color: var(--good); }
.comp-wt15-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wt15-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   DATADOG CALLOUT
   ============================================================ */
.billing-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.billing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.billing-card-bad {
  border-color: rgba(239,68,68,0.25);
}
.billing-card-good {
  border-color: rgba(34,197,94,0.25);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(34,197,94,0.04) 100%);
}
.billing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.billing-badge-bad  { background: var(--danger-dim); color: #f87171; }
.billing-badge-good { background: var(--good-dim);   color: var(--good); }
.billing-card h3 { margin-bottom: 20px; }
.billing-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.billing-line:last-child { border-bottom: none; }
.billing-line-k { color: var(--text-dim); }
.billing-line-v { font-family: var(--mono); font-size: 12.5px; }
.bv-bad  { color: #f87171; }
.bv-good { color: var(--good); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(99,102,241,0.1) 100%);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--r-xl);
  padding: 80px 48px;
  text-align: center;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lead { margin-bottom: 36px; }
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
}
.footer-body {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand {
  flex: 0 0 260px;
}
.footer-brand .nav-logo {
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 240px;
}
.footer-cols {
  display: flex;
  gap: 64px;
  flex: 1;
  justify-content: flex-end;
}
.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--text-dim); }

/* ============================================================
   FEATURES PAGE
   ============================================================ */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.feature-section:last-child { border-bottom: none; }
.feature-section--flip .feature-text { order: 2; }
.feature-section--flip .feature-visual { order: 1; }
.feature-section .eyebrow { margin-bottom: 14px; }
.feature-section h2 { margin-bottom: 16px; font-size: clamp(24px, 3vw, 36px); }
.feature-section .lead { margin-bottom: 28px; font-size: 16px; }
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.55;
}
.check-list li::before {
  content: '✓';
  color: var(--good);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-visual {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 28px;
}
.feature-visual-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--surface-2);
  border-radius: var(--r);
  font-size: 13px;
}
.fv-label { color: var(--text-dim); font-family: var(--mono); }
.fv-val-good  { color: var(--good);  font-family: var(--mono); font-size: 12px; }
.fv-val-warn  { color: var(--warn);  font-family: var(--mono); font-size: 12px; }
.fv-val-muted { color: var(--muted); font-family: var(--mono); font-size: 12px; }
.fv-val-cyan  { color: var(--cyan);  font-family: var(--mono); font-size: 12px; }
.fv-badge {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.fv-badge-good { background: var(--good-dim); color: var(--good); }
.fv-badge-warn { background: var(--warn-dim); color: var(--warn); }

/* Code snippet used in features */
.code-snippet {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.75;
  overflow-x: auto;
}
.cs-comment { color: var(--muted); }
.cs-key     { color: var(--accent); }
.cs-val     { color: var(--cyan); }
.cs-good    { color: var(--good); }
.cs-path    { color: var(--warn); }

/* ============================================================
   PRICING PAGE
   ============================================================ */

/* How-it-works row on pricing page */
.pricing-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-how-card .phc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.pricing-sum-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  text-align: center;
  margin-top: 32px;
}
.pricing-sum-title {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}
.pricing-sum-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Included grid icon variant */
.included-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Billing model comparison — pricing page */
.pricing-compare-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
.billing-compare-side {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.billing-compare-other { border-color: rgba(239,68,68,0.2); }
.billing-compare-wt15 {
  border-color: rgba(34,197,94,0.2);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(34,197,94,0.04) 100%);
}
.billing-compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 8px;
}
.bc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}
.bc-logo { font-size: 14px; font-weight: 700; }
.bc-logo-other { color: #f87171; }
.bc-logo-wt15  { color: var(--good); }
.bc-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.bc-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
}
.bc-line svg { flex-shrink: 0; margin-top: 1px; }
.bc-total-bad, .bc-total-good {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.bc-total-bad  { background: var(--danger-dim); color: #f87171; }
.bc-total-good { background: var(--good-dim);   color: var(--good); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
}
.about-split-text .eyebrow { margin-bottom: 14px; }
.about-split-text h2 { margin-bottom: 20px; }
.about-split-text p { color: var(--text-dim); font-size: 15px; line-height: 1.75; }

.about-split-values {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-value { display: flex; gap: 14px; align-items: flex-start; }
.about-value-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.about-value strong { display: block; font-size: 15px; margin-bottom: 4px; }
.about-value p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

.residency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.residency-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
}
.rc-flag {
  font-size: 36px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.residency-card h3 { margin-bottom: 10px; font-size: 19px; }
.residency-card p  { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

.security-model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.sm-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.sm-card .check-list li { font-size: 13px; }

.gdpr-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gdpr-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.gdpr-card h3 { margin-bottom: 10px; font-size: 18px; }
.gdpr-card p  { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

.contact-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.contact-band-text .eyebrow { margin-bottom: 14px; }
.contact-band-text .lead { margin-top: 16px; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dim);
}
.contact-list svg { flex-shrink: 0; color: var(--accent); }
.contact-list a { color: var(--accent); }
.contact-list a:hover { text-decoration: underline; }

.contact-info-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px;
}
.contact-info-card h3 { font-size: 20px; margin-bottom: 10px; }
.contact-info-card p  { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

/* ============================================================
   404 PAGE — COMPONENT CLASSES
   ============================================================ */
.notfound-section {
  min-height: calc(100vh - var(--nav-h) - 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.notfound-container { text-align: center; }
.notfound-code {
  display: block;
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.notfound-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Inline code base style */
code {
  font-family: var(--mono);
  font-size: 0.875em;
  background: var(--surface-2);
  padding: 1px 5px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.pricing-hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.pricing-hero-note span { color: var(--good); font-weight: 600; }
.pricing-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.pricing-how-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
}
.pricing-how-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.pricing-how-card h3 { margin-bottom: 10px; font-size: 19px; }
.pricing-how-card p  { font-size: 14px; color: var(--text-dim); }
.pricing-resource-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.included-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  gap: 14px;
}
.included-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--good);
  flex-shrink: 0;
  margin-top: 5px;
}
.included-item h4 { margin-bottom: 4px; font-size: 15px; }
.included-item p  { font-size: 13px; color: var(--text-dim); line-height: 1.55; }

/* ============================================================
   ABOUT / TRUST PAGE
   ============================================================ */
.trust-item {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.trust-item:last-child { border-bottom: none; }
.trust-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--r-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.trust-item h3 { margin-bottom: 10px; }
.trust-item p  { color: var(--text-dim); font-size: 15px; line-height: 1.7; max-width: 680px; }
.trust-item p + p { margin-top: 10px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.contact-card h2 { margin-bottom: 12px; }
.contact-card .lead { margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dim);
  padding: 8px 0;
}
.contact-detail-icon { color: var(--accent); font-size: 18px; }
.contact-detail a { color: var(--accent); }
.contact-detail a:hover { text-decoration: underline; }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: calc(100vh - var(--nav-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.page-404-code {
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.page-404 h1 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.page-404 p  { color: var(--text-dim); margin-bottom: 32px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--border); }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.3); opacity: 1; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars               { grid-template-columns: 1fr; }
  .features-grid         { grid-template-columns: 1fr; }
  .included-grid         { grid-template-columns: repeat(2, 1fr); }
  .pricing-how           { grid-template-columns: 1fr; }
  .pricing-compare-split { grid-template-columns: 1fr; }
  .billing-compare-vs    { display: none; }
  .about-split           { grid-template-columns: 1fr; gap: 48px; padding: 56px 0; }
  .residency-grid        { grid-template-columns: 1fr; }
  .security-model-grid   { grid-template-columns: 1fr; }
  .gdpr-cards            { grid-template-columns: 1fr; }
  .contact-band          { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section--sm { padding: 48px 0; }
  h1, .h1 { font-size: clamp(32px, 8vw, 48px); }
  h2, .h2 { font-size: clamp(24px, 6vw, 36px); }

  .hero { padding: 72px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-sub { max-width: none; }
  .hero-terminal-col { display: none; }

  .billing-compare { grid-template-columns: 1fr; }

  .feature-section { grid-template-columns: 1fr; gap: 40px; }
  .feature-section--flip .feature-text { order: 1; }
  .feature-section--flip .feature-visual { order: 2; }

  .pricing-how-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }

  .contact-card { flex-direction: column; gap: 32px; }

  .footer-body { flex-direction: column; gap: 32px; }
  .footer-brand { flex: none; }
  .footer-cols { justify-content: flex-start; flex-wrap: wrap; gap: 32px; }

  .cta-band { padding: 56px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .sh { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-pills { gap: 8px; }
  .trust-pill { font-size: 12px; padding: 6px 12px; }
  .billing-card { padding: 24px; }
  .contact-card { padding: 28px; }
}
