/* Idan Ron — editorial-light system */
:root {
  --paper: #f8f5ef;
  --paper-2: #f2eee5;
  --surface: #ffffff;
  --ink: #1b1a16;
  --muted: #6f6857;
  --line: #e5dfd2;
  --line-strong: #d9d2c2;
  --accent: #1f5c3d;
  --accent-hover: #173f2b;
  --accent-soft: #e8efe9;
  --negative: #bf5a45;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Instrument Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ---------- Mono label utility ---------- */
.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.mono .idx { color: var(--accent); }

/* ---------- Nav ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 239, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo:hover { color: var(--ink); }
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  font-family: var(--sans);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn-primary { background: var(--accent); color: #f4f8f4; }
.btn-primary:hover { background: var(--accent-hover); color: #f4f8f4; transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 0.86rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 88px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(circle at 2% 0%, #000 0%, transparent 42%);
  mask-image: radial-gradient(circle at 2% 0%, #000 0%, transparent 42%);
  opacity: 0.4;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 640px; }
.hero-media { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 60px rgba(27, 26, 22, 0.12);
}

/* Hero engine animation */
.engine-anim { width: 100%; max-width: 460px; aspect-ratio: 1; }
.engine-anim svg { width: 100%; height: 100%; overflow: visible; }
.ea-ring { fill: none; stroke: var(--line-strong); stroke-width: 1; }
.ea-ring.faint { stroke: var(--line); }
.ea-spoke { stroke: var(--line); stroke-width: 1; }
.ea-sweep {
  fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 140 645; opacity: 0.9;
  transform-box: fill-box; transform-origin: center;
  animation: eaSweep 6s linear infinite;
}
.ea-node { fill: var(--surface); stroke: var(--accent); stroke-width: 1.6; transform-box: fill-box; transform-origin: center; }
.ea-node.n1 { animation: eaPulse 6s ease-in-out infinite; }
.ea-node.n2 { animation: eaPulse 6s ease-in-out 1.5s infinite; }
.ea-node.n3 { animation: eaPulse 6s ease-in-out 3s infinite; }
.ea-node.n4 { animation: eaPulse 6s ease-in-out 4.5s infinite; }
.ea-core { fill: var(--surface); stroke: var(--line-strong); stroke-width: 1; }
.ea-core-dot { fill: var(--accent); transform-box: fill-box; transform-origin: center; animation: eaCore 3s ease-in-out infinite; }
.ea-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; fill: var(--muted); }
@keyframes eaSweep { to { transform: rotate(360deg); } }
@keyframes eaPulse { 0%, 100% { opacity: 0.4; transform: scale(0.82); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes eaCore { 0%, 100% { transform: scale(0.8); opacity: 0.7; } 50% { transform: scale(1.15); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .ea-sweep, .ea-node, .ea-core-dot { animation: none; }
  .wire-path, .hd-rings, .tl-step:not(:last-child)::after, .orbit-ring { animation: none; }
  .bm-sweep, .bm-orbit, .bm-hub-dot, .bm-pulse { animation: none; }
}

.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 16ch;
  text-wrap: pretty;
}
h1 .accent, h1 em { font-style: italic; color: var(--accent); }
.hero p.lead { margin-top: 28px; font-size: 1.2rem; color: var(--muted); max-width: 56ch; text-wrap: pretty; }
.hero-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Logo marquee ---------- */
.logobar {
  padding: 44px 0 48px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}
.logobar-label { text-align: center; margin-bottom: 26px; }
.logobar-viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.logobar-track {
  display: flex;
  width: max-content;
  animation: logoScroll 48s linear infinite;
}
.logobar-viewport:hover .logobar-track { animation-play-state: paused; }
.logobar-set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.logobar-set img {
  height: 46px;
  width: auto;
  margin: 0 34px;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.logobar-set img:hover { opacity: 0.9; }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 640px) {
  .logobar { padding: 34px 0 38px; }
  .logobar-set img { height: 34px; margin: 0 22px; }
  .logobar-track { animation-duration: 34s; }
}
@media (prefers-reduced-motion: reduce) {
  .logobar-track { animation: none; }
  .logobar-viewport { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .logobar-set[aria-hidden="true"] { display: none; }
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
section.alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 62ch; }
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-top: 14px;
  text-wrap: pretty;
}
.section-sub { margin-top: 16px; color: var(--muted); max-width: 56ch; font-size: 1.08rem; text-wrap: pretty; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; margin-top: 48px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 1px 2px rgba(27, 26, 22, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(27, 26, 22, 0.07); border-color: var(--line-strong); }
.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card .icon svg { width: 22px; height: 22px; display: block; }
.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Hero system diagram ---------- */
.hd {
  display: grid;
  grid-template-columns: 1fr 44px auto 44px 1fr;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.hd-col { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 2; }
.hd-card {
  height: 76px; position: relative;
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 0 18px;
  box-shadow: 0 10px 26px rgba(27, 26, 22, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hd-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(27, 26, 22, 0.10); }
.hd-ico { width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--ink); }
.hd-ico svg { width: 25px; height: 25px; }
.hd-txt { min-width: 0; }
.hd-txt b { display: block; font-weight: 600; font-size: 0.92rem; color: var(--ink); line-height: 1.12; white-space: nowrap; }
.hd-txt em { display: block; font-style: normal; font-size: 0.78rem; color: var(--muted); margin-top: 3px; }

/* avatar cluster on Sales Team */
.hd-avatars { position: absolute; right: -6px; bottom: -8px; display: flex; background: var(--surface); border-radius: 22px; padding: 3px; box-shadow: 0 5px 14px rgba(27, 26, 22, 0.14); }
.hd-avatars .av { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--surface); }
.hd-avatars .av.a1 { background: linear-gradient(135deg, #d8c3a1, #9c7b52); }
.hd-avatars .av.a2 { background: linear-gradient(135deg, #a8c4b0, #4f7a5f); margin-left: -8px; }

/* dashed converging connectors */
.hd-wire { align-self: stretch; line-height: 0; position: relative; z-index: 1; }
.hd-wire svg { width: 100%; height: 100%; display: block; overflow: visible; }
.wire-path { fill: none; stroke: var(--accent); stroke-width: 1.4; stroke-dasharray: 2.5 7; opacity: 0.55; animation: sysFlow 1.3s linear infinite; }
.wire-dot { fill: var(--accent); }
.wire-junction { fill: var(--accent); }
@keyframes sysFlow { to { stroke-dashoffset: -9.5; } }

/* brain core + rings */
.hd-brain { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.hd-core-wrap { position: relative; width: 160px; height: 160px; display: flex; align-items: center; justify-content: center; }
.hd-rings { position: absolute; left: 50%; top: 50%; width: 264px; height: 264px; z-index: 0; overflow: visible; animation: hdSpin 60s linear infinite; }
.hd-ring { fill: none; stroke: var(--line-strong); stroke-width: 1; opacity: 0.65; }
.hd-dot { fill: var(--accent); }
.hd-topdot { fill: none; stroke: var(--accent); stroke-width: 1.4; }
@keyframes hdSpin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.hd-core {
  position: relative; z-index: 1;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--accent); color: #eef5ef;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 20px 50px rgba(31, 92, 61, 0.32), inset 0 2px 14px rgba(255, 255, 255, 0.14);
}
.hd-brainico { width: 38px; height: 38px; margin-bottom: 8px; }
.hd-kicker { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.22em; font-weight: 500; }
.hd-label { font-size: 0.85rem; margin-top: 4px; opacity: 0.92; }
.hd-verbs {
  margin: 28px auto 0; padding: 11px 26px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 30px;
  box-shadow: 0 6px 18px rgba(27, 26, 22, 0.06);
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.2em; color: var(--accent);
}

/* ---------- Brain model (People / Brain / Agents, §01) ---------- */
.brainmodel { display: grid; grid-template-columns: 1fr 74px 1fr 74px 1fr; align-items: stretch; gap: 0; margin-top: 48px; }
.bm-node { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 26px; box-shadow: 0 1px 2px rgba(27, 26, 22, 0.03); }
.bm-node.center { background: var(--accent-soft); border-color: var(--line-strong); box-shadow: 0 12px 34px rgba(31, 92, 61, 0.10); }
.bm-node .mono { display: block; margin-bottom: 8px; }
.bm-node.center .mono { color: var(--accent); }
.bm-node h3 { font-family: var(--serif); font-weight: 500; font-size: 1.24rem; letter-spacing: -0.01em; margin-bottom: 8px; }
.bm-node p { color: var(--muted); font-size: 0.93rem; }
.bm-ico { width: 44px; height: 44px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.bm-ico svg { width: 22px; height: 22px; display: block; }
.bm-core { width: 78px; height: 78px; margin-bottom: 16px; }
.bm-core svg { width: 100%; height: 100%; overflow: visible; }
.bm-ring { fill: none; stroke: var(--line-strong); stroke-width: 1.4; }
.bm-ring.r2 { opacity: 0.6; }
.bm-sweep { fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 66 260; transform-box: fill-box; transform-origin: center; animation: bmSweep 5s linear infinite; }
.bm-orbit { fill: var(--surface); stroke: var(--accent); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; }
.bm-orbit.o1 { animation: bmPulse 4.4s ease-in-out infinite; }
.bm-orbit.o2 { animation: bmPulse 4.4s ease-in-out 1.1s infinite; }
.bm-orbit.o3 { animation: bmPulse 4.4s ease-in-out 2.2s infinite; }
.bm-orbit.o4 { animation: bmPulse 4.4s ease-in-out 3.3s infinite; }
.bm-hub { fill: var(--surface); stroke: var(--accent); stroke-width: 1.5; }
.bm-hub-dot { fill: var(--accent); transform-box: fill-box; transform-origin: center; animation: bmCore 2.6s ease-in-out infinite; }
@keyframes bmSweep { to { transform: rotate(360deg); } }
@keyframes bmPulse { 0%, 100% { opacity: 0.35; transform: scale(0.7); } 50% { opacity: 1; transform: scale(1.1); } }
@keyframes bmCore { 0%, 100% { transform: scale(0.8); opacity: 0.75; } 50% { transform: scale(1.18); opacity: 1; } }
.bm-flow { display: flex; align-items: center; justify-content: center; }
.bm-flow svg { width: 100%; height: 24px; overflow: visible; }
.bm-track { stroke: var(--line-strong); stroke-width: 1.4; }
.bm-pulse { stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-dasharray: 2.5 9; animation: bmFlow 1.1s linear infinite; }
@keyframes bmFlow { to { stroke-dashoffset: -11.5; } }

/* ---------- Floating hero cards ---------- */
.float-card {
  position: absolute;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 15px;
  box-shadow: 0 14px 34px rgba(27, 26, 22, 0.12);
  width: 174px;
}
.fc-1 { top: 2%; right: 2%; animation: floaty 5s ease-in-out infinite; }
.fc-2 { bottom: 4%; left: 0; animation: floaty 5.6s ease-in-out 0.8s infinite; }
.fc-head { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.fc-check { width: 17px; height: 17px; border-radius: 50%; background: var(--accent); color: #f4f8f4; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-check svg { width: 11px; height: 11px; }
.fc-num { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; color: var(--ink); margin-top: 5px; line-height: 1; }
.fc-num span { font-size: 0.86rem; color: var(--accent); margin-left: 3px; }
.fc-sub { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-top: 7px; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Mini UI cards (Results) ---------- */
.ui-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.ui-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 22px; box-shadow: 0 1px 2px rgba(27, 26, 22, 0.03); }
.ui-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.ui-title { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; color: var(--ink); }
.ui-pill { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.03em; color: var(--muted); background: var(--paper-2); border: 1px solid var(--line); border-radius: 20px; padding: 3px 10px; }
.ui-pill.new { color: var(--accent); background: var(--accent-soft); border-color: var(--accent-soft); }
.ui-pill.amt { color: var(--ink); font-weight: 500; }
.ui-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; font-size: 0.9rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.ui-row:last-of-type { border-bottom: none; }
.ui-row b { color: var(--ink); font-weight: 600; }
.ui-row b.hot { color: var(--accent); }
.ui-row b.stars { color: var(--accent); letter-spacing: 1px; font-weight: 400; }
.ui-row.col { flex-wrap: wrap; gap: 6px 8px; }
.ui-row.col > span { flex: 1; }
.ui-bar { flex-basis: 100%; order: 3; height: 6px; border-radius: 4px; background: var(--paper-2); overflow: hidden; }
.ui-bar i { display: block; height: 100%; background: var(--accent); border-radius: 4px; }
.ui-action { margin-top: 16px; text-align: center; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; color: #f4f8f4; background: var(--accent); border-radius: 8px; padding: 10px; }
.ui-action.resolved { color: var(--accent); background: var(--accent-soft); }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; margin-top: 48px; }
.ba-card { border-radius: 14px; padding: 30px; border: 1px solid var(--line); }
.ba-card.before { background: var(--surface); }
.ba-card.after { background: var(--accent-soft); border-color: var(--line-strong); }
.ba-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.ba-card.after .ba-label { color: var(--accent); }
.ba-list { list-style: none; }
.ba-list li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; font-size: 1rem; color: var(--ink); }
.ba-card.before .ba-list li { color: var(--muted); }
.ba-mark { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ba-mark svg { width: 13px; height: 13px; }
.ba-mark.x { background: rgba(191, 90, 69, 0.12); color: var(--negative); }
.ba-mark.c { background: var(--accent); color: #f4f8f4; }
.ba-arrow { color: var(--line-strong); display: flex; }
.ba-arrow svg { width: 30px; height: 30px; }

/* ---------- Timeline (How It Works) ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.tl-step { position: relative; padding: 0 16px; text-align: center; }
.tl-ico {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line-strong);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; position: relative; z-index: 1;
  box-shadow: 0 4px 14px rgba(27, 26, 22, 0.05);
}
.tl-ico svg { width: 28px; height: 28px; }
.tl-step:not(:last-child)::after {
  content: ""; position: absolute; top: 32px;
  left: calc(50% + 42px); right: calc(-50% + 42px); height: 2px;
  background-image: linear-gradient(90deg, var(--line-strong) 0 5px, transparent 5px 11px);
  background-size: 11px 2px;
  animation: tlDash 1.4s linear infinite;
}
@keyframes tlDash { to { background-position: 11px 0; } }
.tl-num { font-family: var(--mono); font-size: 0.8rem; font-weight: 500; color: var(--accent); }
.tl-step h4 { font-family: var(--serif); font-weight: 500; font-size: 1.16rem; margin: 6px 0 8px; letter-spacing: -0.01em; }
.tl-step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Stack band (tool orbit) ---------- */
.stack-head { text-align: center; margin: 0 auto; }
.stack-head .mono { display: block; }
.stack-head h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -0.01em; margin-top: 10px; }
.orbit { position: relative; height: 420px; margin: 44px auto 0; max-width: 460px; }
.orbit-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 134px; height: 134px; border-radius: 50%;
  background: var(--accent); color: #eef5ef;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 16px 40px rgba(31, 92, 61, 0.28); z-index: 2;
}
.orbit-core svg { width: 26px; height: 26px; margin-bottom: 5px; }
.orbit-core b { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; font-weight: 500; }
.orbit-core em { font-style: normal; font-family: var(--serif); font-size: 0.9rem; margin-top: 2px; max-width: 9ch; line-height: 1.14; }
.orbit-ring { position: absolute; left: 50%; top: 50%; border: 1px dashed var(--line-strong); border-radius: 50%; }
.orbit-ring.or1 { width: 336px; height: 336px; margin: -168px 0 0 -168px; animation: spin 60s linear infinite; }
.orbit-ring.or2 { width: 212px; height: 212px; margin: -106px 0 0 -106px; animation: spin 45s linear infinite reverse; opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }
.chip {
  position: absolute; left: 50%; top: 50%;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 22px; padding: 7px 14px; font-size: 0.82rem; font-weight: 500; color: var(--ink);
  box-shadow: 0 4px 14px rgba(27, 26, 22, 0.06); white-space: nowrap; z-index: 3;
}
.chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.chip.c1  { transform: translate(-50%, -50%) translate(0, -168px); }
.chip.c2  { transform: translate(-50%, -50%) translate(99px, -136px); }
.chip.c3  { transform: translate(-50%, -50%) translate(160px, -52px); }
.chip.c4  { transform: translate(-50%, -50%) translate(160px, 52px); }
.chip.c5  { transform: translate(-50%, -50%) translate(99px, 136px); }
.chip.c6  { transform: translate(-50%, -50%) translate(0, 168px); }
.chip.c7  { transform: translate(-50%, -50%) translate(-99px, 136px); }
.chip.c8  { transform: translate(-50%, -50%) translate(-160px, 52px); }
.chip.c9  { transform: translate(-50%, -50%) translate(-160px, -52px); }
.chip.c10 { transform: translate(-50%, -50%) translate(-99px, -136px); }


/* ---------- FAQ ---------- */
.faq-list { margin-top: 44px; border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.12rem, 2vw, 1.3rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-a { padding: 0 0 26px; max-width: 72ch; }
.faq-item .faq-a p { color: var(--muted); font-size: 1.02rem; }
.faq-item .faq-a p + p { margin-top: 14px; }

/* ---------- Engine diagram (How It Works) ---------- */
.engine { margin-top: 56px; }
.engine-track { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.node { position: relative; padding-right: 26px; }
.node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 52px;
  right: 0;
  height: 1px;
  background: var(--line-strong);
}
.node-dot {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  position: relative;
  z-index: 1;
  box-shadow: 0 1px 2px rgba(27, 26, 22, 0.04);
}
.node h4 { font-family: var(--serif); font-weight: 500; font-size: 1.18rem; margin: 20px 0 8px; letter-spacing: -0.01em; }
.node p { color: var(--muted); font-size: 0.92rem; padding-right: 8px; }
.loop {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: var(--accent-soft);
}
.loop svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.loop p { font-size: 0.98rem; color: var(--ink); }
.loop b { color: var(--accent); font-weight: 600; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.stat .num { font-family: var(--serif); font-weight: 500; font-size: 3.2rem; line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.stat .num span { color: var(--accent); }
.stat .label { color: var(--muted); font-size: 0.95rem; margin-top: 12px; max-width: 28ch; }
@media (max-width: 860px) { .stats-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Steps (fallback, legacy) ---------- */
.step { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--mono); font-size: 0.95rem; font-weight: 500; color: var(--accent); min-width: 40px; }
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.95rem; max-width: 60ch; }

/* ---------- Offers ---------- */
.offer-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---------- Testimonial ---------- */
.testimonial { max-width: 62ch; }
.testimonial blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}
.testimonial blockquote .mark { color: var(--accent); }
.testimonial .attribution { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.testimonial .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 500; font-size: 1.15rem;
}
.testimonial .who { font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.testimonial .role { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.06em; color: var(--muted); margin-top: 2px; }

.tstack { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px;
  box-shadow: 0 1px 2px rgba(27, 26, 22, 0.03);
  display: flex;
  flex-direction: column;
}
.tcard blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
  flex: 1;
}
.tcard blockquote .mark { color: var(--accent); }
.tcard .attribution { margin-top: 26px; display: flex; align-items: center; gap: 13px; }
.tcard .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 500; font-size: 1.15rem;
  flex-shrink: 0;
}
.tcard .who { font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.tcard .role { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--muted); margin-top: 3px; text-transform: uppercase; }
@media (max-width: 860px) { .tstack { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 52px; align-items: center; margin-top: 44px; }
.about-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 16px 40px rgba(27, 26, 22, 0.10);
}
.about-body p { color: var(--muted); font-size: 1.1rem; max-width: 56ch; }
.about-body .hero-cta { margin-top: 28px; }

/* ---------- CTA band (accent panel) ---------- */
.cta-band { text-align: center; padding: 96px 0; background: var(--accent); border: none; }
.cta-band h2 { margin: 0 auto; color: #f6faf6; }
.cta-band p { margin: 18px auto 34px; color: rgba(246, 250, 246, 0.82); max-width: 52ch; font-size: 1.08rem; }
.cta-band .btn-primary { background: var(--paper); color: var(--accent); }
.cta-band .btn-primary:hover { background: #ffffff; color: var(--accent-hover); }

/* ---------- Blog list ---------- */
.post-list { margin-top: 48px; display: grid; gap: 20px; }
.post-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(27, 26, 22, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(27, 26, 22, 0.07); border-color: var(--line-strong); color: var(--ink); }
.post-meta { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 12px; }
.post-meta .tag { color: var(--accent); font-weight: 500; }
.post-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; line-height: 1.2; margin-bottom: 10px; letter-spacing: -0.01em; }
.post-card p { color: var(--muted); font-size: 0.98rem; }
.read-more { display: inline-block; margin-top: 18px; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.04em; font-weight: 500; color: var(--accent); }

/* ---------- Article ---------- */
.article { max-width: 700px; margin: 0 auto; padding: 72px 32px 40px; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); max-width: none; }
.article .post-meta { margin: 22px 0; }
.article h2 { font-size: 1.7rem; margin: 48px 0 16px; max-width: none; }
.article h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin: 34px 0 12px; }
.article p { margin-bottom: 20px; color: #34322b; font-size: 1.12rem; line-height: 1.7; }
.article ul, .article ol { margin: 0 0 20px 24px; color: #34322b; font-size: 1.1rem; }
.article li { margin-bottom: 10px; line-height: 1.65; }
.article strong { color: var(--ink); font-weight: 600; }
.article em { font-style: italic; }
.article blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin: 30px 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
}
.article code {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 2px 7px;
  font-family: var(--mono);
  font-size: 0.86em;
  color: var(--accent);
}
.article-cta {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(27, 26, 22, 0.03);
}
.article-cta h3 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin-bottom: 10px; }
.article-cta p { color: var(--muted); margin-bottom: 24px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0; color: var(--muted); font-size: 0.88rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .container { padding: 0 24px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 68px 0 56px; }
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  section { padding: 60px 0; }
  .nav-links { gap: 16px; }
  .nav-links a.hide-mobile { display: none; }
  .engine-track { grid-template-columns: 1fr; gap: 28px; }
  .node { padding-right: 0; }
  .node:not(:last-child)::after { display: none; }
  .cta-band { padding: 68px 0; }
  .hd { grid-template-columns: 1fr; }
  .hd-wire { display: none; }
  .hd-brain { margin: 12px 0; }
  .hd-col { z-index: 2; }
  .brainmodel { grid-template-columns: 1fr; }
  .bm-flow { height: 40px; }
  .bm-flow svg { width: 40px; height: 40px; transform: rotate(90deg); }
  .ui-cards { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; gap: 16px; }
  .ba-arrow { transform: rotate(90deg); margin: 0 auto; }
  .timeline { grid-template-columns: 1fr; gap: 26px; }
  .tl-step { text-align: left; padding: 0; }
  .tl-ico { margin: 0 0 14px; }
  .tl-step:not(:last-child)::after { display: none; }
  .orbit { height: auto; max-width: none; text-align: center; }
  .orbit-ring { display: none; }
  .orbit .orbit-core { position: static; transform: none; margin: 0 auto 18px; }
  .orbit .chip { position: static; transform: none; margin: 4px; }
}
