/* =========================================================
   SynapseOps™ — Professional Stylesheet
   ========================================================= */

[hidden] { display: none !important; }

/* ---------------------------------------------------------
   Design Tokens
   --------------------------------------------------------- */
:root {
  /* Brand */
  --brand-navy:   #080f1e;
  --brand-blue:   #0a5fd4;
  --brand-teal:   #07a4af;
  --brand-green:  #10ad56;

  /* Surfaces */
  --bg:           #ffffff;
  --bg-subtle:    #f8f9fc;
  --bg-raised:    #ffffff;

  /* Borders */
  --border:       #e3e7ef;
  --border-mid:   #cdd2dc;

  /* Type */
  --ink:          var(--brand-navy);
  --ink-secondary:#3d4a5c;
  --ink-muted:    #64748b;

  /* Accents */
  --accent:       var(--brand-blue);
  --accent-soft:  rgba(10, 95, 212, 0.08);
  --accent-ring:  rgba(10, 95, 212, 0.22);

  /* Gradients */
  --grad-cta:     linear-gradient(135deg, #0a5fd4 0%, #07a4af 55%, #10ad56 100%);
  --grad-hero-bg: radial-gradient(ellipse 80% 60% at 60% -10%, rgba(10, 95, 212, 0.11) 0%, transparent 70%),
                  radial-gradient(ellipse 50% 40% at 90% 80%, rgba(7, 164, 175, 0.08) 0%, transparent 60%);

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(8, 15, 30, 0.06), 0 1px 2px rgba(8, 15, 30, 0.04);
  --shadow-md:    0 4px 12px rgba(8, 15, 30, 0.08), 0 2px 4px rgba(8, 15, 30, 0.04);
  --shadow-lg:    0 12px 32px rgba(8, 15, 30, 0.10), 0 4px 8px rgba(8, 15, 30, 0.04);
  --shadow-xl:    0 24px 48px rgba(8, 15, 30, 0.12), 0 8px 16px rgba(8, 15, 30, 0.06);

  /* Shape */
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    16px;
  --radius-xl:    20px;

  /* Layout */
  --max:          1120px;
  --nav-h:        64px;
}

/* ---------------------------------------------------------
   Reset & Base
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Headings use display font */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'DM Sans', sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

/* ---------------------------------------------------------
   Layout Utilities
   --------------------------------------------------------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------------------------------------------------
   Topbar
   --------------------------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.topbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  margin-right: 32px;
  flex-shrink: 0;
}

.brand-logo {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.brand.small .brand-logo,
.brand-logo.small { height: 28px; }

/* Nav */
.nav {
  display: flex;
  gap: 2px;
  align-items: center;
  flex: 1;
}

.nav-link {
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-secondary);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--bg-subtle);
  color: var(--ink);
}

.chev {
  font-size: 10px;
  opacity: 0.5;
  transition: transform 0.2s;
}

.has-menu.open .chev { transform: rotate(180deg); }

/* Dropdown */
.has-menu { position: relative; }

.menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-20%);
  width: 480px;
  display: none;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 12px;
  gap: 8px;
}

.menu-col { flex: 1; }

.menu-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
  padding: 6px 10px 8px;
}

.menu-link {
  display: block;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: var(--ink-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.menu-link:hover {
  background: var(--bg-subtle);
  color: var(--ink);
}

.has-menu.open .menu { display: flex; }

/* Topbar Actions */
.topbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: var(--radius);
  padding: 9px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.13s ease, opacity 0.13s ease, box-shadow 0.13s ease, background 0.13s ease, border-color 0.13s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 1px 3px rgba(8,15,30,.18), 0 4px 12px rgba(8,15,30,.10);
}

.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(8,15,30,.20);
}

/* Gradient CTA on hero/featured/callout */
.hero .btn-primary,
.price-card.featured .btn-primary,
.callout .btn-primary {
  background: var(--grad-cta);
  box-shadow: 0 2px 8px rgba(10,95,212,.25), 0 1px 2px rgba(8,15,30,.10);
}

.hero .btn-primary:hover,
.price-card.featured .btn-primary:hover,
.callout .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(10,95,212,.32);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-secondary);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--bg-subtle);
  border-color: var(--border-mid);
  color: var(--ink);
}

.btn-outline {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  padding: 12px 20px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}

.btn-block { width: 100%; }

/* ---------------------------------------------------------
   Mobile Toggle
   --------------------------------------------------------- */
.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius);
  padding: 9px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.mobile-nav {
  border-top: 1px solid var(--border);
  padding: 12px 20px 16px;
  display: grid;
  gap: 4px;
  background: var(--bg);
}

.mobile-nav a {
  color: var(--ink-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  display: block;
}

.mobile-nav a:hover {
  background: var(--bg-subtle);
  color: var(--ink);
}

.mobile-ctas {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: var(--grad-hero-bg);
  pointer-events: none;
  z-index: 0;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--accent-soft);
  border: 1px solid var(--accent-ring);
  border-radius: 999px;
  padding: 5px 12px 5px 8px;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--brand-blue);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(10,95,212,.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(10,95,212,0); }
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 4.5vw, 54px);
  color: var(--ink);
  font-weight: 800;
}

.hero-sub {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-secondary);
  max-width: 520px;
}

.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Proof metrics */
.hero-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metric {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  background: rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(6px); 
  backdrop-filter: blur(6px);
  min-width: 148px;
}

.metric-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.metric-lbl {
  color: var(--ink-muted);
  font-size: 12px;
  margin-top: 2px;
  font-weight: 500;
}

/* Hero card */
.hero-card .card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  background: var(--bg-raised);
  position: relative;
}

.hero-card .card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: var(--grad-cta);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.hero-card .card > * { position: relative; z-index: 1; }

.card-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-blue);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.card-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
}

.card-desc {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.55;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.field span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-secondary);
  letter-spacing: 0.01em;
}

.field input {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-subtle);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.field input::placeholder { color: var(--ink-muted); }

.field input:focus {
  outline: none;
  border-color: var(--accent-ring);
  box-shadow: 0 0 0 3px rgba(10,95,212,.12);
  background: #fff;
}

.card-note {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 12.5px;
  line-height: 1.55;
  text-align: center;
}

/* ---------------------------------------------------------
   Trust bar
   --------------------------------------------------------- */
.trust {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
}

.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.trust-label {
  color: var(--ink-muted);
  font-size: 12.5px;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.logo-pill {
  border: 1px solid var(--border);
  background: var(--bg-raised);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-secondary);
  letter-spacing: 0.01em;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.logo-pill:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
}

/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */
.section { padding: 80px 0; }

.section.alt {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Section header */
.section-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 800;
}

.lead {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-secondary);
}

/* ---------------------------------------------------------
   Feature Grid
   --------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  border: 1px solid var(--border);
  background: var(--bg-raised);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feature:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid var(--accent-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  margin-bottom: 16px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.feature p {
  margin: 0 0 14px;
  font-size: 14.5px;
  color: var(--ink-secondary);
  line-height: 1.6;
}

.feature ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature li {
  font-size: 13.5px;
  color: var(--ink-secondary);
  padding: 5px 0 5px 20px;
  position: relative;
  border-top: 1px solid var(--border);
}

.feature li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  transform: translateY(-50%);
  opacity: 0.5;
}

/* ---------------------------------------------------------
   Split Layout (How it works)
   --------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.steps {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.steps li:last-child { border-bottom: 0; }

.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-blue);
  background: var(--accent-soft);
  border: 1px solid var(--accent-ring);
  border-radius: var(--radius-sm);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  letter-spacing: 0;
}

.steps li strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.steps li span {
  display: block;
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.55;
}

/* Panel */
.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-raised);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.panel-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.panel-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--ink-secondary);
  transition: border-color 0.15s, background 0.15s;
}

.pill:hover {
  border-color: var(--accent-ring);
  background: var(--accent-soft);
  color: var(--brand-blue);
}

.panel-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.panel-note {
  font-size: 13.5px;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* ---------------------------------------------------------
   Pricing
   --------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  background: var(--bg-raised);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.price-card.featured {
  border-color: rgba(10, 95, 212, 0.3);
  box-shadow: 0 0 0 1px rgba(10,95,212,.12), var(--shadow-lg);
}

.price-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(10,95,212,.2), var(--shadow-xl);
}

.price-card-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(10,95,212,.06) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-ring);
  color: var(--brand-blue);
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11.5px;
  letter-spacing: 0.02em;
}

.price-head { margin-bottom: 20px; }

.price-head h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.price-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}

.price-tag span {
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0;
}

.price-desc {
  font-size: 13.5px;
  color: var(--ink-secondary);
  line-height: 1.55;
  margin: 0;
}

.price-list {
  margin: 0 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-secondary);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}

.price-list li:last-child { border-bottom: 0; }

.price-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7.5' fill='%230a5fd4' fill-opacity='.1' stroke='%230a5fd4' stroke-opacity='.25'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%230a5fd4' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-actions {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ---------------------------------------------------------
   Callout (Data sovereignty)
   --------------------------------------------------------- */
.callout {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-raised);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.callout-inner {
  padding: 48px;
}

.callout-copy { margin-bottom: 36px; }

.callout-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 12px;
}

.callout-copy .lead { max-width: 520px; }

.callout-copy .btn { margin-top: 24px; }

.callout-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.callout-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-subtle);
  padding: 18px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.callout-item:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-sm);
}

.callout-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid var(--accent-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  margin-bottom: 12px;
}

.callout-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}

.callout-text {
  font-size: 13px;
  color: var(--ink-secondary);
  line-height: 1.55;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-left: auto;
}

.footer-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.footer-links a:hover {
  color: var(--ink);
  background: var(--border);
}

.footer-copy { flex-basis: 100%; }

/* ---------------------------------------------------------
   Reveal Animations
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ---------------------------------------------------------
   Utilities
   --------------------------------------------------------- */
.tiny   { font-size: 12.5px; line-height: 1.5; }
.muted  { color: var(--ink-muted); }

.anchor-spacer { height: 1px; }

/* ---------------------------------------------------------
   Accessibility
   --------------------------------------------------------- */
:focus-visible {
  outline: 2.5px solid rgba(10, 95, 212, 0.5);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 1000px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .panel { position: static; }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .hero { padding-top: 56px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }

  .grid-3 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .callout-row { grid-template-columns: 1fr; }
  .callout-inner { padding: 28px; }

  .nav { display: none; }
  .topbar-actions { display: none; }
  .mobile-toggle { display: block; }

  .section { padding: 56px 0; }
  h2 { font-size: 30px; }
}

@media (max-width: 520px) {
  .hero-proof { gap: 8px; }
  .metric { min-width: 0; flex: 1 1 140px; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
}