/* ============================================================
   THE OPERATOR — AICall.pw
   Cream paper · Black ink · One red accent
   Square corners. No gradients. No shadows. No nonsense.
   ============================================================ */

:root {
  --bg:       #F5F3EE;
  --surface:  #EDEBE5;
  --ink:      #0A0908;
  --navy:     #0c0c3f;

  --red:      #d83f3f;
  --red-dim:  rgba(216,63,63,0.08);
  --red-border: rgba(216,63,63,0.25);

  --green:    #00A651;

  --text-1:   #0A0908;
  --text-2:   #5C5852;
  --text-3:   #A09D97;

  --bd:    rgba(10,9,8,0.10);
  --bd-md: rgba(10,9,8,0.18);

  --mw: 1400px;
  --nav-h: 64px;
}

/* ---- reset ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); }
body {
  color: var(--text-1);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: none; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: var(--red); color: var(--bg); }

/* ---- typography ---- */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.92;
}
h2 { font-weight: 700; font-size: clamp(36px, 5vw, 72px); line-height: 1.02; letter-spacing: -0.02em; }
h3 { font-weight: 700; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.1; letter-spacing: -0.015em; }

.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-3);
}
.eyebrow.red { color: var(--red); }
.eyebrow.cream { color: rgba(245,243,238,0.4); }

.mono { font-family: 'JetBrains Mono', monospace; }

/* ---- layout ---- */
.wrap { max-width: var(--mw); margin: 0 auto; padding: 0 48px; position: relative; }
.grid12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cd {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  margin: -4px 0 0 -4px;
  pointer-events: none;
  z-index: 10000;
  transition: width .2s ease, height .2s ease, background .2s ease, margin .2s ease, opacity .2s ease;
  will-change: transform;
}
body.c-link #cd {
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--ink);
  margin: -16px 0 0 -16px;
}
body.c-btn #cd {
  width: 20px; height: 20px;
  background: var(--red);
  margin: -10px 0 0 -10px;
}
body.cursor-dark #cd { background: var(--bg); }
body.cursor-dark.c-link #cd { background: transparent; border-color: var(--bg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-red { background: var(--red); color: var(--bg); border-color: var(--red); }
.btn-red:hover { background: transparent; color: var(--red); }

.btn-ink { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-ink:hover { background: transparent; color: var(--ink); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--bd-md); }
.btn-outline:hover { border-color: var(--ink); }

.btn-outline-cream { background: transparent; color: var(--bg); border: 2px solid rgba(245,243,238,0.3); }
.btn-outline-cream:hover { border-color: var(--bg); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn .arr { display: inline-block; transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
  display: flex; align-items: center;
}
.nav.scrolled { border-bottom-color: var(--bd); }
.nav-inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo .dot { color: var(--red); }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--red);
}

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-login {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-2);
  transition: color .2s;
}
.nav-login:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--bd-md);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
}
.nav-toggle span { position: relative; margin: 0 auto; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Mobile overlay */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 99;
  padding: 100px 48px 48px;
  display: none;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--bg);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  padding: calc(var(--nav-h) + 56px) 0 0;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: stretch;
}
.hero-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 48px;
  width: 100%;
  align-items: stretch;
}
.hero-left {
  display: flex; flex-direction: column;
  padding: 24px 0 80px;
}
.hero-left .eyebrow { margin-bottom: 40px; }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-left: -0.06em; /* intentional crop on big screens */
}
.hero-h1 .red-word { color: var(--red); display: block; }
.hero-h1 .reveal-mask { display: block; overflow: hidden; }
.hero-h1 .reveal-mask > span { display: block; }

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 480px;
  margin-top: 36px;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 40px;
}
.hero-meta {
  margin-top: auto;
  padding-top: 56px;
  display: flex; gap: 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
.hero-meta strong { color: var(--ink); font-weight: 500; letter-spacing: 0; font-family: 'Inter'; text-transform: uppercase; font-size: 10px; letter-spacing: 0.1em; }
.hero-meta .item { display: flex; flex-direction: column; gap: 4px; }

/* Hero right — live feed panel */
.feed {
  background: var(--ink);
  color: var(--bg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  overflow: hidden;
  align-self: stretch;
  position: relative;
}
.feed-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245,243,238,0.1);
  margin-bottom: 18px;
}
.feed-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: flex; align-items: center; gap: 8px;
}
.feed-title .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink-soft 1.6s ease-in-out infinite;
}
@keyframes blink-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.feed-clock {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: rgba(245,243,238,0.4);
  letter-spacing: 0.08em;
}

.feed-list {
  flex: 1;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.feed-inner {
  animation: feedScroll 22s linear infinite;
}
@keyframes feedScroll {
  to { transform: translateY(-50%); }
}
.feed-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  padding: 11px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(245,243,238,0.55);
  border-bottom: 1px solid rgba(245,243,238,0.05);
  align-items: center;
}
.feed-row .stat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  justify-self: center;
}
.feed-row.ended .stat-dot { background: var(--text-3); }
.feed-row.failed .stat-dot { background: var(--red); }
.feed-row .num { color: var(--bg); font-weight: 500; }
.feed-row .meta { color: rgba(245,243,238,0.4); display: flex; gap: 10px; }
.feed-row .meta span:not(:first-child)::before {
  content: '·';
  margin-right: 10px;
  color: rgba(245,243,238,0.2);
}
.feed-row .stat-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
}
.feed-row.ended .stat-text { color: rgba(245,243,238,0.3); }

.feed-foot {
  padding-top: 18px;
  border-top: 1px solid rgba(245,243,238,0.1);
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(245,243,238,0.4);
  letter-spacing: 0.06em;
}
.feed-foot .total { color: var(--bg); }
.feed-foot .total .num { color: var(--red); font-weight: 500; }

/* ============================================================
   SECTION 2 — BOTTOM BAR
   ============================================================ */
.bottom-bar {
  background: var(--ink);
  color: rgba(245,243,238,0.45);
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bottom-bar .live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px;
  animation: blink-soft 1.6s ease-in-out infinite;
}

/* ============================================================
   SECTION 3 — MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--ink);
  color: var(--bg);
  padding: 140px 48px 120px;
  text-align: center;
}
.manifesto .eyebrow { color: rgba(245,243,238,0.4); margin-bottom: 48px; }
.manifesto-h {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(42px, 6.5vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--bg);
}
.manifesto-h .line-red { color: var(--red); display: block; }
.manifesto-h .line { display: block; }

.manifesto-stats {
  margin-top: 96px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(245,243,238,0.1);
  border-bottom: 1px solid rgba(245,243,238,0.1);
}
.mstat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(245,243,238,0.08);
}
.mstat:last-child { border-right: none; }
.mstat .num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--red);
  margin-bottom: 14px;
}
.mstat .num .pre, .mstat .num .suf {
  font-size: 0.55em;
  color: rgba(216,63,63,0.7);
}
.mstat .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.5);
}

/* ============================================================
   SECTION 4 — HOW IT WORKS
   ============================================================ */
.how {
  background: var(--bg);
  padding: 160px 0 120px;
}
.how-head { margin-bottom: 100px; max-width: 760px; }
.how-head .eyebrow { display: block; margin-bottom: 16px; }
.how-head h2 { margin-bottom: 0; }

}
.how-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: flex-start;
}

/* Sticky phone */
.phone-sticky {
  position: sticky;
  top: 120px;
  display: flex; justify-content: center;
}
.phone-svg {
  width: 100%;
  max-width: 360px;
  position: relative;
}
.phone-svg svg { width: 100%; height: auto; }
.phone-svg .step-marker {
  stroke: var(--bd-md);
  stroke-width: 2;
  fill: none;
  transition: stroke .3s ease, stroke-width .3s ease;
}
.phone-svg .step-marker.active {
  stroke: var(--red);
  stroke-width: 3;
}
.phone-svg .step-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  fill: var(--text-3);
  letter-spacing: 0.1em;
  transition: fill .3s;
}
.phone-svg .step-label.active { fill: var(--ink); }

.how-steps {
  display: flex; flex-direction: column;
}
.how-step {
  min-height: 60vh;
  padding: 60px 0;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  border-bottom: 1px solid var(--bd);
}
.how-step:last-child { border-bottom: none; }
.how-step .big-num {
  position: absolute;
  top: -10px; right: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(120px, 18vw, 240px);
  line-height: 1;
  color: var(--red);
  opacity: 0.12;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.how-step .step-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.how-step h3 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.how-step p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.how-step .step-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  border-top: 1px solid var(--bd);
  padding-top: 14px;
  display: inline-block;
  position: relative; z-index: 1;
}
.how-step .step-mono strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   SECTION 5 — INDUSTRIES (editorial grid)
   ============================================================ */
.sectors {
  background: var(--surface);
  padding: 140px 0;
}
.sectors-head { margin-bottom: 80px; max-width: 760px; }
.sectors-head .eyebrow { display: block; margin-bottom: 16px; }

.sectors-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 16px;
  margin-bottom: 16px;
}
.sectors-grid-small {
  display: flex; flex-direction: column; gap: 16px;
}
.sectors-row3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sector-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  padding: 48px;
  position: relative;
  transition: border-color .25s, transform .25s;
  display: flex; flex-direction: column;
}
.sector-card:hover { border-color: var(--red); transform: translateY(-4px); }
.sector-card.lg { min-height: 460px; }
.sector-card.md { padding: 32px; flex: 1; min-height: 220px; }
.sector-card.sm { padding: 32px; min-height: 280px; }

.sector-card .sector-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}
.sector-card .stat {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--red);
  margin-bottom: 8px;
}
.sector-card.md .stat, .sector-card.sm .stat {
  font-size: clamp(48px, 5.5vw, 72px);
}
.sector-card .stat .unit { font-size: 0.5em; color: rgba(216,63,63,0.7); }
.sector-card .stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}
.sector-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  margin-bottom: 12px;
}
.sector-card.lg h3 { font-size: clamp(28px, 2.6vw, 38px); }
.sector-card p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.sector-card.lg p { font-size: 16px; max-width: 460px; }

.sector-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s;
  align-self: flex-start;
}
.sector-link:hover { border-color: var(--red); }
.sector-link .arr { transition: transform .2s; }
.sector-link:hover .arr { transform: translateX(3px); }

/* ============================================================
   SECTION 6 — LIVE DEMO
   ============================================================ */
.live-demo {
  background: var(--ink);
  color: var(--bg);
  padding: 140px 0;
}
.live-demo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ld-left .eyebrow { color: rgba(245,243,238,0.4); display: block; margin-bottom: 18px; }
.ld-left h2 {
  color: var(--bg);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.ld-left h2 .line { display: block; }
.ld-left h2 .red { color: var(--red); }
.ld-left > p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245,243,238,0.55);
  max-width: 420px;
  margin-bottom: 40px;
}
.ld-left .phone-num {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,243,238,0.1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  color: rgba(245,243,238,0.45);
  letter-spacing: 0.02em;
  display: block;
}
.ld-left .phone-num-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.3);
  display: block;
  margin-bottom: 8px;
}

/* Live call panel */
.ld-panel {
  border: 1px solid rgba(245,243,238,0.12);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.ld-panel-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245,243,238,0.08);
}
.ld-panel-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: flex; align-items: center; gap: 8px;
}
.ld-panel-status .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink-soft 1.6s ease-in-out infinite;
}
.ld-panel-timer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: rgba(245,243,238,0.6);
  letter-spacing: 0.05em;
}

.caller {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  background: rgba(245,243,238,0.03);
  border: 1px solid rgba(245,243,238,0.06);
}
.caller-av {
  width: 38px; height: 38px;
  background: var(--red);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.caller-meta { display: flex; flex-direction: column; gap: 3px; }
.caller-num { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--bg); }
.caller-loc { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: rgba(245,243,238,0.4); letter-spacing: 0.06em; text-transform: uppercase; }

.ascii-wave {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  color: rgba(216,63,63,0.7);
  letter-spacing: -1px;
  padding: 12px 8px;
  background: rgba(245,243,238,0.02);
  border: 1px solid rgba(245,243,238,0.05);
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.transcript {
  display: flex; flex-direction: column; gap: 8px;
  max-height: 240px;
  overflow: hidden;
}
.msg {
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  border: 1px solid;
}
.msg.ai {
  background: var(--red-dim);
  border-color: var(--red-border);
  color: var(--bg);
}
.msg.usr {
  background: rgba(245,243,238,0.04);
  border-color: rgba(245,243,238,0.1);
  color: rgba(245,243,238,0.75);
  align-self: flex-end;
  max-width: 90%;
}
.msg-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  display: block;
  margin-bottom: 5px;
}
.cursor-blink { display: inline-block; width: 6px; height: 12px; background: var(--red); vertical-align: text-bottom; margin-left: 2px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================
   SECTION 7 — PLATFORM TABLE
   ============================================================ */
.platform {
  background: var(--bg);
  padding: 160px 0;
}
.platform-head { margin-bottom: 80px; max-width: 760px; }
.platform-head .eyebrow { display: block; margin-bottom: 16px; }

.platform-grid {
  display: grid; grid-template-columns: 6fr 6fr;
  gap: 64px;
}

/* Left: feature table */
.feat-table { display: flex; flex-direction: column; }
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 22px 0;
  border-top: 1px solid var(--bd);
  align-items: center;
}
.feat-row:last-child { border-bottom: 1px solid var(--bd); }
.feat-row .k {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.feat-row .v {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  text-align: right;
  letter-spacing: -0.005em;
}
.feat-row .v .check { color: var(--red); margin-right: 6px; }

/* Right: 2x2 mini grid */
.plat-mini {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.plat-cell {
  background: var(--bg);
  border: 1px solid var(--bd);
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 240px;
  transition: border-color .25s;
}
.plat-cell:hover { border-color: var(--ink); }
.plat-cell .cell-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}

/* SLA ring */
.sla-ring {
  display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1;
  position: relative;
}
.sla-ring svg { width: 140px; height: 140px; transform: rotate(-90deg); }
.sla-ring .sla-text {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center;
}
.sla-ring .sla-text .num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.04em;
  color: var(--red);
  line-height: 1;
  display: block;
}
.sla-ring .sla-text .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
  display: block;
}

/* Integrations grid */
.integ-mini {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  flex: 1;
  align-content: center;
}
.integ-mini span {
  border: 1px solid var(--bd);
  padding: 10px 8px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.05em;
  transition: border-color .2s, color .2s;
}
.integ-mini span:hover { border-color: var(--ink); color: var(--ink); }
.integ-mini span.more {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--text-3);
  font-weight: 500;
}

/* Pipeline */
.pipe-mini { flex: 1; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.pipe-step {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--bd);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
}
.pipe-step:last-child { border-bottom: none; }
.pipe-step .name { color: var(--ink); font-weight: 500; letter-spacing: 0.04em; }
.pipe-step .ms { color: var(--red); }
.pipe-step .ms.green { color: var(--green); }

/* Compliance */
.comp-mini {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
  align-content: center;
}
.comp-mini span {
  border: 1px solid var(--bd);
  padding: 12px 10px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* ============================================================
   SECTION 8 — PRICING (editorial table)
   ============================================================ */
.pricing {
  background: var(--surface);
  padding: 160px 0;
}
.pricing-head { margin-bottom: 56px; max-width: 760px; }
.pricing-head .eyebrow { display: block; margin-bottom: 16px; }

.price-toggle {
  display: inline-flex;
  border: 1px solid var(--bd-md);
  margin-bottom: 64px;
}
.price-toggle button {
  padding: 12px 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: background .2s, color .2s;
  border-right: 1px solid var(--bd-md);
}
.price-toggle button:last-child { border-right: none; }
.price-toggle button.active { background: var(--ink); color: var(--bg); }
.price-toggle .save {
  margin-left: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.05em;
}
.price-toggle button.active .save { color: rgba(245,243,238,0.6); }

.price-table {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.pt-cell {
  padding: 22px 24px;
  border-top: 1px solid var(--bd);
  display: flex; align-items: center;
}
.pt-cell.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.pt-cell.val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--ink);
  justify-content: center;
  text-align: center;
}
.pt-cell.val.dim { color: var(--text-3); }
.pt-cell.featured { background: var(--bg); }

.pt-row-head .pt-cell { border-top: none; padding-top: 0; }
.pt-row-head .pt-cell.val {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: none;
}
.pt-row-head .pt-cell.val.featured {
  position: relative;
}
.pt-row-head .pt-cell.val.featured::after {
  content: '★';
  color: var(--red);
  margin-left: 8px;
  font-size: 18px;
}

.pt-row-price .pt-cell { padding: 28px 24px; }
.pt-row-price .pt-cell.val {
  display: flex; flex-direction: column; gap: 4px; justify-content: center;
}
.pt-row-price .pt-cell.val .amount {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 64px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 0.95;
}
.pt-row-price .pt-cell.val .per {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pt-row-price .pt-cell.featured .amount { color: var(--red); }

.pt-row-cta .pt-cell { border-top: 2px solid var(--ink); padding-top: 28px; padding-bottom: 0; }
.pt-row-cta .pt-cell.val .btn { width: 100%; justify-content: center; }
.pt-row-cta .pt-cell.label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

.pricing-note {
  margin-top: 28px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-3);
}
.pricing-note strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   SECTION 9 — QUOTES + CTA
   ============================================================ */
.quotes { background: var(--bg); padding: 120px 0 80px; }
.quotes-head { margin-bottom: 64px; max-width: 760px; }
.quotes-head .eyebrow { display: block; margin-bottom: 14px; }

.big-quote {
  position: relative;
  padding: 56px 0 80px;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.big-quote::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: -20px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 240px;
  line-height: 1;
  color: var(--red);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}
.big-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 1000px;
  position: relative; z-index: 1;
  margin-bottom: 28px;
}
.big-quote cite {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-style: normal;
  display: block;
}

.small-quotes {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.small-quote {
  border-left: 3px solid var(--red);
  padding-left: 24px;
}
.small-quote p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 18px;
}
.small-quote cite {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-style: normal;
}

.cta-strip {
  background: var(--ink);
  color: var(--bg);
  padding: 120px 48px;
}
.cta-grid {
  max-width: var(--mw); margin: 0 auto;
  display: grid; grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
}
.cta-left h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--bg);
  margin-bottom: 24px;
}
.cta-left h2 .line { display: block; }
.cta-left p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245,243,238,0.55);
  max-width: 480px;
}
.cta-right {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.cta-right .btn { min-width: 280px; justify-content: center; }
.cta-right .cta-phone {
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  color: rgba(245,243,238,0.45);
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 96px 0 36px;
  border-top: 1px solid rgba(245,243,238,0.06);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245,243,238,0.08);
}
.foot-brand .logo { font-size: 24px; color: var(--bg); }
.foot-brand .logo .dot { color: var(--red); }
.foot-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,243,238,0.45);
  max-width: 280px;
  margin: 18px 0 28px;
}
.newsletter-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.4);
  display: block;
  margin-bottom: 12px;
}
.newsletter {
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(245,243,238,0.2);
  padding-bottom: 6px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 8px 0;
}
.newsletter input::placeholder { color: rgba(245,243,238,0.3); }
.newsletter button {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--red);
  padding: 0 6px;
  line-height: 1;
  transition: transform .2s;
}
.newsletter button:hover { transform: translateX(3px); }

.foot-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.35);
  margin-bottom: 22px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 12px; }
.foot-col a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(245,243,238,0.55);
  transition: color .2s;
}
.foot-col a:hover { color: var(--bg); }

.foot-bottom {
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.foot-bottom .left {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: rgba(245,243,238,0.3);
  letter-spacing: 0.06em;
}
.socials { display: flex; gap: 8px; }
.social-btn {
  width: 32px; height: 32px;
  border: 1px solid rgba(245,243,238,0.12);
  display: grid; place-items: center;
  color: rgba(245,243,238,0.55);
  transition: color .2s, border-color .2s;
}
.social-btn:hover { color: var(--bg); border-color: rgba(245,243,238,0.4); }
.social-btn svg { width: 13px; height: 13px; }

/* ============================================================
   REVEAL (clip-path)
   ============================================================ */
.rv { clip-path: inset(0 0 100% 0); transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1); }
.rv.in { clip-path: inset(0 0 0 0); }
.rv.d1 { transition-delay: 0.05s; }
.rv.d2 { transition-delay: 0.1s; }
.rv.d3 { transition-delay: 0.15s; }
.rv.d4 { transition-delay: 0.2s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .wrap { padding: 0 32px; }
  .hero { height: auto; min-height: 100vh; }
  .hero-grid { grid-template-columns: 1fr; }
  .feed { min-height: 480px; }
  .how-grid { grid-template-columns: 1fr; gap: 56px; }
  .phone-sticky { position: static; }
  .live-demo-grid { grid-template-columns: 1fr; gap: 56px; }
  .platform-grid { grid-template-columns: 1fr; gap: 56px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-right { align-items: flex-start; }
  .sectors-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  body { cursor: auto; }
  button { cursor: pointer; }
  #cd { display: none; }
  .nav-links, .nav-login { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .manifesto-stats { grid-template-columns: 1fr 1fr; }
  .mstat:nth-child(2) { border-right: none; }
  .mstat:nth-child(1), .mstat:nth-child(2) { border-bottom: 1px solid rgba(245,243,238,0.08); }
  .sectors-row3 { grid-template-columns: 1fr; }
  .plat-mini { grid-template-columns: 1fr; }
  .price-table { grid-template-columns: 1fr; }
  .price-table .pt-cell { padding: 14px 20px; justify-content: space-between !important; text-align: left !important; border-top: 1px solid var(--bd); }
  .price-table .pt-cell.label::after { content: attr(data-col); margin-left: auto; }
  .pt-row-head, .pt-row-price, .pt-row-cta { display: contents; }
  .small-quotes { grid-template-columns: 1fr; }
  .bottom-bar { padding: 14px 32px; flex-direction: column; gap: 8px; font-size: 11px; }
  .cta-strip, .manifesto { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 24px; }
  .hero-meta { flex-direction: column; gap: 18px; padding-top: 40px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
}


/* ============================================================
   INNER HERO (used on every non-homepage page)
   ============================================================ */
.hero-inner {
  padding: calc(var(--nav-h) + 96px) 0 96px;
  background: var(--bg);
  border-bottom: 1px solid var(--bd);
}
.hero-inner .wrap { display: grid; grid-template-columns: 1fr; gap: 0; }
.hi-content { max-width: 980px; }
.hi-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 20px 0 28px;
}
.hi-h1 .red-word { color: var(--red); font-style: italic; }
.hi-sub { font-size: 18px; color: var(--text-2); max-width: 620px; line-height: 1.55; margin-bottom: 40px; }
.hi-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Section head — used by inner pages */
.section-head { margin-bottom: 56px; max-width: 800px; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 18px; color: var(--text-2); max-width: 620px; line-height: 1.55; }

/* Generic page section spacing */
.page-section { padding: 120px 0; }
.page-section.surface { background: var(--surface); }
.page-section.ink { background: var(--ink); color: var(--bg); }
.page-section.ink h2 { color: var(--bg); }
.page-section.ink .eyebrow { color: rgba(245,243,238,0.55); }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { border-top: 1px solid var(--bd-md); max-width: 920px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--bd-md); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: clamp(20px, 2vw, 26px);
  color: var(--ink); line-height: 1.2; letter-spacing: -0.01em;
  text-align: left;
}
.faq-q .toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--bd-md);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  flex-shrink: 0; transition: background .2s, color .2s, border-color .2s;
}
.faq-item.open .faq-q .toggle { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.65,0,.35,1); }
.faq-a-inner { padding: 0 0 28px; color: var(--text-2); font-size: 16.5px; line-height: 1.65; max-width: 720px; }
.faq-item.open .faq-a { max-height: 600px; }

/* ============================================================
   FORMS (underline-only inputs)
   ============================================================ */
.form-grid { display: grid; gap: 28px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-2);
}
.field input, .field textarea, .field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--bd-md);
  background: transparent;
  padding: 12px 0;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.field select { appearance: none; padding-right: 28px; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%230A0908' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat; background-position: right 4px center; background-size: 12px;
}

/* Info panel (ink bg, used right column of contact/demo) */
.info-panel { background: var(--ink); color: var(--bg); padding: 56px 48px; display: flex; flex-direction: column; gap: 40px; }
.info-panel .ip-block { border-top: 1px solid rgba(245,243,238,0.15); padding-top: 24px; }
.info-panel .ip-block:first-child { border-top: none; padding-top: 0; }
.info-panel .ip-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,243,238,0.55); margin-bottom: 10px; display: block; }
.info-panel .ip-h {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(32px, 4vw, 56px); line-height: 0.96; letter-spacing: -0.02em;
  color: var(--bg);
}
.info-panel .ip-h .red { color: var(--red); }
.info-panel .ip-line { display: block; margin-top: 8px; color: rgba(245,243,238,0.85); font-size: 16px; }
.info-panel a { color: var(--bg); border-bottom: 1px solid rgba(245,243,238,0.3); }
.info-panel a:hover { border-color: var(--red); color: var(--red); }

/* Two-col form layout */
.form-layout {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  border: 1px solid var(--bd-md);
}
.form-layout .form-side { padding: 56px 48px; }
@media (max-width: 1000px) {
  .form-layout { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* Sector grid simple (3 col, used on solutions/use-cases pages) */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--bd); border-left: 1px solid var(--bd); }
.cards-3 > * { border-right: 1px solid var(--bd); border-bottom: 1px solid var(--bd); padding: 48px 40px; background: var(--bg); position: relative; }
.cards-3 > *:hover { background: var(--surface); }
@media (max-width: 1000px) { .cards-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .cards-3 { grid-template-columns: 1fr; } }

.cards-3 .card-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; color: var(--text-3); }
.cards-3 .card-h { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 26px; line-height: 1.05; letter-spacing: -0.015em; margin: 14px 0 12px; color: var(--ink); }
.cards-3 .card-p { color: var(--text-2); font-size: 15.5px; line-height: 1.6; }
.cards-3 .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-top: 22px; color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.cards-3 .card-link:hover { color: var(--red); border-color: var(--red); }

/* Two-col platform-style table reuse */
.platform-only .platform-grid { grid-template-columns: 1fr 1fr; }

/* Timeline (used by release-notes/changelog) */
.timeline { max-width: 920px; margin: 0 auto; border-left: 1px solid var(--bd-md); padding-left: 0; }
.tl-item { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 40px 0 40px 32px; border-bottom: 1px solid var(--bd); position: relative; }
.tl-item::before { content: ''; position: absolute; left: -5px; top: 52px; width: 9px; height: 9px; background: var(--red); }
.tl-item:last-child { border-bottom: none; }
.tl-meta { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.14em; color: var(--text-3); text-transform: uppercase; padding-top: 8px; }
.tl-meta .ver { display: block; color: var(--ink); font-size: 22px; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; letter-spacing: -0.01em; text-transform: none; margin-top: 4px; }
.tl-body h3 { font-size: 24px; margin-bottom: 12px; }
.tl-body p { color: var(--text-2); font-size: 16px; line-height: 1.6; }
@media (max-width: 800px) { .tl-item { grid-template-columns: 1fr; gap: 16px; } }

/* PW monogram block */
.pw-block { background: var(--ink); color: var(--bg); padding: 96px 64px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.pw-mono { font-family: 'Playfair Display', serif; font-weight: 900; font-style: italic; font-size: clamp(120px, 18vw, 240px); line-height: 0.85; color: var(--red); letter-spacing: -0.04em; }
.pw-body h3 { color: var(--bg); margin-bottom: 18px; font-size: clamp(28px, 3vw, 44px); }
.pw-body p { color: rgba(245,243,238,0.7); font-size: 17px; line-height: 1.6; margin-bottom: 14px; max-width: 540px; }
.pw-body .ip-line { color: rgba(245,243,238,0.9); display: block; margin: 4px 0; font-size: 15px; }
@media (max-width: 900px) { .pw-block { grid-template-columns: 1fr; padding: 64px 32px; gap: 32px; } }

/* Long-form legal */
.legal-prose { max-width: 760px; margin: 0 auto; }
.legal-prose h2 { font-size: clamp(28px, 3.4vw, 44px); margin: 48px 0 18px; }
.legal-prose h3 { font-size: 22px; margin: 32px 0 12px; }
.legal-prose p, .legal-prose li { color: var(--text-2); font-size: 16.5px; line-height: 1.75; margin-bottom: 14px; }
.legal-prose ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal-prose strong { color: var(--ink); font-weight: 500; }
.legal-prose .updated { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.14em; color: var(--text-3); text-transform: uppercase; margin-top: 12px; }

/* Active nav link */
.nav-links a.active { color: var(--ink); position: relative; }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px; background: var(--red); }


/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--bg);
  padding: calc(var(--nav-h) + 22px) 0 18px;
  border-bottom: 1px solid var(--bd);
  position: relative;
  z-index: 1;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-3);
  text-transform: uppercase;
  line-height: 1.6;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li::after {
  content: '/';
  color: var(--bd-md);
  padding: 0 14px;
  font-weight: 500;
}
.breadcrumb li:last-child::after { content: none; }
.breadcrumb a {
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.breadcrumb a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
.breadcrumb li[aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}
/* Reduce hero top padding when breadcrumb precedes it */
.breadcrumb + main .hero-inner,
.breadcrumb + main > section:first-child.hero-inner {
  padding-top: 56px;
}
.breadcrumb + main .hero-inner .hi-h1 { margin-top: 0; }
@media (max-width: 700px) {
  .breadcrumb { padding: calc(var(--nav-h) + 16px) 0 14px; }
  .breadcrumb ol { font-size: 10px; letter-spacing: 0.14em; }
  .breadcrumb li::after { padding: 0 8px; }
}
.foot-brand p.foot-contact{margin:-4px 0 26px;line-height:2.1;}
.foot-contact a{font-family:'JetBrains Mono',monospace;font-size:13px;letter-spacing:0.04em;color:rgba(245,243,238,0.55);transition:color .2s;}
.foot-contact a:hover{color:var(--bg);}


/* ===== i18n dil switch (EN / TR) ===== */
.lang-switch{display:inline-flex;align-items:center;gap:8px}
.lang-opt{font-family:'Barlow Condensed',sans-serif;font-weight:600;font-size:13px;letter-spacing:.1em;text-transform:uppercase;color:var(--text-2);background:none;border:0;padding:4px 0;cursor:pointer;position:relative;transition:color .2s;line-height:1}
.lang-opt:hover{color:var(--ink)}
.lang-opt.active{color:var(--ink)}
.lang-opt.active::after{content:'';position:absolute;left:0;right:0;bottom:-4px;height:2px;background:var(--red)}
.lang-sep{color:var(--bd-md);font-size:12px;font-family:'Barlow Condensed',sans-serif;user-select:none}
.tr-text{display:none}
