/* ─────────────────────────────────────────────────────────────────────────
   Doogree · Operator's Console
   A design system for an Israeli IT support tool that wants to feel
   more credible than AnyDesk and more considered than TeamViewer.

   Aesthetic: NOC / SRE control room meets editorial monochrome.
   Restraint, hairlines, monospaced numerals, surgical ember accents.
   ─────────────────────────────────────────────────────────────────────── */

/* ── Tokens ──────────────────────────────────────────────────────────── */
:root {
  /* Surfaces — layered graphite, slightly warm. */
  --ink-0:        #07070a;   /* page void */
  --ink-1:        #0b0b0e;   /* primary surface */
  --ink-2:        #101015;   /* raised */
  --ink-3:        #16161c;   /* hover */
  --hair:         #1c1c24;   /* hairlines */
  --hair-bright:  #2a2a34;   /* hairline on hover */
  --hair-ember:   #ff6c2c33; /* ember hairline */

  /* Type */
  --paper:        #f4f0e8;   /* warm off-white, primary text */
  --paper-2:      #d6d2c8;   /* secondary */
  --paper-3:      #8e8a7e;   /* tertiary */
  --paper-4:      #5a5749;   /* faint, decorative */

  /* Signals */
  --ember:        #ff6c2c;   /* THE accent — used surgically */
  --ember-soft:   #ff6c2c1f;
  --ember-dim:    #c44a18;
  --crt:          #71d997;   /* status green */
  --crt-dim:      #4ba373;
  --amber:        #e8b341;
  --signal-red:   #ff4757;

  /* Layout */
  --max-w:        1200px;
  --gutter:       28px;
  --col-w:        calc((var(--max-w) - var(--gutter) * 13) / 12);

  /* Type stack — distinctive, editorial, never generic. */
  --font-display-latin: "Newsreader", "Frank Ruhl Libre", "Noto Serif Hebrew", "Times New Roman", serif;
  --font-display-rtl:   "Frank Ruhl Libre", "Newsreader", "David Libre", "Noto Serif Hebrew", serif;
  --font-sans:          "IBM Plex Sans", "IBM Plex Sans Hebrew", "Noto Sans Hebrew", "Noto Sans Arabic", "Segoe UI", sans-serif;
  --font-mono:          "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SF Mono", Consolas, monospace;

  --radius-sm: 2px;
  --radius:    4px;

  --t-fast: 120ms cubic-bezier(.4,.2,.2,1);
  --t-slow: 320ms cubic-bezier(.4,.2,.2,1);
}

/* ── Reset & global ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { font-feature-settings: "tnum", "ss01", "cv11"; -webkit-font-smoothing: antialiased; }
body {
  min-height: 100vh;
  background: var(--ink-0);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(255, 108, 44, 0.06), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(113, 217, 151, 0.025), transparent 70%);
  background-attachment: fixed;
}

/* Subtle film grain — gives the page texture so the dark surfaces don't feel flat. */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
}

::selection { background: var(--ember); color: var(--ink-0); }

a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--paper-4);
  transition: color var(--t-fast), border-color var(--t-fast);
}
a:hover { color: var(--ember); border-color: var(--ember); }

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

/* Mono digits everywhere they appear */
.mono, time, code, kbd, samp, .num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* ── Telegraph stripe — the brand signature ──────────────────────────── */
.telegraph {
  position: relative;
  background: var(--ink-0);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-3);
  height: 28px;
  display: flex;
  align-items: center;
}
.telegraph-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  padding: 0 24px;
  flex: 1;
  overflow: hidden;
}
.telegraph .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--crt);
  box-shadow: 0 0 8px var(--crt);
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.telegraph .pulse.ember {
  background: var(--ember);
  box-shadow: 0 0 8px var(--ember);
}
.telegraph .sep { color: var(--paper-4); }
.telegraph .label { color: var(--paper-2); }
.telegraph .val { color: var(--paper); }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.85); }
}

/* ── Container & 12-col rhythm ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Site nav ────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 14, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--hair);
}
.site-nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  color: var(--paper);
  border: none;
  font-family: var(--font-display-latin);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1;
}
.brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border: 1px solid var(--hair-bright);
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  position: relative;
  flex-shrink: 0;
}
.brand .mark::after {
  /* tiny ember dot in the corner of the mark — the "online" cue */
  content: "";
  position: absolute;
  inset-inline-end: 3px;
  bottom: 3px;
  width: 5px; height: 5px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--ember);
}
.brand .mark svg { width: 16px; height: 16px; color: var(--paper); }
.brand .name { transform: translateY(2px); }
.brand .build {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper-4);
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  border: none;
  color: var(--paper-2);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  position: relative;
  padding-block: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-fast);
}
.nav-links a:hover { color: var(--paper); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--paper); }

/* Language picker */
.lang-picker { position: relative; }
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--hair-bright);
  color: var(--paper-2);
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.lang-trigger:hover { border-color: var(--ember); color: var(--paper); }
.lang-trigger .flag { font-size: 14px; line-height: 1; letter-spacing: 0; }
.lang-trigger .caret { font-size: 9px; color: var(--paper-4); }
.lang-menu {
  position: absolute;
  top: calc(100% + 4px);
  inset-inline-end: 0;
  margin: 0;
  padding: 4px;
  list-style: none;
  background: var(--ink-1);
  border: 1px solid var(--hair-bright);
  min-width: 200px;
  z-index: 60;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.lang-menu[hidden] { display: none; }
.lang-menu li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  font-size: 13.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--t-fast);
}
.lang-menu li:hover { background: var(--ink-3); }
.lang-menu li.active { color: var(--ember); }
.lang-menu li.active::before {
  content: "›";
  margin-inline-end: -4px;
  color: var(--ember);
}
.lang-menu .flag { font-size: 16px; }
.lang-menu .name { flex: 1; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 92px 0 88px;
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
}
.hero::before {
  /* the section number — like a manuscript */
  content: "01";
  position: absolute;
  top: 24px;
  inset-inline-start: 24px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--paper-4);
}
.hero::after {
  content: "OPERATOR'S CONSOLE";
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--paper-4);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { min-width: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-3);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--ember);
}
.eyebrow .dot {
  width: 5px; height: 5px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--ember);
}

.hero h1 {
  margin: 0 0 28px;
  font-family: var(--font-display-latin);
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--paper);
  max-width: 16ch;
}
[dir="rtl"] .hero h1 { max-width: 14ch; }
.hero h1 em {
  font-style: italic;
  color: var(--paper);
}
.hero h1 .underlined {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underlined::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.05em;
  height: 2px;
  background: var(--ember);
}

.hero .sub {
  margin: 0 0 36px;
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--paper-2);
  max-width: 46ch;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Button system */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  --btn-border: var(--hair-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  position: relative;
}
.btn:hover { border-color: var(--ember); }
.btn:active { transform: translateY(1px); }

.btn.primary {
  --btn-bg: var(--ember);
  --btn-fg: var(--ink-0);
  --btn-border: var(--ember);
  font-weight: 600;
}
.btn.primary:hover {
  --btn-bg: #ff7d44;
  --btn-border: #ff7d44;
  color: var(--ink-0);
}
.btn .icn { width: 16px; height: 16px; flex-shrink: 0; }

.btn-meta {
  margin-inline-start: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper-4);
}

/* ── Hero readout panel ─────────────────────────────────────────────── */
.readout {
  position: relative;
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink-1) 100%);
  border: 1px solid var(--hair-bright);
  padding: 0;
  font-family: var(--font-mono);
}
.readout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--hair);
  background: var(--ink-2);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-3);
}
.readout-head .traffic {
  display: inline-flex;
  gap: 6px;
}
.readout-head .traffic span {
  width: 8px; height: 8px;
  background: var(--paper-4);
  border-radius: 50%;
}
.readout-head .traffic span:first-child { background: var(--ember); }
.readout-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.readout-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--hair);
  min-height: 36px;
}
.readout-row:last-child { border-bottom: none; padding-bottom: 0; }
.readout-row .k {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-3);
}
.readout-row .v {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.readout-row .v.large {
  font-size: 24px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.readout-row .v.ember { color: var(--ember); }
.readout-row .tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-4);
  border: 1px solid var(--hair-bright);
  padding: 3px 8px;
}
.readout-row .status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--crt);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.readout-row .status-dot::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--crt);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--crt);
  animation: pulse-dot 2s ease-in-out infinite;
}
.readout-foot {
  border-top: 1px solid var(--hair);
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-4);
}

/* ── Generic section scaffolding ────────────────────────────────────── */
section {
  position: relative;
  padding: 88px 0;
  border-bottom: 1px solid var(--hair);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hair);
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display-latin);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--paper);
  max-width: 22ch;
}
.section-head .section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-4);
  white-space: nowrap;
}

/* ── Feature grid ───────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-block: 1px solid var(--hair);
}
.feature {
  position: relative;
  padding: 40px 32px 36px;
  border-inline-start: 1px solid var(--hair);
  transition: background var(--t-slow);
}
.feature:first-child { border-inline-start: none; }
.feature:hover { background: linear-gradient(180deg, var(--ink-1), var(--ink-2)); }
.feature::before {
  content: attr(data-num);
  position: absolute;
  top: 14px;
  inset-inline-end: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--paper-4);
}
.feature .icn {
  width: 28px; height: 28px;
  color: var(--ember);
  margin-bottom: 22px;
}
.feature h3 {
  margin: 0 0 10px;
  font-family: var(--font-display-latin);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--paper);
}
.feature p {
  margin: 0;
  font-size: 14.5px;
  color: var(--paper-2);
  line-height: 1.6;
}

/* ── How it works ───────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--hair);
}
.step {
  position: relative;
  padding: 36px 30px 32px;
  border-inline-start: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step:first-child { border-inline-start: none; }
.step .num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--ember);
  margin-bottom: 4px;
}
.step h3 {
  margin: 0;
  font-family: var(--font-display-latin);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.step p {
  margin: 0;
  font-size: 14px;
  color: var(--paper-2);
  line-height: 1.6;
}
.step .arrow {
  position: absolute;
  top: 50%;
  inset-inline-end: -7px;
  transform: translateY(-50%);
  color: var(--paper-4);
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--ink-0);
  padding: 4px 0;
  z-index: 1;
}
.step:last-child .arrow { display: none; }
[dir="rtl"] .step .arrow { transform: translateY(-50%) scaleX(-1); }

/* ── Cloudflare credibility band ────────────────────────────────────── */
.credibility {
  padding: 64px 0;
  border-bottom: 1px solid var(--hair);
  background: var(--ink-1);
}
.credibility .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.credibility h2 {
  margin: 0 0 14px;
  font-family: var(--font-display-latin);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -0.016em;
  line-height: 1.18;
  max-width: 22ch;
}
.credibility p {
  margin: 0;
  color: var(--paper-2);
  font-size: 15.5px;
  max-width: 48ch;
}
.credibility .stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.stack-tile {
  background: var(--ink-1);
  padding: 22px 22px 20px;
  position: relative;
}
.stack-tile .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-4);
  margin-bottom: 8px;
}
.stack-tile .v {
  font-family: var(--font-display-latin);
  font-size: 19px;
  font-weight: 500;
  color: var(--paper);
}
.stack-tile.live::after {
  content: "";
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  width: 6px; height: 6px;
  background: var(--crt);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--crt);
}

/* ── Article (help / terms / privacy / accessibility) ───────────────── */
.article {
  padding: 80px 0 120px;
  max-width: 720px;
  margin: 0 auto;
  border-bottom: 1px solid var(--hair);
}
.article > .container { padding: 0 var(--gutter); }
.article .doc-head {
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.article h1 {
  margin: 0 0 10px;
  font-family: var(--font-display-latin);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.06;
  color: var(--paper);
}
.article .lead {
  margin: 0;
  font-size: 17px;
  color: var(--paper-2);
  max-width: 48ch;
}
.article .doc-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-4);
  white-space: nowrap;
}
.article h2 {
  margin: 56px 0 16px;
  font-family: var(--font-display-latin);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--paper);
  position: relative;
}
.article h2 .nbr {
  display: inline-block;
  margin-inline-end: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ember);
  vertical-align: middle;
}
.article p, .article li {
  font-size: 15.5px;
  color: var(--paper-2);
  line-height: 1.74;
}
.article p { margin: 0 0 16px; }
.article ul, .article ol {
  margin: 0 0 16px;
  padding-inline-start: 22px;
}
.article ul li { list-style: none; position: relative; padding-inline-start: 0; }
.article ul li::before {
  content: "─";
  display: inline-block;
  width: 20px;
  color: var(--ember);
  margin-inline-start: -22px;
}
.article strong { color: var(--paper); font-weight: 600; }

/* ── Footer ─────────────────────────────────────────────────────────── */
footer.site-footer {
  background: var(--ink-0);
  padding: 56px 0 28px;
}
footer .row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
footer .col h4 {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-4);
  font-weight: 500;
}
footer .col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
footer .col a {
  color: var(--paper-2);
  border: none;
  font-size: 14px;
}
footer .col a:hover { color: var(--ember); }
footer .pitch {
  font-family: var(--font-display-latin);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.4;
  color: var(--paper);
  max-width: 32ch;
  margin: 0 0 16px;
}
footer .pitch-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-3);
}
footer .pitch-meta .pulse {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--crt);
  border-radius: 50%;
  margin-inline-end: 6px;
  box-shadow: 0 0 6px var(--crt);
  vertical-align: middle;
  animation: pulse-dot 2s ease-in-out infinite;
}
footer .colophon {
  border-top: 1px solid var(--hair);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-4);
}
footer .colophon .sig {
  letter-spacing: 0.05em;
  font-size: 11px;
  color: var(--paper-3);
}

/* ── Utilities ──────────────────────────────────────────────────────── */
.muted { color: var(--paper-3); }
.divider {
  border: none;
  border-top: 1px solid var(--hair);
  margin: 0;
}
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--hair-bright);
  color: var(--paper-3);
  padding: 4px 10px;
}
.tag.ember { color: var(--ember); border-color: var(--ember); }

/* ── RTL refinements ────────────────────────────────────────────────── */
[dir="rtl"] body { font-family: var(--font-sans); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] .hero h1,
[dir="rtl"] .article h1, [dir="rtl"] .article h2, [dir="rtl"] .credibility h2,
[dir="rtl"] .feature h3, [dir="rtl"] .step h3, [dir="rtl"] .section-head h2,
[dir="rtl"] .brand, [dir="rtl"] .stack-tile .v, [dir="rtl"] footer .pitch {
  font-family: var(--font-display-rtl);
  letter-spacing: 0;     /* Hebrew/Arabic doesn't take negative tracking like Latin */
}
[dir="rtl"] .telegraph,
[dir="rtl"] .eyebrow,
[dir="rtl"] .num,
[dir="rtl"] .mono,
[dir="rtl"] .nav-links a /* keep nav metric for the visual rhythm */ {
  /* keep mono/uppercase decorations latin-style — they are micro-typographic ornaments */
}
[dir="rtl"] .hero::before { right: auto; left: 24px; }
[dir="rtl"] .hero::after  { left: auto; right: 24px; }
[dir="rtl"] .hero h1 .underlined::after { /* underline still left-to-right under Hebrew is fine */ }
[dir="rtl"] .step .arrow { transform: translateY(-50%) scaleX(-1); }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero { padding: 64px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .features, .steps { grid-template-columns: 1fr; }
  .feature, .step { border-inline-start: none; border-top: 1px solid var(--hair); }
  .feature:first-child, .step:first-child { border-top: none; }
  .credibility .container { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  footer .row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
  .telegraph { font-size: 10px; }
  .telegraph-inner { gap: 14px; padding: 0 16px; }
  footer .row { grid-template-columns: 1fr; }
}
