/* ============================================================================
   GPUPilot marketing site — shared design system
   Light corporate canvas + #00AFA9 as the single quiet accent.
   Structural rhythm borrowed from bynet.co.il (utility bar, alternating bands,
   accent-painted CTA, structured footer). Dev-tool identity preserved via
   dark terminal/code blocks that sit on the white canvas.
   Discipline:
     - accent NEVER covers more than ~8% of visible area on any screen
     - accent as TEXT on white uses --accent-deep for AA
     - all colors come from tokens; zero hardcoded hex in HTML
     - logical properties only (margin-inline-start, padding-inline)
   ============================================================================ */

:root {
  /* Anchor */
  --accent:       #00AFA9;
  --accent-hover: #009B96;
  --accent-deep:  #007D79;
  --accent-dim:   rgba(0, 175, 169, 0.08);
  --accent-line:  rgba(0, 175, 169, 0.25);
  --accent-wash:  #F0FAF9;

  /* Support (low frequency) */
  --steel: #3D6FD1;
  --ok:    #1E9E5A;
  --warn:  #C77E1E;

  /* Neutrals on light base */
  --bg:              #FFFFFF;
  --text-primary:    #10222B;
  --text-secondary:  #5A6B75;
  --surface-1:       #F7FAFA;
  --surface-2:       #EEF4F4;
  --border:          #DFE7E8;

  /* Dark inversions — used ONLY inside terminals, code blocks, product screenshots */
  --dark-bg:      #0A0F12;
  --dark-surface: #10171B;
  --dark-border:  rgba(255,255,255,0.08);
  --dark-text:    #E6EEF0;
  --dark-text-2:  #8FA4AE;

  /* Type */
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', ui-monospace, monospace;

  /* Rhythm */
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --shadow-1:  0 1px 2px rgba(16, 34, 43, 0.04), 0 2px 8px rgba(16, 34, 43, 0.04);
  --shadow-2:  0 4px 12px rgba(16, 34, 43, 0.06), 0 12px 32px rgba(16, 34, 43, 0.06);
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Container */
  --container:      1180px;
  --container-tight: 900px;
  --nav-h:  96px;
  --util-h: 36px;
}

/* Reset (minimal) */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
::selection { background: var(--accent); color: #fff; }

/* Typography scale */
h1, h2, h3, h4 { color: var(--text-primary); letter-spacing: -0.02em; line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(36px, 4.8vw, 56px); }
h2 { font-size: clamp(28px, 3.4vw, 40px); }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 15px; font-weight: 700; }
p  { color: var(--text-secondary); }

/* Container */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-tight { width: 100%; max-width: var(--container-tight); margin-inline: auto; padding-inline: 24px; }

/* ============================================================================
   Section rhythm — the core Bynet visual signature.
   Sections alternate: white (default) → accent-wash → white → surface-1 → white
   ============================================================================ */
.band-white    { background: var(--bg); }
.band-wash     { background: var(--accent-wash); }
.band-surface1 { background: var(--surface-1); }
.band-surface2 { background: var(--surface-2); }

.section-pad     { padding-block: clamp(64px, 8vw, 112px); }
.section-pad-sm  { padding-block: clamp(40px, 5vw, 72px); }

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.section-head    { text-align: center; max-width: 700px; margin-inline: auto; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p  { font-size: 16px; }

/* ============================================================================
   Utility top bar — slim, ~36px, quiet. The most Bynet-feeling element.
   ============================================================================ */
.util-bar {
  height: var(--util-h);
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-secondary);
  position: relative;
  z-index: 90;
}
.util-bar-inner {
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.util-left, .util-right { display: flex; gap: 20px; align-items: center; }
.util-bar a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .2s var(--ease);
  font-weight: 500;
  letter-spacing: 0.1px;
}
.util-bar a:hover { color: var(--accent-deep); text-decoration: none; }
.util-sep { color: var(--border); user-select: none; }

/* ============================================================================
   Primary nav
   ============================================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(1.6) blur(8px);
  -webkit-backdrop-filter: saturate(1.6) blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 28px;
  color: var(--text-primary);
  letter-spacing: -0.6px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; color: var(--text-primary); }
/* SQUARE mark (from gpupilot_logo-small.png = 1024×1024 black-ink icon on transparent).
   Uses cover so the visible glyph fills the whole box — no aspect-ratio compression. */
.nav-logo-mark {
  width: 80px; height: 80px;
  background: url(/gpupilot_logo-small.png) center / cover no-repeat;
  flex-shrink: 0;
  border-radius: 12px;   /* soft-corner container so the black icon reads as an app-mark */
}
/* footer logo mark uses same asset but slightly smaller to preserve balance */
.footer-brand .nav-logo-mark { width: 56px; height: 56px; border-radius: 10px; }
.footer-brand .nav-logo { font-size: 20px; }
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-inline: auto;
}
.nav-links > a,
.nav-links > .nav-dd > button {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1px;
  padding: 6px 2px;
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  transition: color .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.nav-links > a:hover,
.nav-links > .nav-dd > button:hover,
.nav-links > .nav-dd[data-open="true"] > button {
  color: var(--accent-deep);
  text-decoration: none;
}

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd > button .caret { font-size: 9px; opacity: 0.7; transition: transform .2s var(--ease); }
.nav-dd[data-open="true"] > button .caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: calc(100% + 12px);
  inset-inline-start: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 300px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear .2s;
  z-index: 101;
}
.nav-dd[data-open="true"] .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s;
}
[dir="rtl"] .nav-dd-menu { transform: translateX(50%) translateY(-6px); }
[dir="rtl"] .nav-dd[data-open="true"] .nav-dd-menu { transform: translateX(50%) translateY(0); }

.nav-dd-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  transition: background .15s var(--ease);
  text-decoration: none;
}
.nav-dd-menu a:hover { background: var(--accent-dim); text-decoration: none; }
.nav-dd-menu .dd-desc { display: block; font-size: 12px; font-weight: 400; color: var(--text-secondary); margin-top: 3px; }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.1px;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,175,169,0.25); text-decoration: none; color: #fff; }
.nav-cta:active { background: var(--accent-deep); transform: translateY(0); }

.nav-signin {
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-signin:hover { color: var(--accent-deep); background: var(--accent-dim); text-decoration: none; }

/* Hamburger + mobile menu */
.nav-burger { display: none; background: transparent; border: 0; padding: 6px; cursor: pointer; color: var(--text-primary); }
.nav-mobile {
  display: none;
  position: fixed;
  inset: calc(var(--util-h) + var(--nav-h)) 0 0 0;
  background: var(--bg);
  padding: 20px 24px 80px;
  overflow-y: auto;
  z-index: 95;
  border-top: 1px solid var(--border);
}
.nav-mobile.is-open { display: block; }
.nav-mobile a { display: block; padding: 14px 4px; color: var(--text-primary); font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--border); text-decoration: none; }
.nav-mobile a:hover { color: var(--accent-deep); }
.nav-mobile .mob-acc { border-bottom: 1px solid var(--border); }
.nav-mobile .mob-acc > button { width:100%; display:flex; justify-content:space-between; align-items:center; padding: 14px 4px; background: transparent; border: 0; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--text-primary); cursor: pointer; }
.nav-mobile .mob-sub { max-height: 0; overflow: hidden; transition: max-height .25s var(--ease); }
.nav-mobile .mob-acc[data-open="true"] .mob-sub { max-height: 240px; }
.nav-mobile .mob-sub a { padding: 12px 4px 12px 20px; font-size: 14px; color: var(--text-secondary); border-bottom: 0; }
.nav-mobile .mob-cta { margin-top: 20px; }
.nav-mobile .mob-cta a {
  display: block;
  background: var(--accent);
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  text-align: center;
  font-weight: 700;
  border-bottom: 0;
}

/* ============================================================================
   Buttons
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.1px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,175,169,0.28); color: #fff; text-decoration: none; }
.btn-primary:active { background: var(--accent-deep); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); text-decoration: none; }

.btn-on-accent {
  background: #fff;
  color: var(--accent-deep);
  border-color: transparent;
}
.btn-on-accent:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,0.15); color: var(--accent-deep); text-decoration: none; }

.arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow, a:hover .arrow { transform: translateX(3px); }
[dir="rtl"] .btn:hover .arrow, [dir="rtl"] a:hover .arrow { transform: translateX(-3px); }

/* ============================================================================
   Hero — split grid with large animated logo canvas on the right
   ============================================================================ */
.hero { position: relative; padding-block: clamp(72px, 9vw, 128px) clamp(56px, 7vw, 96px); overflow: hidden; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 24px; }
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-dim); }
.hero-inner { max-width: 900px; margin-inline: auto; text-align: center; }

/* Split-grid variant: copy on start-side, large logo canvas on end-side.
   Art column widened (0.85fr : 1.15fr) + hero container 1180 → 1280 so the
   animation gets the horizontal space it was leaving on the table. */
.hero-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; max-width: 1280px; margin-inline: auto; }
.hero-copy { text-align: start; }
.hero-copy .hero-ctas { justify-content: flex-start; }
.hero-copy .hero-credibility { margin-inline: 0; }
.hero-copy .trust-row { justify-content: flex-start; margin-top: 28px; }
.hero-art { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-art canvas { position: relative; z-index: 1; width: 100%; max-width: 700px; height: auto; display: block; border-radius: 20px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-copy { text-align: center; }
  .hero-copy .hero-ctas { justify-content: center; }
  .hero-copy .trust-row { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art canvas { max-width: 400px; }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .mark { color: var(--accent-deep); }
.hero .lede { font-size: 18px; max-width: 640px; margin-inline: auto; margin-bottom: 32px; line-height: 1.65; color: var(--text-secondary); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 16px; }
.hero-credibility { font-size: 13.5px; color: var(--text-secondary); margin-top: 4px; max-width: 620px; margin-inline: auto; }

/* Terminal — the ONE dark exception on the light canvas */
.terminal { position: relative; max-width: 720px; margin-inline: auto; margin-top: 44px; background: var(--dark-bg); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(16,34,43,0.15), 0 8px 20px rgba(16,34,43,0.08); text-align: start; }
.terminal-bar { padding: 12px 16px; display: flex; gap: 7px; background: var(--dark-surface); border-bottom: 1px solid var(--dark-border); }
.terminal-dot { width: 11px; height: 11px; border-radius: 50%; }
.terminal-dot.r { background: #ff5f57; }
.terminal-dot.y { background: #febc2e; }
.terminal-dot.g { background: #28c840; }
.terminal-body { padding: 24px; font-family: var(--font-mono); font-size: 13.5px; line-height: 1.9; color: var(--dark-text); direction: ltr; text-align: left; }
.terminal-body .prompt { color: var(--accent); }
.terminal-body .cmd    { color: var(--dark-text); }
.terminal-body .out    { color: var(--dark-text-2); }
.terminal-copy { position: absolute; inset-block-start: 12px; inset-inline-end: 12px; background: rgba(255,255,255,0.06); color: var(--dark-text-2); border: 1px solid var(--dark-border); border-radius: 6px; padding: 4px 10px; font-size: 11px; cursor: pointer; font-family: inherit; transition: color .2s var(--ease), background .2s var(--ease); }
.terminal-copy:hover { color: var(--accent); background: rgba(0,175,169,0.10); }

/* Trust chips row */
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 32px; }
.trust-chip { font-size: 11.5px; color: var(--text-secondary); background: var(--surface-1); border: 1px solid var(--border); padding: 5px 12px; border-radius: 100px; letter-spacing: 0.2px; font-weight: 500; transition: color .2s var(--ease), border-color .2s var(--ease); }
.trust-chip:hover { border-color: var(--accent-line); color: var(--text-primary); }

/* ============================================================================
   Feature card grid
   ============================================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit; }
.feature-card:hover { border-color: var(--accent-line); transform: translateY(-3px); box-shadow: var(--shadow-2); text-decoration: none; color: inherit; }
.feature-card .fc-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-dim); color: var(--accent-deep); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; }
.feature-card h3 { color: var(--text-primary); }
.feature-card p  { font-size: 14px; line-height: 1.65; }
.feature-card .fc-cta { margin-top: auto; color: var(--accent-deep); font-weight: 600; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }

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

/* ============================================================================
   Products cards (retained for backward-compat; simplified for light base)
   ============================================================================ */
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.prod-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
.prod-card:hover { border-color: var(--accent-line); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.prod-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.prod-card h3 { font-size: 20px; }
.prod-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; white-space: nowrap; background: var(--accent-dim); color: var(--accent-deep); border: 1px solid var(--accent-line); }
.prod-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.prod-bullets li { position: relative; padding-inline-start: 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.prod-bullets li::before { content: ''; position: absolute; inset-inline-start: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.prod-card-cta { margin-top: 4px; color: var(--accent-deep); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 720px) { .products-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   Audience tabs (retained for landing, restyled to light)
   ============================================================================ */
.aud-tabs { display: flex; justify-content: center; margin-bottom: 32px; }
.aud-tabs-inner { display: inline-flex; background: var(--surface-1); border: 1px solid var(--border); padding: 4px; border-radius: 100px; gap: 4px; }
.aud-tab { font-size: 13.5px; font-weight: 600; font-family: inherit; padding: 10px 20px; border-radius: 100px; border: 0; background: transparent; color: var(--text-secondary); cursor: pointer; transition: all .2s var(--ease); }
.aud-tab:hover { color: var(--text-primary); }
.aud-tab.is-active { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(0,175,169,0.30); }
.aud-panel { display: none; animation: aud-fade .3s var(--ease); }
.aud-panel.is-active { display: block; }
@keyframes aud-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Split-layout variant (mirrors reference in test-frontend/GP8B64~1.HTM):
   tabs + compact 2-col card grid inside a light panel on one side, headline + lede on the other. */
.aud-section-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; max-width: 1180px; margin-inline: auto; }
.aud-section-split.rev .aud-media { order: 2; }
.aud-section-split.rev .aud-copy  { order: 1; }
.aud-media { min-width: 0; }
.aud-copy { text-align: start; }
.aud-copy .section-eyebrow { display: inline-block; }
.aud-copy h2 { margin-bottom: 14px; }
.aud-copy .aud-lede { font-size: 17px; color: var(--text-secondary); line-height: 1.72; max-width: 46ch; }
.aud-panel-wrap { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-1); }
.aud-panel-wrap .aud-tabs { margin-bottom: 16px; }
.aud-panel-wrap .aud-tabs-inner { width: 100%; justify-content: space-between; }
.aud-panel-wrap .aud-tab { flex: 1; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; padding: 9px 12px; }
.aud-panel-wrap .aud-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
.aud-panel-wrap .aud-card { padding: 14px 14px; }
.aud-panel-wrap .aud-card .num { font-size: 10px; }
.aud-panel-wrap .aud-card h3 { font-size: 14px; margin-bottom: 5px; }
.aud-panel-wrap .aud-card p { font-size: 12.5px; line-height: 1.6; }
@media (max-width: 900px) {
  .aud-section-split { grid-template-columns: 1fr; gap: 32px; }
  .aud-section-split.rev .aud-media { order: 1; }
  .aud-section-split.rev .aud-copy  { order: 2; }
  .aud-panel-wrap .aud-grid { grid-template-columns: 1fr; }
}
.aud-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.aud-card:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.aud-card .num { font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: var(--accent-deep); letter-spacing: 0.08em; margin-bottom: 10px; display: block; text-transform: uppercase; }
.aud-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.aud-card p { font-size: 13px; line-height: 1.65; }
@media (max-width: 900px) { .aud-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   Loop steps (5-across) — retained
   ============================================================================ */
.loop-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.loop-step { background: var(--bg); padding: 32px 20px; text-align: center; position: relative; transition: background .3s var(--ease); }
.loop-step:hover { background: var(--accent-wash); }
.loop-num { font-size: 32px; font-weight: 900; color: var(--accent-deep); line-height: 1; margin-bottom: 10px; font-family: var(--font-mono); }
.loop-step h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.loop-step p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; }
@media (max-width: 900px) { .loop-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   Alert cards (retained: red/orange/green severity strip)
   ============================================================================ */
.alert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.alert-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; gap: 14px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease); position: relative; overflow: hidden; }
.alert-card::before { content: ''; position: absolute; top: 0; inset-inline-start: 0; width: 3px; height: 100%; background: #ff3d6e; }
.alert-card.warn::before  { background: var(--warn); }
.alert-card.fixed::before { background: var(--ok); }
.alert-card:hover { border-color: var(--accent-line); transform: translateY(-2px); box-shadow: var(--shadow-1); }
.alert-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.alert-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.alert-card > div > p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; }
.alert-action { margin-top: 12px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.alert-btn { padding: 5px 12px; border-radius: 6px; font-size: 11px; font-weight: 700; display: inline-block; letter-spacing: 0.2px; }
.alert-btn.approve { background: var(--accent); color: #fff; }
.alert-btn.auto    { background: var(--warn); color: #fff; }
.alert-btn.resolved { background: var(--ok); color: #fff; }
.alert-cmd { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-secondary); direction: ltr; unicode-bidi: embed; }
@media (max-width: 720px) { .alert-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   Capability chips
   ============================================================================ */
.cap-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 900px; margin-inline: auto; }
.cap { background: var(--bg); border: 1px solid var(--border); padding: 8px 16px; border-radius: 10px; font-size: 12.5px; color: var(--text-secondary); font-weight: 500; transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease); }
.cap:hover { border-color: var(--accent-line); color: var(--text-primary); background: var(--accent-dim); }

/* Health tiles */
.health-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 960px; margin-inline: auto; }
.health-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; }
.health-item .metric { font-size: 10.5px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; font-weight: 600; }
.health-item .value  { font-size: 26px; font-weight: 900; color: var(--accent-deep); line-height: 1; font-family: var(--font-mono); }
.health-item .desc   { font-size: 10.5px; color: var(--text-secondary); margin-top: 6px; }
@media (max-width: 900px) { .health-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================================
   Stats strip
   ============================================================================ */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; max-width: 960px; margin-inline: auto; }
.stat-num { font-size: clamp(32px, 4.2vw, 48px); font-weight: 900; color: var(--accent); letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--text-secondary); font-weight: 500; letter-spacing: 0.2px; }
@media (max-width: 720px) { .stats-strip { grid-template-columns: 1fr 1fr; gap: 32px 16px; } }

/* ============================================================================
   Why blocks
   ============================================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 40px; }
.why-icon { width: 32px; height: 32px; border-radius: 8px; color: var(--accent-deep); display: inline-flex; align-items: center; justify-content: center; background: var(--accent-dim); margin-bottom: 14px; font-size: 16px; }
.why-block h3 { margin-bottom: 8px; font-size: 17px; }
.why-block p  { font-size: 14.5px; line-height: 1.7; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   Works-with logo strip
   ============================================================================ */
.works-with { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 36px 40px; padding-block: 8px; }
.works-with-item { color: var(--text-secondary); font-size: 15px; font-weight: 700; letter-spacing: -0.1px; opacity: 0.55; transition: opacity .2s var(--ease), color .2s var(--ease); filter: grayscale(1); white-space: nowrap; }
.works-with-item:hover { opacity: 1; filter: none; color: var(--accent-deep); }

/* ============================================================================
   Proof cards
   ============================================================================ */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.proof-card { background: var(--surface-2); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.proof-card .quote { font-size: 16.5px; color: var(--text-primary); line-height: 1.6; margin-bottom: 16px; font-weight: 500; }
.proof-card .who   { font-size: 13.5px; color: var(--text-secondary); }
.proof-card .who strong { color: var(--text-primary); }
@media (max-width: 720px) { .proof-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   Bottom CTA band — the one place teal paints
   ============================================================================ */
.cta-band { background: var(--accent); color: #fff; padding-block: clamp(48px, 6vw, 72px); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.90); font-size: 16px; margin-bottom: 24px; max-width: 560px; margin-inline: auto; }
.cta-band .btn-on-accent { background: #fff; color: var(--accent-deep); }

/* ============================================================================
   Footer
   ============================================================================ */
.site-footer { background: var(--surface-1); border-top: 1px solid var(--border); padding-block: 56px 32px; }
.footer-cols { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-primary); font-size: 14px; text-decoration: none; }
.footer-col a:hover { color: var(--accent-deep); text-decoration: underline; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand p { font-size: 13.5px; color: var(--text-secondary); max-width: 260px; line-height: 1.6; }
.footer-meta { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 24px; max-width: var(--container); margin-inline: auto; padding-inline: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; font-size: 12.5px; color: var(--text-secondary); }
.footer-kinship { display: inline-flex; align-items: center; gap: 8px; opacity: 0.85; }
.footer-kinship a { color: inherit; text-decoration: none; }
.footer-kinship a:hover { color: var(--accent-deep); text-decoration: underline; }
.footer-social { display: inline-flex; gap: 14px; }
.footer-social a { color: var(--text-secondary); }
.footer-social a:hover { color: var(--accent-deep); }

@media (max-width: 900px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; order: -1; }
}
@media (max-width: 560px) {
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================================
   Legal pages (privacy, terms, about)
   ============================================================================ */
.legal-page { max-width: 820px; margin-inline: auto; padding: 56px 24px 96px; font-size: 15.5px; line-height: 1.75; color: var(--text-primary); }
.legal-page h1 { margin-bottom: 6px; }
.legal-page .dim { color: var(--text-secondary); font-size: 13px; margin-bottom: 32px; display: block; }
.legal-page h2 { font-size: 22px; font-weight: 700; margin-top: 40px; margin-bottom: 12px; }
.legal-page h3 { font-size: 17px; font-weight: 700; margin-top: 22px; margin-bottom: 10px; }
.legal-page p, .legal-page li { color: var(--text-secondary); }
.legal-page strong { color: var(--text-primary); font-weight: 600; }
.legal-page ul, .legal-page ol { padding-inline-start: 24px; margin-block: 8px 16px; }
.legal-page a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-page table { width: 100%; border-collapse: collapse; margin-block: 12px 20px; font-size: 14px; }
.legal-page th, .legal-page td { text-align: start; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal-page th { background: var(--accent-dim); color: var(--text-primary); font-weight: 600; }
.legal-page .note { background: var(--surface-2); border-inline-start: 3px solid var(--accent); border-radius: var(--radius-sm); padding: 14px 16px; margin-block: 20px; font-size: 14px; }
.legal-page .note strong { color: var(--text-primary); }
.legal-page .back { display: inline-block; margin-top: 32px; color: var(--accent-deep); text-decoration: none; font-weight: 600; }
.legal-page .back:hover { text-decoration: underline; }

/* ============================================================================
   Cookie consent banner (light theme)
   ============================================================================ */
.cookie-banner { position: fixed; inset-inline: 14px; inset-block-end: 14px; z-index: 200; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-2); display: none; max-width: 680px; margin-inline: auto; }
.cookie-banner.is-shown { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 240px; font-size: 13px; color: var(--text-primary); line-height: 1.55; }
.cookie-text a { color: var(--accent-deep); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btn { padding: 9px 16px; border-radius: 8px; font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.cookie-btn.reject { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.cookie-btn.reject:hover { border-color: var(--text-primary); color: var(--text-primary); }
.cookie-btn.accept { background: var(--accent); color: #fff; border: 1px solid transparent; }
.cookie-btn.accept:hover { background: var(--accent-hover); }

/* ============================================================================
   Book-a-demo form
   ============================================================================ */
.bd-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: start; max-width: 520px; margin-inline: auto; }
.bd-form .full { grid-column: 1 / -1; display: flex; justify-content: center; margin-top: 6px; }
.bd-form input { width: 100%; padding: 13px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-primary); font-size: 14.5px; font-family: inherit; outline: none; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.bd-form input::placeholder { color: var(--text-secondary); }
.bd-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.bd-form button { padding: 13px 24px; background: var(--accent); color: #fff; border: 0; border-radius: var(--radius-sm); font-weight: 700; font-size: 14.5px; cursor: pointer; font-family: inherit; transition: background .2s var(--ease); min-width: 200px; }
.bd-form button:hover { background: var(--accent-hover); }
.bd-note { text-align: center; font-size: 12.5px; color: var(--text-secondary); margin-top: 14px; }
.bd-note a { color: var(--accent-deep); text-decoration: underline; }
@media(max-width: 520px) { .bd-form { grid-template-columns: 1fr; } }

/* ============================================================================
   Reveal on scroll — motion-safe
   ============================================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.visible { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================================
   Mobile-nav breakpoints
   ============================================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .util-bar-inner { padding-inline: 16px; }
  .nav-inner { padding-inline: 16px; }
}
