/* ============================================================
   Haim AI — Deep-space command center
   Adapted from Idle Finance style reference.
   Cyber Cyan accent, Midnight Ink surfaces, RTL Hebrew.
   ============================================================ */

:root {
  /* Colors — strict palette */
  --midnight: #17202e;       /* primary surface */
  --astral: #202a3e;         /* secondary surface, buttons */
  --astral-2: #1c2436;       /* between primary and secondary */
  --void: #0B131F;           /* deepest bg */
  --stardust: #cdd0d6;       /* muted text */
  --white: #ffffff;          /* primary text on dark */
  --cyan: #6ae4ff;           /* THE accent */
  --cyan-dim: rgba(106, 228, 255, 0.6);

  /* Gradients */
  --grad-deep-ocean: linear-gradient(90deg, rgb(45, 55, 72), rgb(74, 85, 104), rgb(113, 128, 150), rgb(74, 85, 104));
  --grad-nebula: radial-gradient(circle, rgb(8, 33, 143) 40%, rgb(41, 138, 203) 100%);
  --grad-emerald: linear-gradient(73.6deg, rgb(52, 237, 179) 2.11%, rgb(0, 209, 255));
  --grad-hero: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(41, 138, 203, 0.25), transparent 70%),
               radial-gradient(ellipse 60% 60% at 20% 100%, rgba(8, 33, 143, 0.2), transparent 60%);

  /* Typography */
  --font-display: "Open Sans", "Heebo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Heebo", "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-ui: "Source Sans 3", "Heebo", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing */
  --s4: 4px; --s8: 8px; --s12: 12px; --s16: 16px; --s24: 24px;
  --s40: 40px; --s64: 64px; --s80: 80px; --s120: 120px;

  /* Radii — per spec */
  --r-button: 80px;
  --r-button-sm: 4px;
  --r-card: 15px;
  --r-misc: 24px;
  --r-link: 8px;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-gap: clamp(64px, 9vw, 120px);
  --card-pad: clamp(36px, 5vw, 66px);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--midnight); color: var(--white); scroll-behavior: smooth; }
body {
  background: var(--midnight);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.57;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  direction: rtl;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* ATMOSPHERIC BG */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(41, 138, 203, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(106, 228, 255, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }

/* TYPOGRAPHY */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.036em; }
.h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 4.8vw, 64px); line-height: 1.08; letter-spacing: -0.036em; }
.h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.15; letter-spacing: -0.028em; }
.h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 1.9vw, 24px); line-height: 1.3; letter-spacing: -0.022em; }
.lede { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: var(--stardust); max-width: 64ch; font-weight: 400; }
.caption { font-family: var(--font-ui); font-size: 12px; line-height: 1.6; letter-spacing: 0.04em; color: var(--stardust); text-transform: uppercase; }
.muted { color: var(--stardust); }
.cyan { color: var(--cyan); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(23, 32, 46, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.018em; color: var(--white);
}
.brand-mark {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--grad-nebula);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 18px rgba(41, 138, 203, 0.5);
}
.brand-mark::after {
  content: ""; position: absolute; inset: 4px; border-radius: 5px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%); opacity: 0.7;
}
.nav-links { display: flex; gap: clamp(14px, 2vw, 28px); font-family: var(--font-ui); font-size: 15px; color: var(--stardust); }
.nav-links a { position: relative; padding: 6px 2px; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--cyan); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: #000;
  border: 1px solid #000; border-radius: var(--r-button-sm);
  padding: 10px 22px;
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--cyan); color: #000; border-color: var(--cyan); }
.nav-cta svg { width: 14px; height: 14px; }
.menu-toggle {
  display: none; width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15); align-items: center; justify-content: center;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--midnight);
    padding: 18px var(--gutter);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-mobile-open .nav-links a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.04); }
}

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: 15px; font-weight: 600; transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; white-space: nowrap; }
.btn-primary { background: var(--white); color: #000; border: 1px solid #000; border-radius: var(--r-button-sm); padding: 14px 28px; }
.btn-primary:hover { background: var(--cyan); border-color: var(--cyan); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(106, 228, 255, 0.25); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--white); border-radius: var(--r-button); padding: 12px 30px; }
.btn-ghost:hover { background: var(--white); color: var(--midnight); }
.btn-cyan { background: transparent; color: var(--cyan); border: 1px solid var(--cyan); border-radius: 16px; padding: 12px 22px; }
.btn-cyan:hover { background: var(--cyan); color: var(--midnight); }
.btn-wa { background: #25D366; color: #0A1A0E; border: 1px solid #1FB855; border-radius: var(--r-button-sm); padding: 14px 28px; }
.btn-wa:hover { background: #1FB855; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3); }
.btn-lg { padding-block: 16px; font-size: 16px; }
.btn-arrow::after { content: "←"; transition: transform 0.25s; margin-inline-start: 4px; }
.btn:hover .btn-arrow::after { transform: translateX(-4px); }

/* HERO */
.hero {
  position: relative;
  padding-top: clamp(72px, 12vw, 140px);
  padding-bottom: clamp(60px, 9vw, 120px);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-hero); pointer-events: none; opacity: 0.9;
}
.hero-inner { position: relative; max-width: 920px; margin: 0 auto; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(106, 228, 255, 0.08); border: 1px solid rgba(106, 228, 255, 0.2);
  color: var(--cyan); border-radius: var(--r-button);
  padding: 8px 18px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  margin-bottom: var(--s24);
}
.hero-tag::before {
  content: ""; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.9); } }
.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1.04; letter-spacing: -0.036em;
  margin-bottom: var(--s24);
}
.hero-title .cyan { color: var(--cyan); }
.hero-lede {
  font-size: clamp(17px, 1.7vw, 21px); line-height: 1.55;
  color: var(--stardust); max-width: 62ch;
  margin: 0 auto var(--s40); font-weight: 400;
}
.hero-cta { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* SECTIONS */
.section { padding-block: var(--section-gap); position: relative; }
.section-alt { background: var(--void); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }
.section-head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: var(--s16);
  padding: 6px 14px; border: 1px solid rgba(106, 228, 255, 0.25); border-radius: var(--r-button);
}

/* SERVICE STACK — alternating large cards (NOT 4-grid) */
.service-stack { display: grid; gap: 24px; }
.service-row {
  background: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-card);
  padding: var(--card-pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  transition: border-color 0.3s;
}
.service-row:hover { border-color: rgba(106, 228, 255, 0.2); }
.service-row-visual {
  position: relative; min-height: 220px;
  background: var(--astral); border-radius: var(--r-card);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.service-row-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(106, 228, 255, 0.18), transparent 60%);
}
.service-row-visual svg { width: 80px; height: 80px; color: var(--cyan); position: relative; z-index: 1; }
.service-row-num {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  color: var(--cyan); letter-spacing: 0.14em;
  margin-bottom: 12px; text-transform: uppercase;
}
.service-row-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.028em; line-height: 1.15;
  margin-bottom: var(--s16);
}
.service-row-body { color: var(--stardust); font-size: 16.5px; line-height: 1.6; margin-bottom: var(--s24); }
@media (max-width: 880px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row-visual { min-height: 180px; order: 2; }
}

/* DATA STRIP — inline stats */
.data-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(24px, 4vw, 60px);
  padding-block: var(--s40);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.data-cell { text-align: center; }
.data-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.036em;
  color: var(--cyan); line-height: 1; margin-bottom: 10px;
}
.data-label { font-family: var(--font-ui); font-size: 13px; color: var(--stardust); letter-spacing: 0.05em; }

/* PROCESS — horizontal flow */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; margin-top: var(--s40); }
.process::before {
  content: ""; position: absolute;
  top: 28px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: 0.5;
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 56px; height: 56px; margin: 0 auto var(--s16);
  border-radius: 50%;
  background: var(--midnight); border: 1px solid var(--cyan); color: var(--cyan);
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.process-title { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.022em; margin-bottom: 8px; }
.process-body { font-size: 14.5px; line-height: 1.55; color: var(--stardust); }
@media (max-width: 720px) {
  .process { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process::before { display: none; }
}

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* CHIPS */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s24); }
.chip { font-family: var(--font-ui); font-size: 13px; font-weight: 500; color: var(--stardust); background: var(--astral); border: 1px solid transparent; border-radius: 16px; padding: 8px 14px; }
.chip-cyan { color: var(--cyan); background: rgba(106, 228, 255, 0.06); border-color: rgba(106, 228, 255, 0.25); }

/* BULLET LIST */
.bullets { list-style: none; margin-top: var(--s24); }
.bullets li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-size: 16px; color: var(--stardust); line-height: 1.55; }
.bullets li::before { content: "›"; color: var(--cyan); font-family: var(--font-display); font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.bullets li strong { color: var(--white); font-weight: 600; }
.bullets li:last-child { border-bottom: 0; }

/* QUOTE */
.quote { max-width: 800px; margin: 0 auto; text-align: center; padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 40px); border-top: 1px solid rgba(255, 255, 255, 0.08); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.quote-text { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.6vw, 32px); line-height: 1.35; letter-spacing: -0.026em; }
.quote-text .cyan { color: var(--cyan); }
.quote-attr { margin-top: var(--s24); font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); }

/* CTA STRIP */
.cta-strip {
  background: var(--midnight); border: 1px solid rgba(106, 228, 255, 0.18);
  border-radius: var(--r-card); padding: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden; text-align: center;
}
.cta-strip::before {
  content: ""; position: absolute; inset: -1px;
  background: var(--grad-nebula); opacity: 0.18; pointer-events: none;
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: var(--s16); }
.cta-strip-lede { color: var(--stardust); max-width: 56ch; margin: 0 auto var(--s24); }
.cta-strip-buttons { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* METHOD CHAPTERS */
.method-list { margin-top: var(--s40); display: grid; gap: var(--s24); }
.method-row {
  background: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-card);
  padding: clamp(28px, 4vw, 48px);
  display: grid; grid-template-columns: 80px 1fr; gap: clamp(20px, 3vw, 40px);
  align-items: start;
  transition: border-color 0.3s, background 0.3s;
}
.method-row:hover { border-color: rgba(106, 228, 255, 0.25); background: var(--astral-2); }
.method-num { font-family: var(--font-display); font-weight: 400; font-size: clamp(48px, 5vw, 64px); line-height: 1; color: var(--cyan); letter-spacing: -0.036em; font-variant-numeric: tabular-nums; }
.method-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.028em; line-height: 1.15; }
.method-sub { color: var(--stardust); margin-top: 6px; font-size: 15.5px; }
.method-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s24); }
.method-pill { display: inline-flex; align-items: center; font-family: var(--font-ui); font-size: 13px; font-weight: 500; color: var(--stardust); background: var(--astral); border: 1px solid transparent; border-radius: 16px; padding: 8px 14px; transition: color 0.2s, border-color 0.2s, background 0.2s; }
.method-pill:hover { color: var(--cyan); border-color: rgba(106, 228, 255, 0.3); background: rgba(106, 228, 255, 0.05); }
@media (max-width: 680px) { .method-row { grid-template-columns: 1fr; gap: 16px; } }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.faq summary {
  list-style: none; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px); letter-spacing: -0.022em;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-display); font-weight: 400; font-size: 22px;
  color: var(--cyan); width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(106, 228, 255, 0.3);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.25s, background 0.25s;
}
.faq details[open] summary::after { content: "−"; background: var(--cyan); color: var(--midnight); transform: rotate(180deg); }
.faq summary:hover { color: var(--cyan); }
.faq-body { margin-top: 14px; color: var(--stardust); font-size: 16px; line-height: 1.6; max-width: 70ch; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s24); }
.contact-tile {
  background: var(--midnight); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-card); padding: clamp(28px, 4vw, 48px); text-align: center;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.contact-tile:hover { border-color: var(--cyan); background: var(--astral-2); transform: translateY(-2px); }
.contact-icon { width: 56px; height: 56px; margin: 0 auto var(--s16); border-radius: 50%; background: rgba(106, 228, 255, 0.08); border: 1px solid rgba(106, 228, 255, 0.3); display: flex; align-items: center; justify-content: center; color: var(--cyan); }
.contact-icon svg { width: 22px; height: 22px; }
.contact-tile-title { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.024em; margin-bottom: 8px; }
.contact-tile-body { color: var(--stardust); font-size: 15px; margin-bottom: var(--s16); }
.contact-tile-value { font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--cyan); }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }

/* FORM */
.form { display: grid; gap: var(--s16); }
.field label { display: block; font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.1em; color: var(--stardust); text-transform: uppercase; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--r-button-sm);
  padding: 14px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--cyan); background: rgba(106, 228, 255, 0.04);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select option { background: var(--midnight); color: var(--white); }

/* FOOTER */
.footer { margin-top: var(--section-gap); padding-block: 60px 28px; border-top: 1px solid rgba(255, 255, 255, 0.06); background: var(--void); }
.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; gap: 28px; } }
.footer-col h5 { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stardust); margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; color: var(--stardust); padding: 5px 0; font-size: 15px; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.06); font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stardust); }
@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 14px; text-align: center; } }

/* SCROLL-REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.r1 { transition-delay: 0.05s; } .r2 { transition-delay: 0.15s; } .r3 { transition-delay: 0.25s; } .r4 { transition-delay: 0.35s; }

.hidden-mobile { display: initial; }
@media (max-width: 720px) { .hidden-mobile { display: none; } }

::selection { background: var(--cyan); color: var(--midnight); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--midnight); }
::-webkit-scrollbar-thumb { background: var(--astral); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: rgba(106, 228, 255, 0.3); }

/* ============================================================
   ARTICLE BODY — for blog posts (h2, h3, p, ul, ol inside)
   ============================================================ */
.article-body {
  font-family: var(--font-body);
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--white);
}
.article-body > * + * { margin-top: 1.2em; }
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.028em;
  line-height: 1.2;
  margin-top: 2em;
  margin-bottom: 0.6em;
  color: var(--white);
}
.article-body h2 + h3 { margin-top: 1em; }
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.022em;
  line-height: 1.25;
  margin-top: 1.5em;
  margin-bottom: 0.4em;
  color: var(--cyan);
}
.article-body p {
  color: var(--stardust);
  font-size: 17px;
  line-height: 1.75;
}
.article-body p strong, .article-body li strong { color: var(--white); font-weight: 600; }
.article-body a {
  color: var(--cyan);
  border-bottom: 1px solid rgba(106, 228, 255, 0.4);
  transition: border-color 0.2s;
}
.article-body a:hover { border-bottom-color: var(--cyan); }
.article-body code {
  font-family: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.92em;
  background: var(--astral);
  color: var(--cyan);
  padding: 2px 8px;
  border-radius: 4px;
}
.article-body ul, .article-body ol { padding-inline-start: 24px; }
.article-body ul.bullets {
  list-style: none;
  padding: 0;
  margin-top: 1em;
}
.article-body ul.bullets li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--stardust);
  font-size: 16.5px;
  line-height: 1.6;
}
.article-body ul.bullets li::before {
  content: "›";
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.article-body ul.bullets li:last-child { border-bottom: 0; }
.article-body blockquote {
  border-inline-start: 3px solid var(--cyan);
  padding: 14px 18px;
  background: rgba(106, 228, 255, 0.04);
  margin: 18px 0;
  border-radius: 8px;
  color: var(--stardust);
  font-style: italic;
}

/* Index pages (blog index, services index) */
.index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.index-card {
  background: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 36px);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.index-card:hover {
  border-color: rgba(106, 228, 255, 0.3);
  background: var(--astral-2);
  transform: translateY(-2px);
}
.index-card-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.index-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.024em;
  line-height: 1.2;
  color: var(--white);
}
.index-card-body {
  color: var(--stardust);
  font-size: 14.5px;
  line-height: 1.55;
}
.index-card-cta {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  margin-top: auto;
}
.index-card-cta::after { content: " ←"; }

/* ACCESSIBILITY — skip link */
.skip-link {
  position: absolute;
  top: -100px;
  right: 12px;
  background: var(--cyan);
  color: var(--midnight);
  padding: 10px 16px;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
main:focus { outline: none; }

/* Focus visible for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, details:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

/* COMPARISON TABLE */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: clamp(24px, 4vw, 40px) 0;
  background: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-card);
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 15px;
}
.compare-table thead { background: rgba(106, 228, 255, 0.04); }
.compare-table th {
  text-align: right;
  padding: 16px 20px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--stardust);
  vertical-align: top;
  line-height: 1.5;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tr:hover td { background: rgba(255, 255, 255, 0.02); }
.compare-table td:first-child {
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.compare-table .recommend {
  color: var(--cyan);
  font-weight: 600;
}
@media (max-width: 720px) {
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
}

/* HERO STAMP — scenario timestamp above the title */
.hero-stamp {
  font-family: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cyan);
  margin-bottom: var(--s12);
  text-shadow: 0 0 24px rgba(106, 228, 255, 0.4);
  display: inline-block;
}

/* Slightly tighter hero title to balance with stamp */
.hero-title {
  font-size: clamp(36px, 5.6vw, 68px) !important;
}
