/* ==========================================================================
   EvolveMIP — shared stylesheet
   Modern Managed IT — secure, reliable, and AI-ready.
   One file, every page. Vanilla CSS, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Neutrals */
  --slate-950: #0F172A;
  --slate-900: #111C33;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --white:     #FFFFFF;

  /* Brand accent (sky) — text-safe shade + decorative shade */
  --sky:        #0EA5E9;   /* decorative only */
  --sky-strong: #0369A1;   /* AA on white for text/links */
  --sky-btn:    #0284C7;   /* AA with white text */
  --sky-light:  #7DD3FC;   /* on dark backgrounds */

  /* Pillar hues — "ink" = AA-safe for text on light; "hue" = decorative;
     "soft" = tinted background; "dark" = variant for dark sections */
  --run-ink:  #1D4ED8;  --run-hue:  #3B82F6;  --run-soft:  #EFF4FF;  --run-dark:  #60A5FA;
  --protect-ink: #0F766E; --protect-hue: #14B8A6; --protect-soft: #ECFDF8; --protect-dark: #2DD4BF;
  --smart-ink: #B45309; --smart-hue: #F59E0B; --smart-soft: #FFF7E6; --smart-dark: #FBBF24;

  /* Semantic */
  --bg:        var(--slate-50);
  --surface:   var(--white);
  --text:      var(--slate-800);
  --text-soft: var(--slate-600);
  --text-mute: var(--slate-500);
  --line:      var(--slate-200);
  --line-soft: var(--slate-100);

  /* Type */
  --font: "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Shape + motion */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
  --shadow:    0 10px 30px -12px rgba(15, 23, 42, .18), 0 2px 6px -2px rgba(15, 23, 42, .06);
  --shadow-lg: 0 24px 60px -24px rgba(15, 23, 42, .28);
  --ease:      cubic-bezier(.2, .7, .2, 1);
  --fast:      .18s;
  --med:       .32s;

  --maxw: 1160px;
  --gutter: clamp(20px, 4vw, 32px);
}

/* --------------------------------------------------------------------------
   1. Reset + base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--slate-950);
  letter-spacing: -.02em;
  line-height: 1.15;
  font-weight: 800;
}

p { margin: 0; }

a {
  color: var(--sky-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--slate-950); }

button {
  font: inherit;
  color: inherit;
}

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

/* Visible, consistent focus for everything keyboard-reachable */
:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 6px;
}

.dark :focus-visible,
.hero :focus-visible,
.band :focus-visible,
.site-footer :focus-visible { outline-color: var(--sky-light); }

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--slate-950);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top var(--fast) var(--ease);
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap--narrow { max-width: 820px; }

/* --------------------------------------------------------------------------
   2. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.02em;
  color: var(--slate-950);
  text-decoration: none;
}

.brand:hover { color: var(--slate-950); }

.brand__mark {
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.brand__mark svg { display: block; }

.brand__mip { color: var(--sky-strong); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease);
}

.nav__link:hover {
  background: var(--slate-100);
  color: var(--slate-950);
}

.nav__link[aria-current="page"] {
  color: var(--slate-950);
  background: var(--slate-100);
  box-shadow: inset 0 -2px 0 var(--sky);
}

.nav__cta { margin-left: 10px; }

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}

.nav__toggle-bars {
  position: relative;
  width: 20px; height: 2px;
  background: var(--slate-950);
  border-radius: 2px;
  transition: background var(--fast) var(--ease);
}

.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--slate-950);
  border-radius: 2px;
  transition: transform var(--med) var(--ease), top var(--med) var(--ease);
}

.nav__toggle-bars::before { top: -6px; }
.nav__toggle-bars::after  { top: 6px; }

.nav__toggle[aria-expanded="true"] .nav__toggle-bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::after  { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease),
              background var(--fast) var(--ease), color var(--fast) var(--ease),
              border-color var(--fast) var(--ease);
}

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

.btn--primary {
  background: var(--slate-950);
  color: var(--white);
  box-shadow: 0 8px 20px -10px rgba(15, 23, 42, .6);
}
.btn--primary:hover { background: var(--slate-800); color: var(--white); }

.btn--accent {
  background: linear-gradient(135deg, var(--sky-btn), var(--sky-strong));
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(2, 132, 199, .7);
}
.btn--accent:hover { color: var(--white); box-shadow: 0 14px 30px -10px rgba(2, 132, 199, .85); }

.btn--light {
  background: var(--white);
  color: var(--slate-950);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .5);
}
.btn--light:hover { color: var(--slate-950); background: #F1F5F9; }

.btn--ghost {
  background: transparent;
  color: var(--slate-950);
  border-color: var(--slate-300);
}
.btn--ghost:hover { border-color: var(--slate-950); background: var(--white); }

.btn--ghost-dark {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
}
.btn--ghost-dark:hover { background: rgba(255, 255, 255, .12); color: var(--white); }

.btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 10px; }
.btn--lg { padding: 17px 30px; font-size: 16.5px; border-radius: 14px; }
.btn--block { width: 100%; }

.btn .arrow { transition: transform var(--fast) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  text-decoration: none;
}
.link-arrow .arrow { transition: transform var(--fast) var(--ease); }
.link-arrow:hover .arrow { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   4. Sections + headings
   -------------------------------------------------------------------------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--tight { padding: clamp(40px, 6vw, 64px) 0; }
.section--surface { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head {
  max-width: 62ch;
  margin: 0 0 clamp(28px, 4vw, 44px);
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky-strong);
}

.kicker::before {
  content: "";
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-head--center .kicker::before { display: none; }

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}

.section-head p {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-soft);
}

.lede {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--text-soft);
  line-height: 1.65;
}

/* Dark sections */
.dark {
  background: var(--slate-950);
  color: var(--slate-300);
}
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--white); }
.dark .kicker { color: var(--sky-light); }
.dark p { color: var(--slate-300); }
.dark a { color: var(--sky-light); }
.dark a:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   5. Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(14, 165, 233, .22), transparent 60%),
    radial-gradient(700px 420px at 0% 110%, rgba(245, 158, 11, .14), transparent 60%),
    radial-gradient(600px 360px at 50% 120%, rgba(20, 184, 166, .12), transparent 60%),
    linear-gradient(180deg, var(--slate-950) 0%, var(--slate-900) 100%);
  color: var(--slate-300);
}

.hero::after {
  /* subtle grid texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 112px) 0 clamp(64px, 8vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, .35);
  background: rgba(14, 165, 233, .12);
  color: var(--sky-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 24px;
}

.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, .25);
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 22px;
}

.hero h1 .accent {
  background: linear-gradient(90deg, #7DD3FC, #38BDF8 45%, #FCD34D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: clamp(17px, 2.1vw, 20px);
  max-width: 48ch;
  color: var(--slate-300);
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.microtrust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--slate-300);
}

.microtrust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.microtrust li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky);
}

/* Hero visual: the three-pillar "stack" */
.hero__visual { position: relative; }

.stack {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.stack__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate-500);
  padding: 2px 4px 4px;
}

.stack__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--white);
  text-decoration: none;
  transition: transform var(--med) var(--ease), background var(--fast) var(--ease), border-color var(--fast) var(--ease);
}

.stack__item:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.stack__num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--slate-500);
  width: 24px;
}

.stack__title {
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.stack__sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-300);
  margin-top: 2px;
}

.stack__bar {
  width: 4px; height: 36px;
  border-radius: 4px;
}

.stack__item--run .stack__bar { background: var(--run-dark); }
.stack__item--protect .stack__bar { background: var(--protect-dark); }
.stack__item--smart .stack__bar { background: var(--smart-dark); }

.stack__item--smart {
  background: linear-gradient(135deg, rgba(245, 158, 11, .16), rgba(245, 158, 11, .06));
  border-color: rgba(251, 191, 36, .35);
}

.stack__item--smart:hover { background: linear-gradient(135deg, rgba(245, 158, 11, .22), rgba(245, 158, 11, .1)); }

.stack__badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--smart-hue);
  color: #1C1005;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   6. Pillars (home — interactive)
   -------------------------------------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.pillar {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease), border-color var(--med) var(--ease);
}

.pillar::before {
  /* colored top rail */
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pillar--run::before     { background: var(--run-hue); }
.pillar--protect::before { background: var(--protect-hue); }
.pillar--smart::before   { background: linear-gradient(90deg, var(--smart-hue), #FCD34D); }

.pillar--run:hover     { border-color: var(--run-hue); }
.pillar--protect:hover { border-color: var(--protect-hue); }
.pillar--smart:hover   { border-color: var(--smart-hue); }

.pillar--smart {
  background: linear-gradient(180deg, var(--smart-soft) 0%, var(--surface) 42%);
  border-color: #FCE1A8;
  box-shadow: var(--shadow-sm), 0 0 0 4px rgba(245, 158, 11, .07);
}

.pillar__head { padding: 28px 26px 0; }

.pillar__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pillar__num {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--text-mute);
}

.pillar--run .pillar__num     { color: var(--run-ink); }
.pillar--protect .pillar__num { color: var(--protect-ink); }
.pillar--smart .pillar__num   { color: var(--smart-ink); }

.pillar__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--smart-hue);
  color: #1C1005;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pillar__icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 16px;
}

.pillar--run .pillar__icon     { background: var(--run-soft); }
.pillar--protect .pillar__icon { background: var(--protect-soft); }
.pillar--smart .pillar__icon   { background: #FDE9C2; }

.pillar__title {
  font-size: 23px;
  margin-bottom: 8px;
}

.pillar__promise {
  font-size: 15.5px;
  color: var(--text-soft);
}

/* Expandable region */
.pillar__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--med) var(--ease);
}

.pillar__panel-inner {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s linear var(--med);
}

.pillar.is-open .pillar__panel { grid-template-rows: 1fr; }
.pillar.is-open .pillar__panel-inner { visibility: visible; transition-delay: 0s; }

.pillar__body {
  padding: 18px 26px 0;
  font-size: 15px;
  color: var(--text-soft);
}

.pillar__list {
  margin: 16px 26px 0;
  border-top: 1px solid var(--line-soft);
}

.pillar__list li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 14.5px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line-soft);
}

.pillar__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 17px;
  width: 8px; height: 8px;
  border-radius: 50%;
}

.pillar--run .pillar__list li::before     { background: var(--run-hue); }
.pillar--protect .pillar__list li::before { background: var(--protect-hue); }
.pillar--smart .pillar__list li::before   { background: var(--smart-hue); }

.pillar__list b { color: var(--slate-950); font-weight: 700; }

.pillar__result {
  margin: 18px 26px 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--slate-950);
  border: 1px solid;
}

.pillar--run .pillar__result     { background: var(--run-soft); border-color: #D6E3FF; }
.pillar--protect .pillar__result { background: var(--protect-soft); border-color: #C7F0E4; }
.pillar--smart .pillar__result   { background: var(--smart-soft); border-color: #FCE1A8; }

.pillar__more {
  display: block;
  margin: 14px 26px 0;
  font-size: 14px;
}

.pillar--run .pillar__more     { color: var(--run-ink); }
.pillar--protect .pillar__more { color: var(--protect-ink); }
.pillar--smart .pillar__more   { color: var(--smart-ink); }

/* The accessible control */
.pillar__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 18px;
  padding: 14px 26px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-700);
  cursor: pointer;
  text-align: left;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease);
}

.pillar__toggle:hover { background: var(--slate-50); color: var(--slate-950); }
.pillar__toggle:focus-visible { outline-offset: -4px; border-radius: 0; }

.pillar__chev {
  width: 26px; height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform var(--med) var(--ease);
}

.pillar__chev svg { width: 12px; height: 12px; }

.pillar.is-open .pillar__chev { transform: rotate(180deg); }
.pillar.is-open .pillar__toggle .label-closed { display: none; }
.pillar:not(.is-open) .pillar__toggle .label-open { display: none; }

/* --------------------------------------------------------------------------
   7. Why EvolveMIP + offer
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.points { display: grid; gap: 14px; }

.point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.point__icon {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  font-size: 20px;
  background: var(--slate-100);
}

.point__icon--run     { background: var(--run-soft); }
.point__icon--protect { background: var(--protect-soft); }
.point__icon--smart   { background: #FDE9C2; }

.point h3 { font-size: 17px; margin-bottom: 4px; }
.point p { font-size: 15px; color: var(--text-soft); }

/* Offer card */
.offer {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.5vw, 36px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(14, 165, 233, .28), transparent 60%),
    linear-gradient(160deg, var(--slate-900), var(--slate-950));
  color: var(--slate-300);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .08);
}

.offer__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(251, 191, 36, .16);
  border: 1px solid rgba(251, 191, 36, .4);
  color: var(--smart-dark);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.offer h3 {
  font-size: clamp(22px, 2.6vw, 27px);
  color: var(--white);
  margin-bottom: 12px;
}

.offer p {
  font-size: 15.5px;
  color: var(--slate-300);
  margin-bottom: 22px;
}

.offer__list {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 14.5px;
  color: var(--slate-300);
}

.offer__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.offer__list li::before {
  content: "✓";
  flex: none;
  width: 20px; height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(45, 212, 191, .18);
  color: var(--protect-dark);
  font-size: 12px;
  font-weight: 800;
}

.offer__fine {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--slate-500);
  text-align: center;
}

/* --------------------------------------------------------------------------
   8. CTA band
   -------------------------------------------------------------------------- */
.band { padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 8vw, 96px); }

.band__inner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(44px, 6vw, 68px) clamp(24px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(640px 260px at 50% -30%, rgba(14, 165, 233, .35), transparent 65%),
    radial-gradient(400px 200px at 100% 100%, rgba(245, 158, 11, .18), transparent 60%),
    linear-gradient(160deg, var(--slate-900), var(--slate-950));
  color: var(--slate-300);
  box-shadow: var(--shadow-lg);
}

.band__inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  margin-bottom: 12px;
}

.band__inner p {
  max-width: 50ch;
  margin: 0 auto 28px;
  font-size: 17px;
  color: var(--slate-300);
}

.band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   9. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--slate-950);
  color: var(--slate-300);
  padding: clamp(44px, 6vw, 64px) 0 32px;
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr) minmax(0, 1fr);
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand .brand { color: var(--white); margin-bottom: 12px; }
.footer-brand .brand__mip { color: var(--sky-light); }

.footer-tagline {
  font-style: italic;
  color: var(--sky-light);
  margin-bottom: 12px;
}

.footer-desc { color: var(--slate-500); max-width: 40ch; }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul { display: grid; gap: 8px; }

.footer-col a {
  color: var(--slate-300);
  text-decoration: none;
}

.footer-col a:hover { color: var(--white); text-decoration: underline; }

.footer-contact li { display: flex; gap: 10px; align-items: baseline; }
.footer-contact .lbl { color: var(--slate-500); min-width: 46px; font-size: 13px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  font-size: 13px;
  color: var(--slate-500);
}

/* --------------------------------------------------------------------------
   10. Page header (inner pages)
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  background:
    radial-gradient(800px 380px at 90% -20%, rgba(14, 165, 233, .22), transparent 60%),
    linear-gradient(180deg, var(--slate-950), var(--slate-900));
  color: var(--slate-300);
}

.page-head h1 {
  font-size: clamp(34px, 5vw, 54px);
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 16px;
}

.page-head .lede {
  color: var(--slate-300);
  max-width: 56ch;
}

.page-head .kicker { color: var(--sky-light); }

/* Jump links (services) */
.jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.jump {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease);
}

.jump:hover { background: rgba(255, 255, 255, .12); color: var(--white); }

.jump__dot { width: 10px; height: 10px; border-radius: 50%; }
.jump--run .jump__dot     { background: var(--run-dark); }
.jump--protect .jump__dot { background: var(--protect-dark); }
.jump--smart .jump__dot   { background: var(--smart-dark); }

/* --------------------------------------------------------------------------
   11. Services page — pillar sections
   -------------------------------------------------------------------------- */
.svc {
  padding: clamp(56px, 8vw, 96px) 0;
  scroll-margin-top: 80px;
}

.svc + .svc { border-top: 1px solid var(--line); }

.svc--smart {
  background:
    radial-gradient(700px 360px at 100% 0%, rgba(245, 158, 11, .12), transparent 60%),
    linear-gradient(180deg, #FFFBF2, var(--bg));
}

.svc__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.svc__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.svc__kicker .n {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0;
}

.svc--run .svc__kicker     { color: var(--run-ink); }
.svc--protect .svc__kicker { color: var(--protect-ink); }
.svc--smart .svc__kicker   { color: var(--smart-ink); }
.svc--run .svc__kicker .n     { background: var(--run-ink); }
.svc--protect .svc__kicker .n { background: var(--protect-ink); }
.svc--smart .svc__kicker .n   { background: var(--smart-ink); }

.svc__head h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  margin-bottom: 12px;
}

.svc__promise {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: var(--slate-700);
}

.svc__intro {
  font-size: 16.5px;
  color: var(--text-soft);
}

.svc__intro p + p { margin-top: 12px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.svc-card {
  position: relative;
  padding: 24px 22px 24px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}

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

.svc-card::before {
  content: "";
  position: absolute;
  left: 0; top: 22px; bottom: 22px;
  width: 3px;
  border-radius: 0 3px 3px 0;
}

.svc--run .svc-card::before     { background: var(--run-hue); }
.svc--protect .svc-card::before { background: var(--protect-hue); }
.svc--smart .svc-card::before   { background: var(--smart-hue); }

.svc-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.svc-card__what {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mute);
  margin-bottom: 10px;
}

.svc-card p { font-size: 14.5px; color: var(--text-soft); }

.svc__result {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid;
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-950);
  display: flex;
  gap: 12px;
  align-items: center;
}

.svc__result .lbl {
  flex: none;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
  color: var(--white);
}

.svc--run .svc__result     { background: var(--run-soft); border-color: #D6E3FF; }
.svc--protect .svc__result { background: var(--protect-soft); border-color: #C7F0E4; }
.svc--smart .svc__result   { background: var(--smart-soft); border-color: #FCE1A8; }
.svc--run .svc__result .lbl     { background: var(--run-ink); }
.svc--protect .svc__result .lbl { background: var(--protect-ink); }
.svc--smart .svc__result .lbl   { background: var(--smart-ink); }

/* "Safely" strip — the AI guardrails panel on the wedge section */
.guardrails {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background: var(--slate-950);
  color: var(--slate-300);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.guardrails h3 { color: var(--white); font-size: 22px; margin-bottom: 10px; }
.guardrails > div > p { color: var(--slate-300); font-size: 15px; }

.guardrails ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.guardrails li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
}

.guardrails li b {
  display: block;
  color: var(--smart-dark);
  font-size: 13px;
  margin-bottom: 2px;
}

/* --------------------------------------------------------------------------
   12. About page
   -------------------------------------------------------------------------- */
.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.principle {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.principle__n {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  background: var(--slate-950);
}

.principle--run .principle__n     { background: var(--run-ink); }
.principle--protect .principle__n { background: var(--protect-ink); }
.principle--smart .principle__n   { background: var(--smart-ink); }
.principle--sky .principle__n     { background: var(--sky-strong); }

.principle h3 { font-size: 19px; margin-bottom: 8px; }
.principle p { font-size: 15px; color: var(--text-soft); }

.prose { font-size: 16.5px; color: var(--text-soft); }
.prose p + p { margin-top: 16px; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.prose h2 + p { margin-top: 0; }
.prose strong { color: var(--slate-950); }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.split .section-head { margin-bottom: 0; }

.plain-list { display: grid; gap: 12px; }

.plain-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text-soft);
}

.plain-list li b { color: var(--slate-950); }

.plain-list .chk {
  flex: none;
  margin-top: 2px;
  width: 22px; height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--protect-soft);
  color: var(--protect-ink);
  font-size: 12px;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   13. Contact page
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.contact-card h2 { font-size: 20px; margin-bottom: 14px; }

.contact-lines { display: grid; gap: 14px; }

.contact-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.contact-line__icon {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--slate-100);
  font-size: 20px;
}

.contact-line .lbl {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.contact-line a {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-950);
  text-decoration: none;
}

.contact-line a:hover { color: var(--sky-strong); text-decoration: underline; }

.steps { display: grid; gap: 14px; counter-reset: step; }

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  font-size: 15px;
  color: var(--text-soft);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--slate-950);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.steps li b { color: var(--slate-950); display: block; margin-bottom: 2px; }

/* Form */
.form-card {
  padding: clamp(24px, 3vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-card h2 { font-size: 24px; margin-bottom: 6px; }
.form-card > p { font-size: 15px; color: var(--text-soft); margin-bottom: 22px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-800);
}

.field label .opt {
  font-weight: 500;
  color: var(--text-mute);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--slate-950);
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: 10px;
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky-btn);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, .18);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--slate-500); }

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.form-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--smart-soft);
  border: 1px solid #FCE1A8;
  font-size: 13.5px;
  color: var(--slate-700);
}

.form-note .ico { font-size: 15px; line-height: 1.5; }
.form-note b { color: var(--slate-950); }

.form-status {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--protect-ink);
  font-weight: 600;
  min-height: 1.4em;
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; }

  .nav__links {
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px var(--gutter) 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav__links.is-open { display: flex; }

  .nav__link { padding: 12px 14px; border-radius: 10px; font-size: 16px; }
  .nav__link[aria-current="page"] { box-shadow: inset 3px 0 0 var(--sky); }
  .nav__cta { margin: 8px 0 0; width: 100%; }

  .why-grid,
  .svc__head,
  .split,
  .contact-grid,
  .guardrails,
  .principles { grid-template-columns: 1fr; }

  .guardrails ul { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__actions .btn { width: 100%; }
  .band__actions .btn { width: 100%; }
  .btn { white-space: normal; text-align: center; }
  .svc__result { flex-direction: column; align-items: flex-start; }
  .stack__item { grid-template-columns: auto 1fr; }
  .stack__bar { grid-row: 1 / span 1; }
  .pillar__head { padding: 24px 20px 0; }
  .pillar__body, .pillar__toggle { padding-left: 20px; padding-right: 20px; }
  .pillar__list, .pillar__result, .pillar__more { margin-left: 20px; margin-right: 20px; }
}

/* --------------------------------------------------------------------------
   15. Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
