/* ============================================================
   Linxus Infotech / InfraSync — v2 site styles
   Aesthetic: Linear / Vercel tier. Dark hero. Left-anchored.
   Engineers, not VPs.
   ============================================================ */

:root {
  /* Light surface */
  --bg: #FFFFFF;
  --bg-tint: #F7F8FA;
  --bg-tint-2: #F2F3F7;

  /* Dark surface */
  --bg-dark: #0A0A0F;
  --bg-dark-2: #14141C;
  --bg-dark-3: #1A1B26;
  --line-dark: #232432;
  --line-dark-2: #2C2D3D;

  /* Ink */
  --ink: #0A0A0F;
  --ink-2: #1F2128;
  --ink-3: #4A4F5C;
  --ink-4: #8089A0;
  --ink-5: #B0B5C6;

  --line: #E5E7EE;
  --line-strong: #D7DAE3;

  /* Brand / accents */
  --brand: #2C5BFF;
  --brand-2: #1F47E0;
  --brand-light: #5B7CFF;
  --brand-soft: #EEF2FF;
  --brand-glow: rgba(91, 124, 255, .35);

  --ok: #16A34A;
  --ok-light: #34D399;
  --warn: #F59E0B;
  --warn-light: #FBBF24;
  --bad: #DC2626;
  --bad-light: #F87171;

  --shadow-sm: 0 1px 2px rgba(10,10,15,.06);
  --shadow-md: 0 8px 24px -8px rgba(10,10,15,.12), 0 2px 6px rgba(10,10,15,.06);
  --shadow-lg: 0 28px 60px -28px rgba(10,10,15,.30), 0 8px 24px -12px rgba(10,10,15,.12);
  --shadow-blue: 0 24px 60px -20px rgba(44,91,255,.45), 0 8px 20px -8px rgba(44,91,255,.25);

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --maxw: 1200px;
  --maxw-narrow: 980px;

  --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-2); }
code {
  font-family: var(--font-mono);
  font-size: .9em;
  background: #F0F2F7;
  padding: .12em .35em;
  border-radius: 4px;
  color: var(--ink-2);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; background: var(--brand); color: #fff; padding: 8px 14px; border-radius: 6px; z-index: 999; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,15,.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-dark { background: rgba(10,10,15,.7); }
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: inline-flex; align-items: center; }
.brand-mark { width: 132px; height: 27px; display: block; }
.brand-footer .brand-mark { width: 148px; height: 30px; }
.brand-text { font: 700 48px/1 var(--font-display); fill: var(--ink); letter-spacing: -1.5px; }
.brand-text-light { font: 700 48px/1 var(--font-display); fill: #F4F5FA; letter-spacing: -1.5px; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-5);
  padding: 6px 0; position: relative;
  transition: color .15s ease;
}
.nav-links a:hover { color: #FFFFFF; }
.nav-cta { display: flex; gap: 8px; align-items: center; }

@media (max-width: 880px) { .nav-links { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 10px 16px; border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .2s ease, color .15s ease;
  text-decoration: none;
}
.btn span[aria-hidden] {
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  transition: transform .2s ease;
  line-height: 1;
}
.btn:hover span[aria-hidden] { transform: translateX(2px); }

/* Light surface buttons */
.btn-primary {
  background: var(--ink); color: #FFFFFF;
  box-shadow: 0 1px 0 rgba(255,255,255,.1) inset;
}
.btn-primary:hover { background: #1A1B26; color: #FFFFFF; }
.btn-secondary {
  background: #FFFFFF; color: var(--ink); border-color: var(--line-strong);
}
.btn-secondary:hover { background: var(--bg-tint); border-color: var(--ink-4); }
.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { color: var(--ink); }

/* Dark surface buttons */
.btn-primary-light { background: #FFFFFF; color: #0A0A0F; }
.btn-primary-light:hover { background: #E8EAF2; color: #0A0A0F; }
.btn-primary-blue {
  background: var(--brand); color: #FFFFFF;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 24px -8px var(--brand-glow);
}
.btn-primary-blue:hover { background: var(--brand-light); color: #FFFFFF; }
.btn-ghost-light { background: transparent; color: var(--ink-5); border-color: var(--line-dark-2); }
.btn-ghost-light:hover { color: #FFFFFF; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.18); }
.btn-light { background: #FFFFFF; color: var(--ink); border-color: #FFFFFF; }
.btn-light:hover { background: #E8EAF2; }

.btn-lg { padding: 12px 22px; font-size: 15px; border-radius: 12px; }
.btn-xl { padding: 15px 28px; font-size: 16px; border-radius: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-dark {
  background: var(--bg-dark);
  color: #E8EAF2;
  padding: 92px 0 116px;
  border-bottom: 1px solid var(--line-dark);
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, #2C5BFF, transparent 70%);
  top: -200px; right: -120px;
  animation: heroGlowDrift1 18s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, #5B7CFF, transparent 70%);
  bottom: -180px; left: -150px;
  opacity: .35;
  animation: heroGlowDrift2 22s ease-in-out infinite;
}
@keyframes heroGlowDrift1 {
  50% { transform: translate(-40px, 50px) scale(1.08); opacity: .7; }
}
@keyframes heroGlowDrift2 {
  50% { transform: translate(50px, -40px) scale(1.12); opacity: .5; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow-1, .hero-glow-2 { animation: none; }
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 11px;
  border-radius: 999px;
  background: rgba(91,124,255,.08);
  border: 1px solid rgba(91,124,255,.24);
  font-size: 13px; font-weight: 500;
  color: var(--ink-5);
  margin-bottom: 26px;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
  animation: heroReveal .7s cubic-bezier(.2,.7,.3,1) both;
}
.hero-badge:hover {
  border-color: rgba(91,124,255,.5);
  background: rgba(91,124,255,.14);
  transform: translateY(-1px);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: #34D399;
  box-shadow: 0 0 0 4px rgba(52,211,153,.16);
  animation: heroBadgePulse 1.8s ease-in-out infinite;
}
@keyframes heroBadgePulse { 50% { box-shadow: 0 0 0 7px rgba(52,211,153,.04); } }
.hero-badge-label { color: var(--ink-4); }
.hero-badge-arrow { color: var(--brand-light); font-weight: 700; }
.hero-badge-strong { color: #FFFFFF; font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .hero-badge-dot { animation: none; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  padding: 5px 12px 5px 5px; border-radius: 999px;
  background: var(--bg-tint); color: var(--ink-2);
  border: 1px solid var(--line);
  margin-bottom: 24px;
  transition: background .15s ease, border-color .15s ease;
}
.eyebrow-dark {
  background: rgba(91,124,255,.10);
  border: 1px solid rgba(91,124,255,.30);
  color: var(--ink-5);
}
.eyebrow-dark:hover { color: #FFFFFF; border-color: rgba(91,124,255,.55); }
.eyebrow-tag {
  background: var(--brand); color: #FFFFFF;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 999px;
  text-transform: uppercase;
}
.eyebrow span[aria-hidden] {
  color: var(--brand-light); font-weight: 700;
  font-family: var(--font-display); font-size: 16px; line-height: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 26px;
  color: #FFFFFF;
  text-wrap: balance;
  animation: heroReveal .7s cubic-bezier(.2,.7,.3,1) .06s both;
}
.accent { color: var(--brand-light); }

.lede {
  font-size: 19px; line-height: 1.55;
  color: var(--ink-3); max-width: 56ch;
  margin: 0 0 32px;
}
.lede-dark { color: var(--ink-5); }
.lede code { background: rgba(91,124,255,.15); color: var(--brand-light); }

.hero .lede { animation: heroReveal .7s cubic-bezier(.2,.7,.3,1) .12s both; }
.hero .hero-ctas { animation: heroReveal .7s cubic-bezier(.2,.7,.3,1) .18s both; }
.hero .hero-points { animation: heroReveal .7s cubic-bezier(.2,.7,.3,1) .24s both; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero h1, .hero .lede, .hero .hero-ctas, .hero .hero-points { animation: none; }
}

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

.hero-points {
  display: flex; flex-wrap: wrap; gap: 22px;
  list-style: none; padding: 0; margin: 0;
  font-size: 13.5px; color: var(--ink-3);
}
.hero-points-dark { color: var(--ink-5); }
.hero-points li { display: inline-flex; align-items: center; gap: 7px; }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(52, 211, 153, .18); color: #34D399;
  font-size: 10px; font-weight: 800;
}

/* Hero stat strip */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px 40px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  animation: heroReveal .7s cubic-bezier(.2,.7,.3,1) .3s both;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.02em;
  color: #FFFFFF;
  display: inline-flex; align-items: baseline;
}
.hero-stat-plus { color: var(--brand-light); font-size: 20px; margin-left: 1px; }
.hero-stat-unit { color: var(--ink-4); font-size: 15px; font-weight: 600; margin-left: 3px; }
.hero-stat-lbl {
  font-size: 12.5px;
  color: var(--ink-4);
  letter-spacing: .01em;
}
@media (prefers-reduced-motion: reduce) { .hero-stats { animation: none; } }

/* ============================================================
   HERO DEMO — browser-chrome framed motion graphic
   ============================================================ */
.hero-demo {
  position: relative;
  animation: heroReveal .8s cubic-bezier(.2,.7,.3,1) .22s both;
}
@media (prefers-reduced-motion: reduce) { .hero-demo { animation: none; } }

.hero-demo-shell {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0B0E1A;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 30px 80px -32px rgba(0,0,0,.7),
    0 12px 32px -16px rgba(44,91,255,.32);
}
/* Browser chrome bar */
.hero-demo-chrome {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 16px;
  background: linear-gradient(180deg, #141828, #0E1120);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hdc-dots { display: inline-flex; gap: 7px; }
.hdc-dots i {
  width: 11px; height: 11px; border-radius: 999px;
  background: rgba(255,255,255,.14);
}
.hdc-dots i:nth-child(1) { background: #ff5f57; }
.hdc-dots i:nth-child(2) { background: #febc2e; }
.hdc-dots i:nth-child(3) { background: #28c840; }
.hdc-url {
  flex: 1;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-4);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 7px;
  padding: 5px 12px;
  letter-spacing: .01em;
}
.hdc-lock {
  width: 9px; height: 9px;
  border: 1.5px solid var(--ink-4);
  border-radius: 2px;
  position: relative;
  flex: none;
}
.hdc-lock::before {
  content: ""; position: absolute;
  top: -4px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 5px;
  border: 1.5px solid var(--ink-4);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}
.hdc-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #6ee7a4;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hdc-live-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #34D399;
  box-shadow: 0 0 8px #34D399;
}

/* Motion graphics iframe wrapper */
.motion-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0A0E1A;
}
.motion-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
  pointer-events: none; /* decorative */
}

/* Floating glass drift card */
.hero-float-card {
  position: absolute;
  left: -28px;
  bottom: -26px;
  width: 290px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(17, 21, 38, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(239,68,68,.32);
  box-shadow: 0 24px 50px -22px rgba(0,0,0,.7);
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  50% { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) { .hero-float-card { animation: none; } }
.hfc-head {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 8px;
}
.hfc-icon {
  width: 20px; height: 20px; border-radius: 6px; flex: none;
  display: grid; place-items: center;
  background: rgba(239,68,68,.18); color: #f87171;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
}
.hfc-title { font-size: 13.5px; font-weight: 700; color: #FFFFFF; }
.hfc-time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-4);
}
.hfc-body {
  display: flex; flex-direction: column; gap: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-4);
  line-height: 1.5;
}
.hfc-body code { background: none; color: var(--ink-5); font-size: 12px; padding: 0; }
.hfc-diff { color: #6ee7a4; }

@media (max-width: 1020px) {
  .motion-frame { aspect-ratio: 16 / 10; }
  .hero-float-card { left: auto; right: 0; bottom: -20px; width: 260px; }
}
@media (max-width: 560px) {
  .hero-float-card { display: none; }
}

.editor {
  background: #14141C;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.02) inset;
  overflow: hidden;
}
.editor-chrome {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: #1A1B26;
  border-bottom: 1px solid var(--line-dark);
}
.editor-dots { display: flex; gap: 7px; }
.editor-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: #2C2D3D;
}
.editor-dots span:nth-child(1) { background: #FF5F57; }
.editor-dots span:nth-child(2) { background: #FEBC2E; }
.editor-dots span:nth-child(3) { background: #28C840; }
.editor-path {
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--ink-5); flex: 1; text-align: center;
}
.editor-actions { display: inline-flex; gap: 8px; align-items: center; }
.ea-pill {
  font-size: 10.5px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(245, 158, 11, .15); color: var(--warn-light);
}
.ea-btn {
  font: 600 12px var(--font-body);
  padding: 6px 10px; border-radius: 6px;
  background: rgba(91,124,255,.15); color: var(--brand-light);
  border: 1px solid rgba(91,124,255,.25);
  cursor: default;
  display: inline-flex; align-items: center; gap: 4px;
}
.ea-btn span[aria-hidden] { font-family: var(--font-display); font-weight: 800; }

.editor-body {
  display: flex;
  background: #14141C;
}
.editor-gutter {
  display: flex; flex-direction: column;
  padding: 14px 0; min-width: 44px;
  background: #14141C; border-right: 1px solid var(--line-dark);
}
.editor-gutter span {
  font-family: var(--font-mono); font-size: 11.5px;
  color: #5B5F75; padding: 0 12px; line-height: 1.7;
  text-align: right;
}
.editor-code {
  margin: 0; padding: 14px 18px;
  font-family: var(--font-mono); font-size: 12.5px; line-height: 1.7;
  color: #E8EAF2;
  overflow-x: auto;
  flex: 1;
  min-height: 0;
}
.editor-code .kw { color: #C792EA; }
.editor-code .str { color: #FFCB6B; }
.editor-code .lit { color: #82AAFF; }
.editor-code .ref { color: #89DDFF; }
.editor-code .c   { color: #5B6376; font-style: italic; }

.editor-footer {
  display: flex; gap: 22px; flex-wrap: wrap;
  padding: 10px 18px;
  background: #1A1B26;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-5);
}
.ef-item { display: inline-flex; align-items: center; gap: 6px; }
.ef-item i.dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok-light);
}
.ef-item i.dot.warn { background: var(--warn-light); }

.floater {
  position: absolute;
  background: #FFFFFF; color: var(--ink);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  width: 260px;
  font-size: 12.5px;
}
.floater-drift {
  bottom: -28px; left: -36px;
  transform: rotate(-3deg);
}
@media (max-width: 1020px) {
  .floater-drift { left: 12px; }
}
@media (max-width: 540px) {
  .floater { display: none; }
}
.floater-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px; font-size: 13px;
}
.floater-head .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--warn);
}
.floater-head strong { color: var(--ink); }
.floater-time { margin-left: auto; color: var(--ink-4); font-size: 11.5px; }
.floater p { margin: 0; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); line-height: 1.55; }
.floater code {
  background: #F0F2F7; color: var(--ink-2);
  padding: 1px 5px; border-radius: 3px;
  font-size: 11px;
}
.diff-add { color: var(--ok); }
.diff-rem { color: var(--bad); }

/* ============================================================
   SERVICES — categorized reference grid
   ============================================================ */
.services {
  padding: 96px 0 88px;
  background: #FAFBFC;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.services::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,15,.025) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}
.services > .wrap { position: relative; }

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin: 0 0 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.services-eyebrow {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-4); margin: 0 0 14px;
}
.services-count {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 1;
  color: var(--ink); letter-spacing: -.04em;
  text-transform: none;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.services-sub {
  font-size: 15px; line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
  max-width: 44ch;
}

.services-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.cat {
  background: #FFFFFF;
  padding: 24px 26px 28px;
  display: flex; flex-direction: column;
  min-height: 220px;
}
.cat-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
  padding: 0 0 14px;
  border-bottom: 1px dashed var(--line-strong);
}
.cat-head h3 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: -.005em;
  color: var(--ink);
  margin: 0;
}
.cat-count {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600;
  color: var(--ink-4);
  background: var(--bg-tint-2);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.cat-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 16px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.cat-list li {
  position: relative;
  padding-left: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 1px;
  background: var(--brand);
  opacity: .55;
}

.cat-more {
  background: linear-gradient(180deg, #0F1018 0%, #0A0A0F 100%);
}
.cat-more .cat-head { border-bottom-color: rgba(255,255,255,.12); }
.cat-more .cat-head h3 { color: #F4F5FA; }
.cat-more .cat-count {
  color: #B0B5C6; background: rgba(255,255,255,.06);
}
.cat-more-blurb {
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.65;
  color: #B0B5C6;
  margin: 0;
}

.services-foot {
  margin: 32px 0 0;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px;
  color: var(--ink-3);
}
.services-foot p { margin: 0; line-height: 1.55; }
.services-foot a { color: var(--brand-2); text-decoration: none; border-bottom: 1px solid currentColor; }
.services-foot a:hover { color: var(--brand); }
.services-foot-dot {
  flex: none;
  width: 8px; height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(22,163,74,.12);
}

/* ============================================================
   DISCOVER — product-preview style coverage card
   ============================================================ */
.discover {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.discover-stats,
.discover-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(15,18,35,.02), 0 12px 32px -24px rgba(15,18,35,.18);
}

/* LEFT — stats panel */
.discover-stats {
  padding: 26px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.discover-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0;
}
.discover-orb {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 22px auto 4px;
  display: grid;
  place-items: center;
}
.discover-orb-ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.discover-orb-text {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  line-height: 1;
}
.discover-orb-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -2px;
  color: var(--ink);
}
.discover-orb-cap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink-4);
}
.discover-stat-list {
  list-style: none; padding: 18px 0 0; margin: 18px 0 0;
  border-top: 1px solid var(--line);
  display: grid; gap: 10px;
}
.discover-stat-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.discover-stat-list .d-lbl { flex: 1; }
.discover-stat-list b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.d-dot { width: 8px; height: 8px; border-radius: 999px; flex: none; }
.d-dot-blue   { background: #2C5BFF; }
.d-dot-violet { background: #8B5CF6; }
.d-dot-green  { background: #16A34A; }

/* RIGHT — discovered resources card */
.discover-card {
  padding: 22px 24px 22px;
  display: flex;
  flex-direction: column;
}
.discover-card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.discover-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 0;
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: -.01em;
}
.discover-card-title .badge-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #2C5BFF;
  background: #EEF2FF;
  border: 1px solid #DCE2FF;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.scan-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .04em;
}
.scan-status .dot-live {
  width: 7px; height: 7px; border-radius: 999px;
  background: #16A34A;
  box-shadow: 0 0 0 3px rgba(22,163,74,.16);
}

/* Resource grid */
.resource-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 2px;
}
.rsrc {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(15,18,35,.04);
}
.rsrc:nth-last-child(-n+2) { border-bottom: 0; }
.rsrc-name {
  font-size: 14px;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rsrc-count {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  background: #F4F5FA;
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 6px;
  min-width: 28px;
  text-align: center;
  letter-spacing: .02em;
}

/* Resource category icons (22px rounded badges) */
.rsrc-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: grid; place-items: center;
}
.rsrc-icon svg {
  width: 10px; height: 10px;
  display: block;
  fill: currentColor;
}
.icon-compute      { background: #FFF3E6; color: #EA580C; }
.icon-storage      { background: #ECFDF5; color: #16A34A; }
.icon-network      { background: #F1EEFF; color: #6D4CF0; }
.icon-db           { background: #EEF2FF; color: #2C5BFF; }
.icon-security     { background: #FEECEC; color: #DC2626; }
.icon-integration  { background: #FCE7F3; color: #DB2777; }
.icon-observability{ background: #E8FBF7; color: #0D9488; }
.icon-analytics    { background: #EEE9FE; color: #6D28D9; }

.discover-card-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.discover-card-foot p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
}
.discover-card-foot a {
  color: var(--brand-2);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}
.discover-card-foot a:hover { color: var(--brand); }

@media (max-width: 980px) {
  .discover { grid-template-columns: 1fr; }
  .discover-stats { padding: 22px 22px 20px; }
  .discover-orb { width: 150px; height: 150px; margin: 16px auto 2px; }
  .discover-orb-num { font-size: 46px; }
}
@media (max-width: 640px) {
  .resource-list { grid-template-columns: 1fr; column-gap: 0; }
  .rsrc:nth-last-child(-n+2) { border-bottom: 1px solid rgba(15,18,35,.04); }
  .rsrc:last-child { border-bottom: 0; }
  .discover-card { padding: 18px 18px 18px; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; }
.section-tight { padding: 72px 0; }
.section-tint { background: var(--bg-tint); }
.section-dark { background: var(--bg-dark); color: #E8EAF2; }

.section-head { max-width: 720px; margin: 0 0 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.kicker-light { color: var(--brand-light); }
.link-light { color: var(--brand-light); font-weight: 600; text-decoration: none; white-space: nowrap; }
.link-light:hover { color: #fff; text-decoration: underline; }

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-wrap: balance;
  color: var(--ink);
}
.section h2.h-light { color: #FFFFFF; }
.section-head p {
  font-size: 19px; color: var(--ink-3); margin: 0;
  max-width: 60ch; text-wrap: pretty; line-height: 1.55;
}
.lede-light { font-size: 19px; color: var(--ink-5); max-width: 56ch; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 980px) { .how-grid { grid-template-columns: 1fr; } }

.how-step {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
/* Flow connector between cards (desktop only) */
.how-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50px; right: -17px;
  z-index: 2;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; line-height: 1;
  color: var(--brand);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 980px) {
  .how-step:not(:last-child)::after {
    top: auto; bottom: -17px; right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}
.how-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.how-step-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.how-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--brand);
}
.how-time {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink-3);
  background: var(--bg-tint);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  letter-spacing: -.015em;
  margin: 0;
}
.how-step > p {
  margin: 0; color: var(--ink-3); font-size: 15px; line-height: 1.6;
}
.how-step > p em { font-style: normal; color: var(--ink); font-weight: 500; }
.how-step > p strong { color: var(--brand); font-weight: 600; }
.how-art { margin-top: auto; padding-top: 8px; }
.how-art > * { min-height: 92px; box-sizing: border-box; justify-content: center; }

.art-card {
  background: var(--bg-dark);
  border-radius: 10px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.art-row {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11.5px;
  color: #E8EAF2;
}
.art-mono { color: var(--ink-5); word-break: break-all; }
.art-row-ok { color: var(--ok-light); }
.check-mark { color: var(--ok-light); font-weight: 700; }
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: .04em; color: #FFFFFF;
  padding: 3px 8px; border-radius: 4px; min-width: 44px;
}
.pill-aws { background: #FF9900; color: #0A0A0F; }
.pill-azu { background: #0078D4; }
.pill-gcp { background: #4285F4; }

.scan-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.scan-cell {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--ink-2);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.scan-cell span { font-size: 14px; color: var(--brand); }
.scan-cell.ok { border-color: #B7E4C7; background: #F0FDF4; }
.scan-cell.ok span { color: var(--ok); }
.scan-cell.run { border-color: #BFDBFE; background: #EFF6FF; }
.scan-cell.run i {
  display: inline-block; width: 10px; height: 10px;
  border: 2px solid var(--brand); border-top-color: transparent;
  border-radius: 50%; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pr-card {
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: 10px; padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.pr-head { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.pr-icon { color: var(--brand); font-weight: 700; }
.pr-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  background: #DCFCE7; color: #166534;
  padding: 2px 8px; border-radius: 999px;
}
.pr-stat { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.pr-stat .add { color: var(--ok); font-weight: 600; }
.pr-stat .del { color: var(--bad); font-weight: 600; }
.pr-foot {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3);
  padding-top: 8px; border-top: 1px dashed var(--line);
}
.pr-foot strong { color: var(--ok); }

/* ============================================================
   FEATURE DEEP-DIVES — alternating
   ============================================================ */
.feature-row {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: center;
}
.feature-row.reverse { grid-template-columns: 1.1fr 1fr; }
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
@media (max-width: 980px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 48px; }
  .feature-row.reverse .feature-copy { order: 1; }
  .feature-row.reverse .feature-visual { order: 2; }
}

.feature-copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 16px;
}
.feature-copy > p {
  font-size: 17.5px; color: var(--ink-3); line-height: 1.6;
  margin: 0 0 24px;
  max-width: 50ch;
}
.feature-copy > p em { font-style: normal; color: var(--ink); font-weight: 500; }
.feature-list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 15px;
}
.feature-list li {
  position: relative; padding-left: 26px;
  color: var(--ink-2); line-height: 1.55;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--brand-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C5BFF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/9px no-repeat;
  border-radius: 50%;
}
.feature-list strong { color: var(--ink); font-weight: 600; }

.feature-visual { position: relative; }

/* Window component (used in feature visuals) */
.window {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.section .feature-row:first-of-type .window,
.section-tint .window {
  background: #FFFFFF;
}
.window-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: #FAFBFC;
  border-bottom: 1px solid var(--line);
}
.window-bar span:nth-of-type(-n+3) {
  width: 11px; height: 11px; border-radius: 50%;
  background: #E0E3EA;
}
.window-bar span:nth-of-type(1) { background: #FF5F57; }
.window-bar span:nth-of-type(2) { background: #FEBC2E; }
.window-bar span:nth-of-type(3) { background: #28C840; }
.window-title {
  margin-left: auto; margin-right: auto;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-4);
}
.window-code {
  margin: 0; padding: 20px 22px;
  font-family: var(--font-mono); font-size: 13px; line-height: 1.7;
  color: var(--ink);
  overflow-x: auto;
  background: #FFFFFF;
}
.window-code .kw { color: #7E22CE; font-weight: 600; }
.window-code .str { color: #B45309; }
.window-code .lit { color: #047857; font-weight: 600; }
.window-code .ref { color: #1F47E0; }

/* Drift list */
.drift-list {
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  background: #FFFFFF;
}
.drift-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  background: #FAFBFC;
}
.drift-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13.5px; }
.drift-head code { background: #FFFFFF; border: 1px solid var(--line); font-size: 12.5px; }
.drift-time { margin-left: auto; color: var(--ink-4); font-size: 12px; }
.drift-sev {
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase;
}
.sev-high { background: #FEE2E2; color: #991B1B; }
.sev-med  { background: #FEF3C7; color: #92400E; }
.sev-low  { background: #DBEAFE; color: #1E40AF; }
.drift-diff {
  font-family: var(--font-mono); font-size: 11.5px;
  display: flex; flex-direction: column; gap: 3px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
}
.drift-diff .diff-add { color: #166534; }
.drift-diff .diff-rem { color: #991B1B; }
.drift-meta { color: var(--ink-4); font-style: italic; margin-top: 2px; }
.drift-item.drift-high { border-left: 3px solid var(--bad); }
.drift-item.drift-med  { border-left: 3px solid var(--warn); }
.drift-item.drift-low  { border-left: 3px solid var(--brand); }

/* PR page */
.pr-page { padding: 22px 24px; background: #FFFFFF; }
.pr-page-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.pr-page-head h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  margin: 0; letter-spacing: -.005em;
}
.pr-open {
  background: #DCFCE7; color: #166534;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 10px; border-radius: 999px;
  text-transform: uppercase;
}
.pr-meta { font-size: 12.5px; color: var(--ink-4); width: 100%; }
.pr-page-stats {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12.5px;
  color: var(--ink-3);
  padding: 10px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 12px 0;
}
.pr-page-stats .add { color: var(--ok); font-weight: 600; }
.pr-page-stats .del { color: var(--bad); font-weight: 600; }
.pr-page-stats .pr-checks.ok { color: var(--ok); margin-left: auto; font-weight: 600; }
.pr-files {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-mono); font-size: 12.5px;
}
.pr-files li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px;
  background: #FAFBFC; border-radius: 6px;
  color: var(--ink-2);
}
.file-add {
  background: #DCFCE7; color: #166534;
  font-size: 10.5px; font-weight: 700;
  padding: 2px 6px; border-radius: 3px;
}
.file-add-c { margin-left: auto; color: var(--ok); font-weight: 500; }

/* Schedule card */
.schedule-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.sc-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px; color: var(--ink-4);
  background: #FAFBFC;
  overflow-x: auto;
}
.sc-tabs span {
  padding: 14px 16px; border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.sc-tabs .sc-active {
  color: var(--ink); border-bottom-color: var(--brand);
  background: #FFFFFF; font-weight: 600;
}
.sc-body { padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.sc-row { display: flex; align-items: center; justify-content: space-between; }
.sc-row h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  margin: 0 0 2px; letter-spacing: -.01em;
}
.sc-acct { font-family: var(--font-mono); font-size: 12px; color: var(--ink-4); }
.sc-toggle { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-3); }
.sc-toggle input { position: absolute; left: -9999px; }
.sc-toggle span {
  display: inline-block; width: 34px; height: 20px; border-radius: 999px;
  background: var(--brand); position: relative;
}
.sc-toggle span::after {
  content: ""; position: absolute; top: 2px; right: 2px;
  width: 16px; height: 16px; border-radius: 50%; background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.sc-toggle em { font-style: normal; font-weight: 600; color: var(--brand-2); }

.sc-line {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.sc-label {
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-4);
  margin-right: 8px; min-width: 80px;
}
.sc-pill {
  font-family: var(--font-mono); font-size: 11.5px;
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-3);
  background: #FFFFFF;
}
.sc-pill.on { background: var(--ink); color: #FFFFFF; border-color: var(--ink); }
.sc-chip {
  font-family: var(--font-mono); font-size: 11.5px;
  padding: 3px 8px; border-radius: 5px;
  border: 1px solid var(--line); color: var(--ink-4); background: #FFFFFF;
}
.sc-chip.on { background: var(--brand-soft); color: var(--brand-2); border-color: #C7D4FF; font-weight: 600; }
.sc-foot {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding: 14px 24px; margin: 6px -24px -24px;
  background: #FAFBFC; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-3);
}
.sc-foot strong { color: var(--ink); font-weight: 600; margin-right: 4px; }

/* ============================================================
   DIFFERENTIATOR BAND
   ============================================================ */
.diff-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .diff-band { grid-template-columns: 1fr; gap: 40px; } }

.diff-table {
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: var(--bg-dark-2);
  overflow: hidden;
}
.diff-th, .diff-tr {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14.5px;
}
.diff-tr:last-child { border-bottom: 0; }
.diff-th {
  background: var(--bg-dark-3);
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-5);
}
.diff-th .us, .diff-tr .us { color: var(--brand-light); font-weight: 600; }
.diff-tr > span:first-child { color: #FFFFFF; }
.diff-tr .x { color: var(--ink-4); }
.diff-tr .ck {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(91,124,255,.18); color: var(--brand-light);
  font-size: 12px; font-weight: 800; font-style: normal;
}

/* ============================================================
   PRICING
   ============================================================ */
.plans {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1200px) { .plans { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .plans { grid-template-columns: 1fr; } }

/* Pricing controls (billing period + currency) */
.pricing-controls {
  display: flex; justify-content: center; align-items: center;
  gap: 12px; flex-wrap: wrap;
  margin: 0 0 40px;
}
.seg {
  display: inline-flex;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}
.seg-opt {
  appearance: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600;
  color: var(--ink-3);
  background: transparent;
  padding: 9px 22px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.seg-opt.is-active {
  background: #FFFFFF;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.bt-save {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  color: #16A34A;
  background: rgba(22,163,74,.1);
  border-radius: 999px;
  padding: 2px 7px;
}

.plan {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 22px 24px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.plan:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.plan-featured {
  border: 2px solid var(--brand);
  box-shadow: 0 20px 48px -24px rgba(44,91,255,.5);
}
.plan-featured:hover { border-color: var(--brand); }

/* Badges */
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: .03em;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge-popular { background: #EEF2FF; color: #4F46E5; border: 1px solid #DCE2FF; }
.badge-rec     { background: var(--brand); color: #FFFFFF; }
.badge-custom  { background: #EEF2FF; color: #4F46E5; border: 1px solid #DCE2FF; }

/* Icon */
.plan-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-tint);
  display: grid; place-items: center;
  margin: 6px auto 16px;
  color: var(--ink-2);
}
.plan-icon svg { width: 22px; height: 22px; display: block; }
.plan-icon-brand { background: var(--brand); color: #FFFFFF; box-shadow: 0 8px 18px -6px rgba(44,91,255,.6); }

.plan-name {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 700;
  letter-spacing: -.01em;
  text-align: center; margin: 0;
  color: var(--ink);
}
.plan-tag {
  text-align: center;
  font-size: 12.5px; color: var(--ink-4);
  margin: 4px 0 18px;
}
.plan-price {
  text-align: center;
  display: flex; align-items: baseline; justify-content: center; gap: 1px;
  margin-bottom: 4px;
}
.pp-cur { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); }
.pp-amount {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}
.pp-per { font-size: 15px; color: var(--ink-4); font-weight: 500; margin-left: 4px; }
.plan-billing {
  text-align: center;
  font-size: 12px; color: var(--ink-4);
  margin: 0 0 16px;
}
.plan-save {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  color: #16A34A;
  margin: -10px 0 16px;
}
.plan-incl {
  font-size: 13px; color: var(--ink-3);
  margin: 0 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.plan-incl b { color: var(--ink-2); font-weight: 600; }

.plan-feats {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 11px;
  flex: 1;
}
.plan-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; line-height: 1.45;
  color: var(--ink-2);
}
.pf-ic {
  flex: none; width: 16px; height: 16px;
  margin-top: 1px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.ic-check { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C5BFF' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.ic-cloud { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A92B3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 19a4.5 4.5 0 0 0 .5-9 6 6 0 0 0-11.5-1.5A4 4 0 0 0 6.5 19z'/%3E%3C/svg%3E"); }
.ic-scan  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A92B3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 17V9m5 8V5m5 12v-6m5 6V8'/%3E%3C/svg%3E"); }
.ic-down  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A92B3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12m0 0 4-4m-4 4-4-4M5 21h14'/%3E%3C/svg%3E"); }
.ic-mail  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A92B3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E"); }
.ic-git   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A92B3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='2.5'/%3E%3Ccircle cx='6' cy='18' r='2.5'/%3E%3Ccircle cx='18' cy='8' r='2.5'/%3E%3Cpath d='M18 10.5c0 3-2 4.5-5 4.5H6m0-6.5v7'/%3E%3C/svg%3E"); }
.ic-clock { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A92B3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); }
.ic-inf   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A92B3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 8.5a3.5 3.5 0 1 0 0 7c2 0 3-1.5 5.5-3.5s3.5-3.5 5.5-3.5a3.5 3.5 0 1 1 0 7c-2 0-3-1.5-5.5-3.5S8.5 8.5 6.5 8.5z'/%3E%3C/svg%3E"); }

.plan-cta { width: 100%; justify-content: center; margin-top: auto; }

.pricing-foot {
  text-align: center; margin: 30px auto 0;
  max-width: 60ch;
  font-size: 13px; color: var(--ink-4);
  line-height: 1.55;
}

/* ============================================================
   LEGAL / POLICY PAGES
   ============================================================ */
.legal-hero {
  background: var(--bg-dark);
  color: #E8EAF2;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line-dark);
}
.legal-hero .kicker { color: var(--brand-light); }
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: 10px 0 14px;
  color: #FFFFFF;
}
.legal-updated {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-5);
  margin: 0;
}
.legal-body {
  padding: 64px 0 96px;
}
.legal-prose {
  max-width: 76ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 44px 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.legal-prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-prose h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--ink);
  margin: 26px 0 8px;
}
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul, .legal-prose ol { margin: 0 0 16px; padding-left: 22px; }
.legal-prose li { margin-bottom: 8px; }
.legal-prose a { color: var(--brand-2); text-decoration: none; border-bottom: 1px solid currentColor; }
.legal-prose a:hover { color: var(--brand); }
.legal-prose strong { color: var(--ink); }
.legal-prose code {
  font-family: var(--font-mono);
  font-size: .9em;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 6px;
}
.legal-note {
  margin: 28px 0 0;
  padding: 16px 18px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--ink-3);
}
.legal-toc {
  list-style: none;
  margin: 0 0 40px; padding: 20px 24px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid; gap: 8px;
  font-size: 14px;
}
.legal-toc a { border-bottom: 0; }
.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 8px 0 28px;
  max-width: 860px;
}
.lc-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 20px;
}
.lc-card h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  margin: 0 0 6px; color: var(--ink);
}
.lc-card p { margin: 0; font-size: 14px; color: var(--ink-3); line-height: 1.6; }
.lc-card a { color: var(--brand-2); text-decoration: none; border-bottom: 1px solid currentColor; }
.lc-card a:hover { color: var(--brand); }
.lc-meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 10px;
}

/* ============================================================
   SECURITY / TRUST
   ============================================================ */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 880px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  transition: border-color .2s ease, transform .2s ease;
}
.trust-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.trust-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  margin-bottom: 14px;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; letter-spacing: -.005em;
  margin: 0 0 6px;
}
.trust-card p {
  margin: 0; font-size: 14.5px; color: var(--ink-3); line-height: 1.55;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 880px; margin: 0 auto;
}
.faq details {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  font-family: var(--font-display); font-weight: 800;
  color: var(--brand); font-size: 22px;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary .chev { transform: rotate(90deg); }
.faq p {
  font-size: 15px; color: var(--ink-3);
  margin: 14px 0 0; line-height: 1.65;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.section-cta {
  position: relative; overflow: hidden;
  background: var(--bg-dark);
  color: #F4F5FA;
  padding: 110px 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(closest-side at 80% 20%, rgba(44,91,255,.45), transparent 60%),
    radial-gradient(closest-side at 15% 90%, rgba(91,124,255,.22), transparent 60%);
  pointer-events: none;
}
.cta-final {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 720px; margin: 0 auto;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700; line-height: 1.04; letter-spacing: -.028em;
  margin: 0 0 18px; color: #FFFFFF;
  text-wrap: balance;
}
.cta-final p { font-size: 18px; color: var(--ink-5); margin: 0 0 32px; }
.cta-row {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.cta-fine { font-size: 13px; color: var(--ink-4); margin: 28px 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark); color: var(--ink-5);
  padding: 72px 0 32px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.brand-footer { display: inline-flex; }
.foot-blurb {
  font-size: 14px; color: var(--ink-4); margin: 16px 0 18px;
  max-width: 38ch; line-height: 1.55;
}
.foot-blurb a { color: var(--brand-light); }
.foot-addr {
  font-style: normal; font-size: 14px;
  color: var(--ink-4); line-height: 1.7;
}
.foot-addr a { color: var(--ink-5); }
.foot-addr a:hover { color: #FFFFFF; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: #FFFFFF; margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--ink-5); font-size: 14px; }
.footer ul a:hover { color: #FFFFFF; }
.foot-base {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line-dark);
  font-size: 12.5px; color: var(--ink-4);
  flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   FLOAT CTA (mobile)
   ============================================================ */
.float-cta {
  display: none;
  position: fixed; bottom: 18px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand); color: #FFFFFF;
  font-weight: 600; font-size: 14px;
  padding: 12px 22px; border-radius: 999px;
  box-shadow: var(--shadow-blue);
  z-index: 40;
}
.float-cta span {
  font-family: var(--font-display); font-weight: 800;
  margin-left: 6px;
}
@media (max-width: 640px) {
  .float-cta { display: inline-flex; align-items: center; }
}

/* ============================================================
   BLOG / ARTICLES
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
  margin: 8px 0 0;
}
.blog-card {
  display: flex; flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 28px 26px;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card .bc-cat {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .09em; text-transform: uppercase;
  color: var(--brand-2);
  margin: 0 0 14px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 700; letter-spacing: -.015em;
  line-height: 1.22; color: var(--ink);
  margin: 0 0 10px;
}
.blog-card p {
  font-size: 14.5px; line-height: 1.6; color: var(--ink-3);
  margin: 0 0 20px;
}
.blog-card .bc-meta {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-4);
}
.blog-card .bc-meta .bc-read::before { content: "·"; margin-right: 10px; color: var(--line-strong); }
.blog-card .bc-go {
  margin-top: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--brand-2);
}
.blog-card:hover .bc-go { color: var(--brand); }

/* Featured (first) card spans wider on large screens */
.blog-card.featured {
  grid-column: 1 / -1;
  flex-direction: row; align-items: center; gap: 40px;
  background: var(--bg-dark); border-color: var(--line-dark-2);
  padding: 40px 44px;
}
.blog-card.featured .bc-body { flex: 1; }
.blog-card.featured .bc-cat { color: var(--brand-light); }
.blog-card.featured h3 { color: #fff; font-size: clamp(24px, 3vw, 32px); max-width: 22ch; }
.blog-card.featured p { color: var(--ink-5); font-size: 16px; max-width: 60ch; }
.blog-card.featured .bc-meta { color: var(--ink-5); }
.blog-card.featured .bc-go { color: var(--brand-light); }
.blog-card.featured:hover { transform: translateY(-3px); border-color: var(--brand); }
.bc-figure {
  flex-shrink: 0; width: 280px; height: 180px;
  border-radius: 12px; border: 1px solid var(--line-dark-2);
  background: radial-gradient(120% 120% at 80% 0%, rgba(44,91,255,.28), transparent 60%), #0E0E16;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--brand-light);
  padding: 18px; overflow: hidden;
}
.bc-figure pre { margin: 0; line-height: 1.7; color: #9FB4FF; font-size: 11.5px; white-space: pre; }
.bc-figure .bc-fig-c1 { color: #4ED6A8; }
.bc-figure .bc-fig-c2 { color: #6E7BA8; }
@media (max-width: 760px) {
  .blog-card.featured { flex-direction: column; align-items: flex-start; gap: 24px; padding: 30px; }
  .bc-figure { width: 100%; }
}

/* Article page */
.article-hero { background: var(--bg-dark); color: #E8EAF2; padding: 64px 0 48px; border-bottom: 1px solid var(--line-dark); }
.article-hero .wrap { max-width: 820px; }
.article-hero .kicker { color: var(--brand-light); }
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 46px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.1;
  margin: 12px 0 18px; color: #fff; max-width: 24ch;
}
.article-hero .art-dek { font-size: 18px; line-height: 1.6; color: var(--ink-5); max-width: 62ch; margin: 0 0 24px; }
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-5);
}
.article-meta .am-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-4); }
.article-meta strong { color: #fff; font-weight: 600; }
.article-body { padding: 56px 0 80px; }
.article-body .wrap { max-width: 820px; }
.article-body .legal-prose { max-width: none; font-size: 17px; line-height: 1.75; }
.article-body .legal-prose h2 { font-size: 27px; margin-top: 52px; }
.article-body .legal-prose h3 { font-size: 19px; margin-top: 32px; }
.article-body .legal-prose blockquote {
  margin: 28px 0; padding: 4px 0 4px 24px;
  border-left: 3px solid var(--brand);
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  line-height: 1.45; color: var(--ink); font-style: normal;
}
.article-body .legal-prose pre {
  background: #0E0E16; border: 1px solid var(--line-dark-2); border-radius: 12px;
  padding: 20px 22px; overflow-x: auto; margin: 22px 0;
  font-family: var(--font-mono); font-size: 13.5px; line-height: 1.65; color: #C7D0F0;
}
.article-body .legal-prose pre code { background: none; border: 0; padding: 0; font-size: inherit; color: inherit; }
.article-body .legal-prose .lead {
  font-size: 20px; line-height: 1.6; color: var(--ink); font-weight: 400;
  margin-bottom: 26px;
}
.article-cta {
  margin: 44px 0 0; padding: 32px 34px;
  background: var(--brand-soft); border: 1px solid #DCE3FF; border-radius: 16px;
}
.article-cta h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); margin: 0 0 8px; }
.article-cta p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; margin: 0 0 18px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 44px 0 0; }
.article-tags span {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-3);
  background: var(--bg-tint); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 13px;
}
.related-wrap { background: var(--bg-tint); border-top: 1px solid var(--line); padding: 56px 0 72px; }
.related-wrap h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -.015em; color: var(--ink); margin: 0 0 22px; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
