/* Ionix — design tokens */
:root {
  /* Core brand blues */
  --ionix-electric: #0088FC;
  --ionix-bright:   #0070F0;
  --ionix-royal:    #0033B5;
  --ionix-navy:     #001E74;
  --ionix-navy-900: #001143;

  /* Blue tint scale */
  --blue-50:#E6F3FF; --blue-100:#CCE7FF; --blue-200:#99CFFF; --blue-300:#66B3FF;
  --blue-400:#339BFD; --blue-500:#0088FC; --blue-600:#0070F0; --blue-700:#0033B5;
  --blue-800:#001E74; --blue-900:#001143;

  /* Neutrals */
  --ionix-white:#F0F0F0; --pure-white:#FFFFFF; --ionix-ink:#000000;
  --ink-on-light:#0A0F1A; /* light-theme text-primary (system token) */
  --gray-cool:#B0B4B8; --gray-muted:#8A8F94; --gray-slate:#6E7378;
  --neutral-0:#000000; --neutral-50:#0A0A0A; --neutral-100:#121316; --neutral-200:#1B1D21;
  --neutral-300:#26292E; --neutral-400:#3A3E44; --neutral-500:#6E7378; --neutral-600:#8A8F94;
  --neutral-700:#B0B4B8; --neutral-800:#D6D8DA; --neutral-900:#F0F0F0; --neutral-950:#FFFFFF;

  /* Signature gradients */
  --ionix-gradient:        linear-gradient(135deg,#0088FC 0%,#0033B5 55%,#001E74 100%);
  --ionix-gradient-bright: linear-gradient(135deg,#339BFD 0%,#0088FC 100%);
  --ionix-gradient-light:  linear-gradient(160deg,#B0B4B8 0%,#6E7378 100%);
  --ionix-gradient-dark:   linear-gradient(160deg,#0A0A0A 0%,#000000 100%);
  --ionix-gradient-navy:   linear-gradient(160deg,#001E74 0%,#000000 100%);

  /* Signature glow — use sparingly */
  --ionix-glow:      0 0 24px rgba(0,136,252,0.55);
  --ionix-glow-soft: 0 0 40px rgba(0,136,252,0.30);
  --ionix-glow-ring: 0 0 0 1px rgba(0,136,252,0.55), 0 0 20px rgba(0,136,252,0.45);

  /* Status */
  --success:#1FB877; --warning:#F5A623; --danger:#F0483E; --info:var(--ionix-electric);

  /* Type */
  --font-display:'Michroma','Orbitron','Segoe UI',sans-serif;
  --font-alt:'Orbitron','Michroma',sans-serif;
  --font-body:'Inter','Montserrat',system-ui,sans-serif;
  --font-marketing:'Montserrat','Inter',system-ui,sans-serif;
  --font-mono:'JetBrains Mono','Consolas',ui-monospace,monospace;
  --fw-regular:400; --fw-medium:500; --fw-semibold:600; --fw-bold:700; --fw-extra:800;
  --text-2xs:11px; --text-xs:12px; --text-sm:14px; --text-md:16px; --text-lg:18px;
  --text-xl:22px; --text-2xl:28px; --text-3xl:36px; --text-4xl:48px; --text-5xl:64px; --text-6xl:84px;
  --lh-tight:1.05; --lh-snug:1.2; --lh-normal:1.5; --lh-relaxed:1.65;
  --ls-tight:-0.02em; --ls-normal:0; --ls-wide:0.04em; --ls-wider:0.12em;
  --ls-tagline:0.35em;

  /* Spacing (4px base) */
  --space-1:4px; --space-2:8px; --space-3:12px; --space-4:16px; --space-5:20px; --space-6:24px;
  --space-8:32px; --space-10:40px; --space-12:48px; --space-16:64px; --space-20:80px;
  --space-24:96px; --space-32:128px;

  /* Radii */
  --radius-xs:4px; --radius-sm:6px; --radius-md:8px;
  --radius-lg:12px; --radius-xl:16px; --radius-2xl:24px; --radius-pill:999px;

  /* Elevation (dark-first) */
  --shadow-xs:0 1px 2px rgba(0,0,0,0.40);
  --shadow-sm:0 2px 6px rgba(0,0,0,0.45);
  --shadow-md:0 8px 24px rgba(0,0,0,0.50);
  --shadow-lg:0 20px 48px rgba(0,0,0,0.55);
  --shadow-inset:inset 0 1px 0 rgba(255,255,255,0.04);
  --shadow-accent:0 12px 32px rgba(0,51,181,0.35);

  /* Motion */
  --ease-standard:cubic-bezier(0.2,0,0,1);
  --ease-emphasized:cubic-bezier(0.16,1,0.3,1);
  --dur-fast:120ms; --dur-base:200ms; --dur-slow:360ms;

  /* Layout */
  --container-sm:640px; --container-md:960px; --container-lg:1200px; --container-xl:1440px;
  --focus-ring:0 0 0 3px rgba(0,136,252,0.45);
}

/* DARK THEME (default) */
:root, [data-theme="dark"] {
  --color-primary:var(--ionix-electric);
  --color-primary-hover:var(--ionix-bright);
  --color-primary-press:var(--ionix-royal);
  --color-on-primary:#FFFFFF;
  --surface-page:#000000; --surface-raised:#0C0D10; --surface-card:#121316;
  --surface-card-2:#1B1D21; --surface-inset:#0A0A0A; --surface-overlay:rgba(0,0,0,0.72);
  --border-subtle:#1F2226; --border-default:#2A2E33; --border-strong:#3A3E44;
  --border-accent:var(--ionix-electric);
  --text-primary:#F0F0F0; --text-secondary:#B0B4B8; --text-muted:#8A8F94;
  --text-faint:#6E7378; --text-accent:var(--ionix-electric); --text-on-accent:#FFFFFF;
  --page-gradient:var(--ionix-gradient-dark);
}

/* Page baseline */
html { background: var(--surface-page); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: var(--fw-regular);
}
a { color: var(--ionix-electric); }
a:hover { color: var(--blue-400); }
img { max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Buttons */
.ix-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: var(--fw-semibold);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  box-sizing: border-box;
  transition: background var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard);
}
.ix-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.ix-btn--primary { background: var(--color-primary); color: var(--color-on-primary); }
.ix-btn--primary:hover { background: var(--color-primary-hover); color: var(--color-on-primary); }
.ix-btn--primary:active { background: var(--color-primary-press); transform: translateY(1px) scale(.99); }
.ix-btn--secondary { background: transparent; color: var(--text-primary); border-color: var(--border-default); }
.ix-btn--secondary:hover { border-color: var(--border-accent); color: var(--text-accent); }
.ix-btn--secondary:active { border-color: var(--color-primary-press); transform: translateY(1px) scale(.99); }
.ix-btn--ghost { background: transparent; color: var(--text-secondary); }
.ix-btn--ghost:hover { background: rgba(0,136,252,.10); color: var(--text-accent); }
.ix-btn--glow { background: var(--color-primary); color: var(--color-on-primary); box-shadow: var(--ionix-glow); }
.ix-btn--glow:hover { background: var(--color-primary-hover); color: var(--color-on-primary); box-shadow: var(--ionix-glow), var(--shadow-accent); }
.ix-btn--glow:active { background: var(--color-primary-press); transform: translateY(1px) scale(.99); }
.ix-btn--lg { font-size: var(--text-md); padding: var(--space-4) var(--space-8); }
.ix-btn--sm { font-size: var(--text-xs); padding: var(--space-2) var(--space-4); }

/* Cards */
.ix-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm), var(--shadow-inset);
}
.ix-card__title {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em;
  font-size: var(--text-lg); line-height: var(--lh-snug);
  margin: 0 0 var(--space-3);
  color: var(--text-primary);
}
.ix-card__body { color: var(--text-secondary); font-size: var(--text-sm); margin: 0; line-height: var(--lh-relaxed); }
.ix-card--interactive {
  cursor: pointer; display: block; text-decoration: none; color: inherit;
  transition: transform var(--dur-slow) var(--ease-emphasized),
              border-color var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-slow) var(--ease-emphasized);
}
.ix-card--interactive:hover { transform: translateY(-2px); border-color: var(--border-accent); box-shadow: var(--shadow-md); color: inherit; }
.ix-card--interactive:focus-visible { outline: none; box-shadow: var(--focus-ring); }

/* Badge */
.ix-badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  background: rgba(0,136,252,.12);
  color: var(--text-accent);
  font-size: var(--text-xs); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider); text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
}

/* Form fields */
.ix-field { display: flex; flex-direction: column; gap: var(--space-2); }
.ix-label { font-size: var(--text-xs); font-weight: var(--fw-medium); color: var(--text-secondary);
            letter-spacing: var(--ls-wide); text-transform: uppercase; }
.ix-input {
  background: var(--surface-inset);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body); font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  min-height: 44px;
  box-sizing: border-box;
  transition: border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
.ix-input::placeholder { color: var(--text-faint); }
.ix-input:hover { border-color: var(--border-strong); }
.ix-input:focus { outline: none; border-color: var(--border-accent); box-shadow: var(--focus-ring); }
textarea.ix-input { min-height: 140px; resize: vertical; line-height: var(--lh-normal); }

/* Sticky topbar */
.ix-topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-8);
  padding: var(--space-4) var(--space-8);
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.ix-topbar__logo { display: flex; align-items: center; }
.ix-topbar__logo img { height: 44px; width: auto; display: block; }

/* CSS wordmark (design system §9) — crisp at topbar scale */
.ix-wordmark {
  display: flex; align-items: center;
  min-height: 44px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: var(--text-xl);
  letter-spacing: var(--ls-wide);
  line-height: 1;
  color: var(--text-primary);
  text-decoration: none;
}
.ix-wordmark span { color: var(--ionix-electric); }
.ix-wordmark:hover { color: var(--text-primary); }
.ix-nav { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.ix-nav a {
  color: var(--text-secondary); text-decoration: none;
  font-size: var(--text-sm); font-weight: var(--fw-medium); letter-spacing: var(--ls-wide);
  padding: var(--space-3) 0;
  transition: color var(--dur-base) var(--ease-standard);
}
.ix-nav a:hover { color: var(--text-primary); }
.ix-nav a[aria-current="page"] { color: var(--text-accent); text-shadow: var(--ionix-glow-soft); }

/* Hero */
.ix-hero {
  position: relative; overflow: hidden;
  background: var(--surface-page);
  padding: var(--space-32) var(--space-8);
  text-align: center;
}
.ix-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 30%, rgba(0,136,252,.22) 0%, rgba(0,136,252,0) 70%);
  pointer-events: none;
}
.ix-hero__inner { position: relative; max-width: var(--container-md); margin: 0 auto; }
.ix-hero__title {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em;
  font-size: var(--text-5xl); line-height: var(--lh-tight);
  margin: 0 0 var(--space-6);
}
.ix-hero__sub {
  font-size: var(--text-lg); line-height: var(--lh-relaxed); color: var(--text-secondary);
  max-width: var(--container-sm); margin: 0 auto var(--space-10);
}
.ix-hero__actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* Sub-page header (compact hero, no glow) */
.ix-pagehead {
  padding: var(--space-24) var(--space-8) var(--space-16);
  text-align: center;
}
.ix-pagehead__inner { max-width: var(--container-md); margin: 0 auto; }
.ix-pagehead__title {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em;
  font-size: var(--text-4xl); line-height: var(--lh-tight);
  margin: 0 0 var(--space-5);
}
.ix-pagehead__sub {
  font-size: var(--text-lg); line-height: var(--lh-relaxed); color: var(--text-secondary);
  max-width: var(--container-sm); margin: 0 auto;
}

/* Sections */
.ix-section { padding: var(--space-24) var(--space-8); }
.ix-section--tight { padding: var(--space-16) var(--space-8); }
.ix-container { max-width: var(--container-lg); margin: 0 auto; }
.ix-eyebrow {
  display: block;
  font-size: var(--text-xs); font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: var(--ls-wider);
  color: var(--text-muted); /* accent is spent on the statement's word */
  margin-bottom: var(--space-4);
}
.ix-h2 {
  font-size: var(--text-3xl); line-height: var(--lh-snug);
  margin: 0 0 var(--space-6);
}
.ix-section__intro {
  color: var(--text-secondary); font-size: var(--text-md); line-height: var(--lh-relaxed);
  max-width: var(--container-sm); margin: 0 0 var(--space-12);
}
.ix-center { text-align: center; }
.ix-center .ix-section__intro { margin-left: auto; margin-right: auto; }

/* Grids */
.ix-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-6); }
.ix-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-6); }

/* Icon chip */
.ix-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0,136,252,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.ix-icon svg { width: 24px; height: 24px; stroke: var(--ionix-electric); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Fact strip */
.ix-facts {
  display: flex; justify-content: center; gap: var(--space-16); flex-wrap: wrap;
  padding: var(--space-8);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.ix-fact { text-align: center; }
.ix-fact__value {
  display: block;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em;
  font-size: var(--text-xl); color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.ix-fact__label {
  font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--ls-wider);
  color: var(--text-muted);
}

/* Numbered steps */
.ix-step { position: relative; }
.ix-step__num {
  font-family: var(--font-mono); font-weight: var(--fw-semibold);
  font-size: var(--text-sm); color: var(--text-accent);
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(0,136,252,.45); border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}

/* Service rows (Services page) */
.ix-svc {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--space-16);
  align-items: start;
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border-subtle);
}
.ix-svc:first-of-type { border-top: 0; }
.ix-svc--flip { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.ix-svc--flip .ix-svc__info { order: 2; }
.ix-svc--flip .ix-svc__panel { order: 1; }
.ix-svc__title { font-size: var(--text-2xl); margin: 0 0 var(--space-4); }
.ix-svc__body { color: var(--text-secondary); line-height: var(--lh-relaxed); margin: 0; }
.ix-svc__panel { display: flex; flex-direction: column; gap: var(--space-3); }
.ix-svc__panel-title {
  font-size: var(--text-xs); font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: var(--ls-wider);
  color: var(--text-muted);
  margin: 0 0 var(--space-2);
  font-family: var(--font-body);
}

/* Checklist */
.ix-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3);
           font-size: var(--text-sm); color: var(--text-secondary); }
.ix-list li { padding-left: var(--space-6); position: relative; line-height: var(--lh-normal); }
.ix-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px;
  border-radius: var(--radius-pill); background: var(--color-primary);
}

/* Pricing */
.ix-pricing { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-6); align-items: stretch; }
.ix-price {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-5);
}
.ix-price__tier {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em;
  font-size: var(--text-lg); margin: 0;
}
.ix-price__amount {
  /* one price-row treatment: the whole amount runs in mono at one size */
  font-family: var(--font-mono);
  font-weight: var(--fw-semibold);
  font-size: var(--text-3xl);
  line-height: var(--lh-tight);
  font-variant-numeric: tabular-nums;
  margin: 0;
}
/* one treatment for every amount glyph: the placeholder inherits the
   row's value color/weight exactly — brackets + mono mark it */
.ix-price__amount .ix-placeholder {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}
.ix-price__unit { font-family: var(--font-body); font-weight: var(--fw-regular); font-size: var(--text-sm); color: var(--text-muted); }
.ix-price__blurb {
  font-size: var(--text-sm); color: var(--text-secondary); margin: 0; line-height: var(--lh-relaxed);
  /* reserve three lines so the lists start on one baseline across cards */
  min-height: calc(3 * var(--lh-relaxed) * var(--text-sm));
}
/* fixed-monthly mode row (no dollar figures — quoted after assessment) */
.ix-price__mode {
  font-family: var(--font-mono);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-primary);
}
.ix-price--featured .ix-price__mode { color: var(--pure-white); }
.ix-price__inc {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-muted);
}
.ix-price--featured .ix-price__inc { color: rgba(255,255,255,.72); }
.ix-price__best {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: var(--lh-normal);
  min-height: calc(2 * var(--lh-normal) * var(--text-xs));
}
.ix-price--featured .ix-price__best { color: rgba(255,255,255,.72); }

/* guarantee bar — accent-bordered horizontal card */
.ix-guarantee {
  margin-top: var(--space-8);
  border: 1px solid rgba(0,136,252,.35);
  background: rgba(0,136,252,.06);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
}
.ix-guarantee__title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: var(--text-md);
  color: var(--text-primary);
}
.ix-guarantee__text { margin: 0; font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--lh-relaxed); }

/* comparison matrix — scrolls within its own container on mobile */
.ix-cmpwrap { overflow-x: auto; }
.ix-cmp { width: 100%; min-width: 560px; border-collapse: collapse; }
.ix-cmp th {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-3);
}
.ix-cmp th.ix-cmp__svc { text-align: left; padding-left: 0; }
.ix-cmp th.ix-cmp__pro { color: var(--text-primary); }
.ix-cmp td {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-3);
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
}
.ix-cmp td.ix-cmp__svc {
  text-align: left; padding-left: 0;
  font-family: var(--font-body);
  color: var(--text-secondary);
}
.ix-cmp .ix-cmp__yes { color: var(--ionix-electric); font-weight: var(--fw-semibold); }
.ix-cmp .ix-cmp__no { color: var(--text-faint); }
.ix-cmp td.ix-cmp__pro, .ix-cmp th.ix-cmp__pro { background: rgba(0,136,252,.05); }

/* branded service items — compact horizontal icon-row cards */
.ix-card--svcitem {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-5);
}
.ix-card--svcitem .ix-icon {
  margin-bottom: 0; flex-shrink: 0;
  width: 44px; height: 44px;
}
.ix-card--svcitem .ix-icon svg { width: 22px; height: 22px; }
.ix-card--svcitem .ix-card__title { font-size: var(--text-md); margin-bottom: var(--space-2); }
.ix-card--svcitem .ix-card__body { font-size: var(--text-sm); }
.ix-svcfoot {
  display: block;
  margin-top: var(--space-6);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-faint);
}

/* add-on grouping + fit list */
.ix-group-label {
  display: block;
  margin: var(--space-12) 0 var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-muted);
}
.ix-card--addon .ix-card__title { font-size: var(--text-md); }
.ix-card--addon .ix-card__body { font-size: var(--text-sm); }
.ix-card--wide { grid-column: 1 / -1; }
.ix-fitlist { display: flex; flex-direction: column; gap: var(--space-3); }
.ix-fit {
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-5);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
}
.ix-fit__title { margin: 0; font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--text-primary); }
.ix-fit__sub { margin: var(--space-1) 0 0; font-size: var(--text-xs); color: var(--text-muted); }

/* a real pill, not a banner — and a reserved slot on the other cards */
.ix-price .ix-badge { align-self: flex-start; }
.ix-badge--slot { visibility: hidden; }
/* featured CTA: white fill so it cannot dissolve into the gradient */
.ix-price--featured .ix-btn--primary { background: var(--pure-white); color: var(--ink-on-light); }
.ix-price--featured .ix-btn--primary:hover { background: var(--blue-50); color: var(--ink-on-light); }
/* badge label: pure white, full strength */
.ix-price--featured .ix-badge { color: var(--pure-white); background: rgba(255,255,255,.22); }
/* featured value color is pure white; the placeholder inherits it */
.ix-price--featured .ix-price__amount { color: var(--pure-white); }
.ix-price__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3);
                  font-size: var(--text-sm); color: var(--text-secondary); }
.ix-price__list li { padding-left: var(--space-5); position: relative; }
.ix-price__list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px;
  border-radius: var(--radius-pill); background: var(--color-primary);
}
.ix-price--featured {
  background: var(--ionix-gradient);
  border-color: rgba(0,136,252,.55);
  box-shadow: var(--ionix-glow-soft), var(--shadow-lg);
  position: relative;
}
.ix-price--featured .ix-price__list { color: rgba(255,255,255,.86); }
.ix-price--featured .ix-price__list li::before { background: var(--pure-white); }
.ix-price--featured .ix-price__unit { color: rgba(255,255,255,.72); }
.ix-price--featured .ix-price__blurb { color: rgba(255,255,255,.86); }
.ix-price--featured .ix-badge { background: rgba(255,255,255,.18); color: var(--pure-white); }
.ix-price--featured .ix-btn--secondary { border-color: rgba(255,255,255,.45); color: var(--pure-white); }
.ix-price--featured .ix-btn--secondary:hover { border-color: var(--pure-white); color: var(--pure-white); }

/* CTA band */
.ix-cta {
  background: var(--ionix-gradient);
  border-radius: var(--radius-2xl);
  padding: var(--space-20) var(--space-8);
  text-align: center;
}
.ix-cta__title {
  font-size: var(--text-3xl); line-height: var(--lh-snug);
  color: var(--pure-white);
  margin: 0 0 var(--space-4);
}
.ix-cta__sub { color: rgba(255,255,255,.78); margin: 0 auto var(--space-8); max-width: var(--container-sm); line-height: var(--lh-relaxed); }
.ix-cta .ix-btn--primary { background: var(--pure-white); color: var(--ionix-royal); }
.ix-cta .ix-btn--primary:hover { background: var(--blue-50); color: var(--ionix-royal); }

/* Footer */
.ix-footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-16) var(--space-8) var(--space-12);
}
.ix-footer__grid {
  max-width: var(--container-lg); margin: 0 auto;
  display: flex; justify-content: space-between; gap: var(--space-12); flex-wrap: wrap;
  align-items: flex-start;
}
.ix-footer__logo img { height: 52px; width: auto; display: block; }
.ix-footer__tag {
  font-size: var(--text-xs); font-weight: var(--fw-medium);
  text-transform: uppercase; letter-spacing: var(--ls-tagline);
  color: var(--text-muted); margin-top: var(--space-4);
}
.ix-footer__h {
  font-size: var(--text-xs); font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: var(--ls-wider);
  color: var(--text-muted); margin: 0 0 var(--space-4);
}
.ix-footer__col { display: flex; flex-direction: column; gap: var(--space-2); }
.ix-footer__col a { color: var(--text-secondary); text-decoration: none; font-size: var(--text-sm); }
.ix-footer__col a:hover { color: var(--text-primary); }
.ix-footer__col span { color: var(--text-secondary); font-size: var(--text-sm); }
.ix-footer__legal {
  max-width: var(--container-lg); margin: var(--space-12) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
  font-size: var(--text-xs); color: var(--text-faint);
  display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap;
}

/* Contact layout */
.ix-contact { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--space-12); align-items: start; }
.ix-contact__form { display: flex; flex-direction: column; gap: var(--space-5); }
.ix-contact__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-5); }
.ix-contact__info { display: flex; flex-direction: column; gap: var(--space-6); }
.ix-contact__item { display: flex; gap: var(--space-4); align-items: flex-start; }
.ix-contact__item .ix-icon { width: 40px; height: 40px; margin: 0; flex-shrink: 0; }
.ix-contact__item .ix-icon svg { width: 20px; height: 20px; }
.ix-contact__label {
  font-size: var(--text-xs); font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: var(--ls-wider);
  color: var(--text-muted);
  display: block; margin-bottom: var(--space-1);
}
.ix-contact__value { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--lh-relaxed); }
.ix-inforows a { color: inherit; text-decoration: none; transition: color var(--dur-base) var(--ease-standard); }
.ix-inforows a:hover { color: var(--text-accent); }
.ix-card__body a {
  color: var(--text-secondary);
  text-decoration: underline; text-underline-offset: 2px;
  transition: color var(--dur-base) var(--ease-standard);
}
.ix-card__body a:hover { color: var(--text-accent); }
/* honeypot — visually removed, still submits with the form; bots fill it */
.ix-hp {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}
.ix-form-status {
  margin: 0;
  font-size: var(--text-sm); line-height: var(--lh-normal);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-default); border-radius: var(--radius-md);
  color: var(--text-secondary);
}
.ix-form-status--ok {
  color: var(--success);
  border-color: rgba(31, 184, 119, 0.35);
  background: rgba(31, 184, 119, 0.08);
}
.ix-form-status--err {
  color: var(--danger);
  border-color: rgba(240, 72, 62, 0.35);
  background: rgba(240, 72, 62, 0.08);
}
.ix-placeholder { font-family: var(--font-mono); color: var(--text-muted); }
.ix-footer__col .ix-placeholder { color: var(--text-muted); }

/* About story — left-aligned column on the page gutter, ~60ch */
.ix-story {
  max-width: var(--container-sm); margin: 0;
  font-size: var(--text-xl); line-height: var(--lh-relaxed); color: var(--text-secondary);
}
.ix-story p { margin: 0 0 var(--space-6); }
.ix-card--value .ix-card__body { font-size: var(--text-md); }

/* Responsive */
@media (max-width: 960px) {
  .ix-grid-3, .ix-grid-2, .ix-pricing { grid-template-columns: 1fr; }
  .ix-svc, .ix-svc--flip { grid-template-columns: minmax(0, 1fr); gap: var(--space-8); }
  .ix-svc--flip .ix-svc__info { order: 1; }
  .ix-svc--flip .ix-svc__panel { order: 2; }
  .ix-contact { grid-template-columns: 1fr; }
  .ix-contact__row { grid-template-columns: 1fr; }
  .ix-hero { padding: var(--space-20) var(--space-6); }
  .ix-hero__title { font-size: var(--text-4xl); }
  .ix-pagehead__title { font-size: var(--text-3xl); }
  .ix-section { padding: var(--space-16) var(--space-6); }
  .ix-topbar { padding: var(--space-4) var(--space-5); }
  .ix-nav { gap: var(--space-4); }
  .ix-facts { gap: var(--space-8); }
}

/* ============================================================
   HOMEPAGE CRAFT LAYER — hero field, living cards, proof band,
   section rhythm. All values derived from the tokens above.
   Ambient loops are sanctioned in exactly three places:
   hero canvas, card mini-visualizations, chip marquee.
   ============================================================ */

/* Single accent token inside a neutral headline */
.ix-accent { color: var(--text-accent); }
.ix-nowrap { white-space: nowrap; }
.ix-tight { letter-spacing: normal; }

/* quiet technical-term subtitle under a plain-language title */
.ix-subtitle {
  margin: 0 0 var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--lh-normal);
}
.ix-card--viz .ix-subtitle { margin: 0 var(--space-6) var(--space-3); }
.ix-svc .ix-subtitle { margin: calc(-1 * var(--space-2)) 0 var(--space-4); max-width: 60ch; }

/* capability tag row (VoIP band) */
.ix-voip-tags { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-6); }

/* ---- Piece 1: hero with living canvas field ---- */
.ix-hero--field {
  /* the hero owns the first viewport (topbar is ~77px tall) */
  display: flex; align-items: center; justify-content: center;
  box-sizing: border-box;
  min-height: calc(92vh - 77px);
  min-height: calc(92svh - 77px);
  padding: var(--space-24) var(--space-8);
}
.ix-hero--field .ix-hero__inner {
  max-width: var(--container-xl);
  width: 100%;
}
.ix-hero--field .ix-hero__actions { gap: var(--space-6); }
/* white primary — near-black ink so the fill, not the ink, carries it */
.ix-hero--field .ix-btn--primary { background: var(--pure-white); color: var(--ink-on-light); }
.ix-hero--field .ix-btn--primary:hover { background: var(--blue-50); color: var(--ink-on-light); }
.ix-hero--field::before {
  /* particles carry the atmosphere; the wash is barely-there */
  background: radial-gradient(60% 50% at 50% 32%, rgba(0,136,252,.06) 0%, rgba(0,136,252,0) 70%);
}
.ix-hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  /* field covers the full hero, fading only near the section end */
  -webkit-mask-image: linear-gradient(to bottom, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 90%, transparent 100%);
}
.ix-hero__eyebrow { margin-bottom: var(--space-5); }
.ix-hero--field .ix-hero__title {
  /* two-line block ("YOUR TECHNOLOGY. / ELEVATED.") — the shorter lines
     let the scale climb to 84px for real mass (~5.2x body) */
  font-size: clamp(var(--text-2xl), 6vw, var(--text-6xl));
  letter-spacing: 0;
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-6);
  /* give Michroma's thin strokes mass */
  -webkit-text-stroke: 1px currentColor;
  text-stroke: 1px currentColor;
}
.ix-hero--field .ix-hero__sub { max-width: var(--container-sm); font-size: var(--text-md); }

/* Hero content rises in on load. Runs from a hidden keyframe with
   fill "both", so no-JS still ends visible and reduced-motion (global
   animation:none) shows the default fully-visible state. */
@keyframes ix-hero-rise {
  from { opacity: 0; transform: translateY(var(--space-6)); }
  to   { opacity: 1; transform: none; }
}
.ix-hero--field .ix-hero__eyebrow,
.ix-hero--field .ix-hero__title,
.ix-hero--field .ix-hero__sub,
.ix-hero--field .ix-hero__actions {
  animation: ix-hero-rise 700ms var(--ease-emphasized) both;
}
.ix-hero--field .ix-hero__title { animation-delay: 90ms; }
.ix-hero--field .ix-hero__sub { animation-delay: 180ms; }
.ix-hero--field .ix-hero__actions { animation-delay: 270ms; }

/* ---- Piece 4: section rhythm on pure black ---- */
.ix-band {
  /* 128px + 40px = 168px vertical — the bar's 160–200px range */
  padding: calc(var(--space-32) + var(--space-10)) var(--space-8);
  border-top: 1px solid var(--border-subtle); /* hairline separator */
  /* keep eyebrows clear of the sticky topbar at natural scroll stops */
  scroll-margin-top: calc(var(--space-20) + var(--space-3));
}
.ix-section { scroll-margin-top: calc(var(--space-20) + var(--space-3)); }
.ix-band__head { max-width: var(--container-md); margin-bottom: var(--space-16); }
.ix-statement {
  font-size: clamp(var(--text-xl), 4vw, var(--text-4xl));
  line-height: var(--lh-snug);
  margin: 0 0 var(--space-6);
}
.ix-band__intro {
  color: var(--text-secondary);
  font-size: var(--text-md); line-height: var(--lh-relaxed);
  max-width: 60ch; margin: 0;
}
.ix-cta-actions {
  display: flex; gap: var(--space-4); flex-wrap: wrap;
  margin-top: var(--space-10);
}

/* Reveal system — the hidden state is applied by JS per-element ONLY
   after IntersectionObserver is confirmed live, and only to elements
   below the viewport. Default state is fully visible. */
[data-reveal].ix-pre {
  opacity: 0;
  transform: translateY(var(--space-5));
  transition: none; /* hiding is instant — only the reveal animates */
}
[data-reveal].ix-pre.is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity 600ms var(--ease-standard),
              transform 600ms var(--ease-emphasized);
}

/* ---- Piece 2: living miniature visualizations ---- */
.ix-card--viz {
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.ix-card--viz .ix-card__title {
  margin: var(--space-5) var(--space-6) var(--space-2);
  /* reserve two title lines so bodies align across a row */
  min-height: calc(2 * var(--lh-snug) * var(--text-lg));
}
.ix-card--viz .ix-card__body { margin: 0 var(--space-6) var(--space-4); }

/* full-width ghost button anchoring the card bottom (equalizes rows) */
.ix-card__link {
  margin: auto var(--space-6) var(--space-6);
  margin-top: auto;
  align-self: stretch;
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  min-height: 44px;
  box-sizing: border-box;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-secondary);
  text-decoration: none;
  transition: border-color var(--dur-base) var(--ease-standard),
              color var(--dur-base) var(--ease-standard);
}
.ix-card__link:hover,
.ix-card--interactive:hover .ix-card__link { border-color: var(--border-accent); color: var(--text-accent); }
.ix-card--viz .ix-card__body { margin-bottom: var(--space-5); }
.ix-card--viz .ix-card__link { margin-top: var(--space-4); }

/* closing weight: hairline + mono payload row above the button */
.ix-card__payload {
  margin: auto var(--space-6) 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  display: flex; align-items: baseline; gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}
.ix-card__payload b {
  color: var(--text-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--text-xs);
  white-space: nowrap;
}
.ix-card__payload i {
  flex: 1;
  border-bottom: 1px dotted var(--border-default);
  transform: translateY(-2px);
}
.ix-card__payload span { color: var(--text-muted); white-space: nowrap; }

/* viz panel bleeds to the card's inner edges, hairline separator below */
.ix-viz {
  position: relative;
  height: 150px;
  flex: none;
  background: var(--surface-inset);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.ix-viz__chart { position: absolute; inset: 0; width: 100%; height: 100%; }

/* instrument labels + state chips (mono) */
.ix-viz__tag, .ix-viz__state, .ix-viz__row {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}
.ix-viz__tag {
  position: absolute; top: var(--space-3); left: var(--space-4);
  color: var(--text-muted); z-index: 1;
}
.ix-viz__state {
  position: absolute; top: var(--space-3); right: var(--space-4);
  display: inline-flex; align-items: center; gap: var(--space-2);
  color: var(--text-secondary); z-index: 1;
}
.ix-viz__dot {
  width: 6px; height: 6px;
  border-radius: var(--radius-pill);
  background: var(--success);
}
.ix-viz__dot--accent { background: var(--ionix-electric); }
.ix-viz__dot--rec { background: var(--danger); animation: ix-viz-blink 2s steps(1) infinite; }
@keyframes ix-viz-blink { 50% { opacity: .15; } }

/* mono value readout, bottom-left of a panel */
.ix-viz__read {
  position: absolute; bottom: var(--space-3); left: var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 1;
}
.ix-viz__val { color: var(--text-secondary); font-weight: var(--fw-semibold); }
.ix-viz__read--right { left: auto; right: var(--space-4); }

/* camera exposure/level meter — gently fluctuating bars */
.ix-viz__meter {
  position: absolute; left: var(--space-4); bottom: var(--space-3);
  display: flex; align-items: flex-end; gap: var(--space-1);
  height: 14px; z-index: 1;
}
.ix-viz__meter i {
  width: 3px; height: 100%;
  background: rgba(0,136,252,.65);
  transform-origin: bottom;
  animation: ix-viz-meter 2.4s ease-in-out infinite;
}
.ix-viz__meter i:nth-child(1) { animation-delay: -0.3s; }
.ix-viz__meter i:nth-child(2) { animation-delay: -1.1s; animation-duration: 2.1s; }
.ix-viz__meter i:nth-child(3) { animation-delay: -0.7s; animation-duration: 2.7s; }
.ix-viz__meter i:nth-child(4) { animation-delay: -1.6s; animation-duration: 2.2s; }
.ix-viz__meter i:nth-child(5) { animation-delay: -2s; animation-duration: 2.5s; }
@keyframes ix-viz-meter {
  0%, 100% { transform: scaleY(.35); }
  50%      { transform: scaleY(1); }
}

/* Managed IT — uptime line drawing itself in */
.ix-viz__grid { stroke: var(--border-subtle); stroke-width: 1; stroke-dasharray: 2 6; }
.ix-viz__line {
  fill: none;
  stroke: var(--ionix-electric);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  animation: ix-viz-draw 7s var(--ease-standard) infinite;
}
@keyframes ix-viz-draw {
  0%   { stroke-dashoffset: 1; opacity: 1; }
  50%  { stroke-dashoffset: 0; opacity: 1; }
  93%  { stroke-dashoffset: 0; opacity: 1; }
  97%  { opacity: 0; }
  100% { stroke-dashoffset: 1; opacity: 0; }
}

/* terminal marker dot on the uptime chart — tracks the latency value */
.ix-viz__marker {
  position: absolute; right: 6%; top: 44%;
  width: 6px; height: 6px;
  margin: -3px 0 0 0;
  border-radius: var(--radius-pill);
  background: var(--ionix-electric);
  transition: top 500ms var(--ease-standard);
  animation: ix-viz-pulse 2s var(--ease-standard) infinite;
}
@keyframes ix-viz-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .6; }
}

/* Cybersecurity — radar sweep scope */
.ix-viz__scope {
  position: absolute; left: 25%; top: 54%;
  width: 132px; height: 132px;
  margin: -66px 0 0 -66px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,136,252,.35);
  overflow: hidden;
}
.ix-viz__scope::before {
  content: ""; position: absolute; inset: 24%;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,136,252,.22);
}
.ix-viz__scope::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  height: 1px; background: rgba(0,136,252,.14);
}
.ix-viz__sweep {
  position: absolute; inset: 0;
  border-radius: var(--radius-pill);
  background: conic-gradient(from 0deg, rgba(0,136,252,.5), rgba(0,136,252,.08) 55deg, transparent 80deg);
  animation: ix-viz-spin 3s linear infinite;
}
.ix-viz__contact {
  position: absolute; width: 5px; height: 5px;
  border-radius: var(--radius-pill);
  background: var(--ionix-electric);
  animation: ix-viz-contact 3s infinite;
}
.ix-viz__contact:nth-of-type(2) { animation-delay: -1s; }
.ix-viz__contact:nth-of-type(3) { animation-delay: -2s; }
@keyframes ix-viz-contact {
  0%, 15%   { opacity: 1; }
  50%, 85%  { opacity: .2; }
  100%      { opacity: 1; }
}

/* IP Cameras — viewfinder, scanning line, blinking REC */
.ix-viz__corner {
  position: absolute; width: 16px; height: 16px;
  border: 0 solid var(--blue-300);
}
.ix-viz__corner--tl { top: var(--space-8); left: 10%; border-top-width: 2px; border-left-width: 2px; }
.ix-viz__corner--tr { top: var(--space-8); right: 10%; border-top-width: 2px; border-right-width: 2px; }
.ix-viz__corner--bl { bottom: var(--space-8); left: 10%; border-bottom-width: 2px; border-left-width: 2px; }
.ix-viz__corner--br { bottom: var(--space-8); right: 10%; border-bottom-width: 2px; border-right-width: 2px; }
.ix-viz__scan {
  position: absolute;
  left: calc(10% + var(--space-1)); right: calc(10% + var(--space-1));
  top: calc(var(--space-8) + var(--space-1));
  height: 2px;
  background: linear-gradient(90deg, rgba(0,136,252,0), rgba(0,136,252,.95), rgba(0,136,252,0));
  animation: ix-viz-scan 5s ease-in-out infinite alternate;
}
@keyframes ix-viz-scan {
  from { transform: translateY(0); }
  to   { transform: translateY(78px); }
}
/* rule-of-thirds grid + focus reticle inside the viewfinder */
.ix-viz__framegrid {
  position: absolute;
  left: calc(10% + 2px); right: calc(10% + 2px);
  top: calc(var(--space-8) + 2px); bottom: calc(var(--space-8) + 2px);
  pointer-events: none;
}
.ix-viz__framegrid::before,
.ix-viz__framegrid::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 1px;
  background: rgba(0,136,252,.10);
}
.ix-viz__framegrid::before { left: 33.33%; }
.ix-viz__framegrid::after { left: 66.66%; }
.ix-viz__gridh {
  position: absolute; left: 0; right: 0; height: 1px;
  background: rgba(0,136,252,.10);
}
.ix-viz__gridh--1 { top: 33.33%; }
.ix-viz__gridh--2 { top: 66.66%; }
.ix-viz__reticle {
  position: absolute; left: 50%; top: 50%;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border: 1px solid rgba(0,136,252,.4);
  border-radius: var(--radius-pill);
}
.ix-viz__reticle::before,
.ix-viz__reticle::after { content: ""; position: absolute; background: rgba(0,136,252,.35); }
.ix-viz__reticle::before { left: -6px; right: -6px; top: 50%; height: 1px; }
.ix-viz__reticle::after { top: -6px; bottom: -6px; left: 50%; width: 1px; }

/* Access Control + assessment — live log / checklist rows */
.ix-viz__rows {
  position: absolute;
  left: var(--space-4); right: var(--space-4);
  top: calc(var(--space-3) + var(--space-6));
  display: flex; flex-direction: column; gap: var(--space-3);
  line-height: var(--lh-snug);
}
.ix-viz__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3);
  color: var(--text-secondary);
  padding-bottom: var(--space-1);
  border-bottom: 1px dashed var(--border-subtle);
  transition: opacity 360ms var(--ease-standard), transform 360ms var(--ease-standard);
}
/* entry is transform-only: a throttled renderer that freezes
   transitions still shows the row — never an empty slot */
.ix-viz__row--in { transform: translateY(6px); }
.ix-viz__row--out { opacity: 0; }
.ix-viz--log .ix-viz__row { transition: opacity 360ms var(--ease-standard), transform 360ms var(--ease-standard), margin-top 360ms var(--ease-standard); }
.ix-viz--scan .ix-viz__rows { top: calc(var(--space-3) + var(--space-5)); gap: var(--space-1); }
.ix-viz--log .ix-viz__rows { gap: var(--space-2); }
.ix-viz__rows--specs {
  left: 50%; right: var(--space-5); top: 50%;
  transform: translateY(-50%);
  gap: var(--space-3);
}
.ix-viz__spec { color: var(--ionix-electric); font-weight: var(--fw-semibold); }

/* dotted-leader telemetry rows (radar right half) */
.ix-viz__row--leader { border-bottom: 0; padding-bottom: 0; }
.ix-viz__leader {
  flex: 1;
  border-bottom: 1px dotted var(--border-default);
  transform: translateY(-3px);
}
.ix-viz__ok   { color: var(--success); font-weight: var(--fw-semibold); }
.ix-viz__deny { color: var(--danger);  font-weight: var(--fw-semibold); }
.ix-viz__wait { color: var(--text-faint); font-weight: var(--fw-semibold); }

/* HaaS — labeled refresh-cycle gauge, active segment steps */
@keyframes ix-viz-spin { to { transform: rotate(360deg); } }
.ix-viz__gauge {
  position: absolute; left: 25%; top: 55%;
  width: 108px; height: 108px;
  transform: translate(-50%, -50%);
}
.ix-viz__gauge svg { width: 100%; height: 100%; display: block; }
.ix-viz__gtrack { fill: none; stroke: rgba(0,136,252,.12); stroke-width: 7; }
.ix-viz__gseg {
  fill: none;
  stroke: rgba(0,136,252,.28);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 58 155.6; /* r=34, circumference ~ 213.6 */
  transform-box: fill-box;
  transform-origin: center;
  transition: stroke 360ms var(--ease-standard);
}
.ix-viz__gseg.is-active { stroke: var(--ionix-electric); }
.ix-viz__gcenter {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  color: var(--text-primary);
}

/* Business Phones — live call panel with waveform + duration timer */
.ix-viz__wave {
  position: absolute; left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: var(--space-1);
  height: 44px;
}
.ix-viz__wave i {
  width: 3px;
  background: rgba(0,136,252,.7);
  border-radius: var(--radius-pill);
  transform-origin: center;
  animation: ix-viz-wave 1.6s ease-in-out infinite;
}
@keyframes ix-viz-wave {
  0%, 100% { transform: scaleY(.35); }
  50%      { transform: scaleY(1); }
}
.ix-viz__wave i:nth-child(1)  { height: 30%; animation-delay: -0.1s; }
.ix-viz__wave i:nth-child(2)  { height: 55%; animation-delay: -0.7s; animation-duration: 1.3s; }
.ix-viz__wave i:nth-child(3)  { height: 80%; animation-delay: -0.3s; }
.ix-viz__wave i:nth-child(4)  { height: 100%; animation-delay: -1.1s; animation-duration: 1.4s; }
.ix-viz__wave i:nth-child(5)  { height: 65%; animation-delay: -0.5s; }
.ix-viz__wave i:nth-child(6)  { height: 90%; animation-delay: -1.3s; animation-duration: 1.2s; }
.ix-viz__wave i:nth-child(7)  { height: 45%; animation-delay: -0.2s; }
.ix-viz__wave i:nth-child(8)  { height: 75%; animation-delay: -0.9s; animation-duration: 1.5s; }
.ix-viz__wave i:nth-child(9)  { height: 95%; animation-delay: -0.6s; }
.ix-viz__wave i:nth-child(10) { height: 60%; animation-delay: -1.2s; animation-duration: 1.3s; }
.ix-viz__wave i:nth-child(11) { height: 40%; animation-delay: -0.4s; }
.ix-viz__wave i:nth-child(12) { height: 25%; animation-delay: -0.8s; animation-duration: 1.4s; }

/* Managed Print — queue rows + supply level bars */
.ix-viz__levels {
  position: absolute; left: var(--space-4); bottom: var(--space-3);
  width: 34%;
  display: flex; flex-direction: column; gap: var(--space-1);
}
.ix-viz__lvl {
  display: block; height: 3px;
  background: var(--border-default);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.ix-viz__lvl b { display: block; height: 100%; background: var(--ionix-electric); border-radius: inherit; }
.ix-viz--print .ix-viz__rows { top: calc(var(--space-3) + var(--space-6)); }
.ix-viz--framed.ix-viz--print .ix-viz__rows {
  bottom: calc(var(--space-8) + var(--space-4));
  justify-content: space-between;
}

/* deliberate final row: the assessment card spans the last two columns */
.ix-card--span2 { grid-column: span 2; }

/* ---- Piece 3: proof band (stats + chip marquee) ---- */
.ix-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
  width: 100%;
}
.ix-stat {
  border-left: 1px solid var(--border-subtle);
  padding-left: var(--space-6);
}
.ix-stat__value {
  display: block;
  font-family: var(--font-mono);
  font-weight: var(--fw-semibold);
  font-size: var(--text-4xl);
  line-height: var(--lh-tight);
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}
.ix-stat__value--accent { color: var(--text-accent); }
.ix-stat__label {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--text-muted);
  line-height: var(--lh-normal);
  white-space: nowrap;
}
.ix-stat__fn {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  color: var(--text-faint);
  margin-left: var(--space-1);
}
.ix-stats__note {
  /* full-band-width line, flush with the band's left spine */
  display: block;
  width: 100%;
  max-width: none;
  margin: var(--space-5) 0 0;
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  letter-spacing: var(--ls-wide);
  color: var(--text-faint);
}

/* Chip marquee — continuous linear ticker, pausable on hover */
.ix-marquee__label {
  display: block;
  margin: var(--space-12) 0 var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-secondary);
}
.ix-marquee {
  overflow: hidden;
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ix-marquee__track {
  display: flex;
  width: max-content;
  animation: ix-marquee 44s linear infinite;
}
.ix-marquee:hover .ix-marquee__track { animation-play-state: paused; }
.ix-marquee__group {
  display: flex;
  gap: var(--space-4);
  padding-right: var(--space-4);
}
@keyframes ix-marquee { to { transform: translateX(-50%); } }
.ix-marquee--reverse .ix-marquee__track {
  animation-direction: reverse;
  animation-duration: 52s;
}
.ix-chip {
  flex: none;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  white-space: nowrap;
}

/* ---- Subpage system layer ---- */
/* page heads: rise-in like the hero, muted eyebrow (accent lives in the title) */
.ix-pagehead .ix-eyebrow,
.ix-pagehead__title,
.ix-pagehead__sub {
  animation: ix-hero-rise 700ms var(--ease-emphasized) both;
}
.ix-pagehead__title { animation-delay: 90ms; }
.ix-pagehead__sub { animation-delay: 180ms; }

/* wall-time settlement: if a throttled renderer never plays the
   entrance animation, force the settled state ~1.2s after load */
.ix-settled .ix-hero--field .ix-hero__eyebrow,
.ix-settled .ix-hero--field .ix-hero__title,
.ix-settled .ix-hero--field .ix-hero__sub,
.ix-settled .ix-hero--field .ix-hero__actions,
.ix-settled .ix-pagehead .ix-eyebrow,
.ix-settled .ix-pagehead__title,
.ix-settled .ix-pagehead__sub { animation: none; }

/* standalone instrument panel (service rows) */
.ix-viz--framed {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}
/* wide bezels get the two-zone grammar: trace left, telemetry right,
   with the grid field carrying full width behind both zones */
.ix-viz--framed.ix-viz--uptime .ix-viz__marker { right: auto; left: 52%; }
.ix-viz--framed.ix-viz--uptime .ix-viz__rows--specs { left: 60%; }

/* service row anatomy: LEFT = title, body, list; RIGHT = instrument,
   payload stat, terminal link — both columns close, bottoms align */
.ix-svc { align-items: stretch; }
.ix-svc:first-of-type { padding-top: 0; }
.ix-svc:last-of-type { padding-bottom: 0; }
.ix-svc__info { display: flex; flex-direction: column; }
.ix-svc__body { margin-bottom: var(--space-6); }
.ix-svc__title {
  font-size: clamp(var(--text-2xl), 2.8vw, calc(var(--text-3xl) + var(--space-1)));
  line-height: 1; /* cap-top meets the panel's top edge */
}
.ix-svc .ix-list li::before { background: var(--gray-slate); }
.ix-svc__info .ix-list { margin-bottom: var(--space-6); }
/* the left column's own closing element — hairline + mono tag row */
.ix-svc__tags {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-muted);
}
/* panels grow to fill their row — no dead trench above the stat rule */
.ix-svc__panel .ix-viz--framed {
  flex: 1 1 auto;
  height: auto;
  min-height: 200px;
}
.ix-viz--framed .ix-viz__scope {
  width: 176px; height: 176px;
  margin: -88px 0 0 -88px;
  top: 50%;
}
.ix-viz--framed .ix-viz__gauge { width: 132px; height: 132px; top: 50%; }
.ix-viz--framed.ix-viz--log .ix-viz__rows {
  bottom: var(--space-3);
  justify-content: space-between;
}
.ix-viz--framed .ix-viz__scan {
  animation: ix-viz-scan-top 5s ease-in-out infinite alternate;
}
@keyframes ix-viz-scan-top {
  from { top: calc(var(--space-8) + var(--space-1)); }
  to   { top: calc(100% - var(--space-8) - var(--space-1) - 2px); }
}
.ix-svc__panel .ix-card__link { margin: var(--space-4) 0 0; align-self: stretch; }
/* chart area fill under the sparkline */
.ix-viz__area { stroke: none; }
.ix-svc__payload {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  display: flex; align-items: baseline; gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}
.ix-svc__payload b {
  color: var(--text-accent); /* the row's one accent event */
  font-weight: var(--fw-semibold);
  font-size: var(--text-2xl); /* the metric speaks — statement scale */
  white-space: nowrap;
}
.ix-svc__payload i {
  flex: 1;
  border-bottom: 1px dotted var(--border-default);
  transform: translateY(-2px);
}
.ix-svc__payload span { color: var(--text-muted); white-space: nowrap; font-size: var(--text-xs); }

/* pricing card anatomy: hairline above the button */
.ix-price__sep {
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}
.ix-price--featured .ix-price__sep { border-color: rgba(255,255,255,.25); }

/* contact info: mono value rows */
.ix-inforows {
  display: flex; flex-direction: column; gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.ix-inforows .ix-viz__row b { text-align: right; }

/* grids that follow a lone band eyebrow */
.ix-eyebrow + .ix-pricing,
.ix-eyebrow + .ix-contact { margin-top: var(--space-10); }

/* Craft-layer responsive */
@media (max-width: 1200px) {
  .ix-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .ix-band { padding: var(--space-24) var(--space-6); }
  .ix-band__head { margin-bottom: var(--space-10); }
  .ix-hero--field { padding: var(--space-20) var(--space-6); }
  .ix-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-8) var(--space-6); }
  .ix-card--span2 { grid-column: auto; }
  .ix-stat__value { font-size: var(--text-3xl); }
  .ix-marquee__label { margin-top: var(--space-12); }
}
@media (max-width: 640px) {
  .ix-stats { grid-template-columns: 1fr; }
  .ix-statement br { display: none; }
  .ix-svc__title { font-size: var(--text-xl); }
  .ix-fit { flex-wrap: wrap; }
}

