:root {
  --ink: oklch(25% 0.075 320);
  --ink-soft: oklch(43% 0.045 320);
  --paper: oklch(96.5% 0.026 88);
  --paper-2: oklch(92% 0.036 86);
  --paper-3: oklch(86% 0.052 82);
  --violet: oklch(42% 0.185 315);
  --violet-2: oklch(31% 0.11 317);
  --coral: oklch(69% 0.205 28);
  --coral-dark: oklch(51% 0.19 27);
  --mint: oklch(88% 0.15 100);
  --lilac: oklch(79% 0.11 305);
  --white: oklch(98.5% 0.016 88);
  --rule: oklch(25% 0.075 320 / 18%);
  --rule-light: oklch(97% 0.022 85 / 27%);
  --shadow: 0 28px 80px oklch(19% 0.075 320 / 19%);
  --max: 1240px;
  --pad: clamp(22px, 5vw, 72px);
  --font-he: "Noto Sans Hebrew", system-ui, sans-serif;
  --font-en: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-he);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
button, input, textarea { font: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--coral); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  inset-inline-start: 12px;
  padding: 10px 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 74px;
  padding: 12px max(var(--pad), calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  background: oklch(96.5% 0.026 88 / 94%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-light);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: var(--coral);
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
}
[dir="rtl"] .site-header::after { transform-origin: right; }
.logo { display: inline-flex; align-items: center; gap: 11px; width: max-content; text-decoration: none; }
.brand-symbol {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.logo:hover .brand-symbol, .logo:focus-visible .brand-symbol { transform: translateY(-2px) rotate(-3deg); }
.logo-copy { display: grid; line-height: 1.1; }
.logo-copy strong { font: 800 14px/1.1 var(--font-en); letter-spacing: .08em; }
.logo-copy small { margin-top: 5px; color: var(--ink-soft); font: 600 8px/1 var(--font-en); text-transform: uppercase; letter-spacing: .14em; }
.main-nav { display: flex; gap: 26px; }
.main-nav a { position: relative; color: var(--ink-soft); font-size: 13px; font-weight: 700; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; inset: auto 0 -8px; height: 1px; background: var(--coral); transform: scaleX(0); transition: transform .22s cubic-bezier(.16,1,.3,1); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--ink); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.lang-toggle { display: inline-flex; border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; direction: ltr; }
.lang-opt { border: 0; padding: 7px 9px; color: var(--ink-soft); background: transparent; cursor: pointer; font: 700 10px/1 var(--font-en); }
.lang-opt.active { color: var(--paper); background: var(--ink); }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), background .2s ease, color .2s ease;
}
.header-cta { min-height: 40px; color: var(--paper); background: var(--ink); border-radius: 3px; font-size: 13px; }
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.header-cta:active, .button:active { transform: scale(.98); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 11px; border: 1px solid var(--rule); border-radius: 8px; background: transparent; }
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: var(--ink); }
.menu-toggle:active, .lang-opt:active { transform: scale(.97); }

.hero {
  min-height: calc(100svh - 74px);
  position: relative;
  display: flex;
  align-items: flex-start;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}
.hero-copy {
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 164px) var(--pad) 112px;
  position: relative;
}
.hero-copy::before {
  content: "";
  width: clamp(58px, 6vw, 90px);
  height: 10px;
  display: block;
  position: absolute;
  inset-inline-start: var(--pad);
  top: clamp(48px, 7vw, 88px);
  background: var(--coral);
}
.kicker, .section-index, .mini-label {
  margin: 0 0 24px;
  font: 700 11px/1.2 var(--font-en);
  text-transform: uppercase;
  letter-spacing: .15em;
}
.kicker { margin-inline-start: clamp(80px, 8vw, 120px); color: var(--coral-dark); }
.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(68px, 9.8vw, 152px);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .82;
}
.hero h1 > span, .hero h1 > em { display: block; }
.hero h1 em { color: var(--violet); font-style: normal; }
.hero-bottom { width: min(920px, 78%); margin-top: 46px; padding-top: 25px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 7vw; border-top: 1px solid var(--rule); }
.hero-lead { max-width: 650px; margin: 0; color: var(--ink-soft); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; align-items: flex-start; flex-direction: column; gap: 18px; }
.button-primary { color: var(--paper); background: var(--ink); border-radius: 2px; }
.button-primary:hover { color: var(--ink); background: var(--mint); }
.text-link { color: var(--ink); font-weight: 800; text-underline-offset: 5px; }

.hero-stage { position: absolute; z-index: 1; inset: 0; direction: ltr; pointer-events: none; }
.frame { position: absolute; width: clamp(160px, 23vw, 360px); aspect-ratio: 1.18; border: clamp(12px, 1.5vw, 23px) solid; transform-origin: 20% 80%; }
.frame-1 { left: -8%; top: 7%; color: var(--lilac); transform: rotate(-12deg); }
.frame-2 { left: -2%; top: 16%; color: var(--coral); transform: rotate(-4deg); animation-delay: -1.4s; }
.frame-3 { left: 5%; top: 27%; color: var(--mint); transform: rotate(5deg); animation-delay: -2.8s; }
.frame-4 { left: 13%; top: 39%; color: var(--violet); transform: rotate(14deg); animation-delay: -4.2s; }
.frame-origin { position: absolute; left: 27%; top: 64%; width: 22px; aspect-ratio: 1; background: var(--coral); }
.frame-label { position: absolute; left: 5%; bottom: 12%; padding: 9px 11px; color: var(--paper); background: var(--ink); font: 800 10px/1 var(--font-en); letter-spacing: .14em; transform: rotate(90deg); transform-origin: left bottom; }
[dir="ltr"] .frame-1 { left: auto; right: -8%; transform: rotate(12deg); }
[dir="ltr"] .frame-2 { left: auto; right: -4%; transform: rotate(4deg); }
[dir="ltr"] .frame-3 { left: auto; right: 0; transform: rotate(-5deg); }
[dir="ltr"] .frame-4 { left: auto; right: 4%; transform: rotate(-14deg); }
[dir="ltr"] .frame-origin { left: auto; right: 27%; }
[dir="ltr"] .frame-label { left: auto; right: 5%; transform: rotate(-90deg); transform-origin: right bottom; }
[dir="ltr"] .hero h1 { max-width: 820px; font-size: clamp(60px, 6.8vw, 104px); letter-spacing: -.06em; line-height: .88; }
[dir="ltr"] .hero-bottom { width: min(860px, 74%); }
.hero-foot { position: absolute; z-index: 3; inset-inline: var(--pad); bottom: 24px; display: flex; justify-content: space-between; gap: 20px; color: var(--ink-soft); font: 800 9px/1 var(--font-en); letter-spacing: .13em; }

.motion-marquee { display: flex; overflow: hidden; color: var(--ink); background: var(--coral); border-block: 1px solid var(--ink); direction: ltr; }
.motion-marquee div { flex: 0 0 auto; padding: 15px 0; font: 800 clamp(13px, 1.7vw, 22px)/1 var(--font-en); letter-spacing: .05em; animation: marquee 24s linear infinite; }
@keyframes marquee { to { transform: translateX(-100%); } }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.motion-lab {
  min-height: 780px;
  padding: clamp(78px, 9vw, 130px) var(--pad);
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
  position: relative;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}
.motion-lab::before { content: "FM / PLAY 01"; position: absolute; inset-inline-end: 26px; bottom: 28px; color: oklch(96% 0.026 88 / 42%); font: 800 9px/1 var(--font-en); letter-spacing: .15em; }
.lab-copy { max-width: 590px; }
.lab-copy h2 { margin: 0; font-size: clamp(48px, 6vw, 84px); line-height: .93; letter-spacing: -.055em; }
.lab-copy h2 span, .lab-copy h2 em { display: block; }
.lab-copy h2 em { color: var(--mint); font-style: normal; }
.lab-copy > p:last-child { max-width: 560px; margin: 30px 0 0; color: oklch(96.5% 0.026 88 / 72%); font-size: 18px; }
.lab-panel { min-width: 0; padding: 20px; position: relative; background: var(--paper); color: var(--ink); }
.game-topline { display: flex; justify-content: space-between; gap: 20px; padding: 2px 2px 18px; font: 800 10px/1 var(--font-en); text-transform: uppercase; letter-spacing: .11em; }
.game-score b { color: var(--coral-dark); }
.game-best { color: var(--ink-soft); }
.game-progress { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-block: 1px solid var(--rule); direction: ltr; }
.game-progress li { min-height: 62px; padding: 12px; display: grid; gap: 5px; border-inline-end: 1px solid var(--rule); color: var(--ink-soft); transition: color .2s ease, background .2s ease; }
.game-progress li:last-child { border-inline-end: 0; }
.game-progress span { font: 800 9px/1 var(--font-en); }
.game-progress strong { font-size: 13px; }
.game-progress li.active { color: var(--ink); background: var(--mint); }
.game-progress li.done { color: var(--paper); background: var(--violet); }
.game-arena { --signal-x: 0px; --target-x: 160px; --target-w: 130px; height: 330px; position: relative; background: var(--paper-2); border-bottom: 1px solid var(--rule); overflow: hidden; }
.game-arena-title { position: absolute; inset-inline-end: 18px; top: 22px; color: #846a7d; font: 900 clamp(54px, 6vw, 90px)/.78 var(--font-en); letter-spacing: -.07em; text-align: end; }
.game-rail { position: absolute; left: 38px; right: 38px; top: 62%; height: 3px; background: var(--ink); }
.game-rail::before, .game-rail::after { content: ""; position: absolute; top: -5px; width: 3px; height: 13px; background: var(--ink); }
.game-rail::before { left: 0; }
.game-rail::after { right: 0; }
.game-target { width: var(--target-w); height: 142px; position: absolute; z-index: 2; left: 38px; top: 62%; display: grid; place-items: center; border: 8px solid var(--mint); background: oklch(88% 0.15 100 / 12%); transform: translate3d(var(--target-x), -50%, 0); transition: width .25s cubic-bezier(.16,1,.3,1), transform .25s cubic-bezier(.16,1,.3,1), border-color .15s ease; }
.game-target i { position: absolute; inset: 9px; border: 1px solid oklch(25% 0.075 320 / 25%); }
.game-target small { position: absolute; top: 8px; inset-inline-start: 9px; font: 900 9px/1 var(--font-en); letter-spacing: .14em; }
.game-signal { width: 26px; aspect-ratio: 1; position: absolute; z-index: 4; left: 38px; top: 62%; background: var(--coral); border: 3px solid var(--paper-2); box-shadow: 0 0 0 2px var(--ink); transform: translate3d(var(--signal-x), -50%, 0); }
.game-flash { position: absolute; z-index: 6; inset: 0; background: var(--mint); opacity: 0; pointer-events: none; }
.game-round { position: absolute; inset-inline-start: 16px; top: 15px; color: var(--coral-dark); font: 900 9px/1 var(--font-en); letter-spacing: .13em; }
.game-panel.is-hit .game-flash { animation: gameFlash .32s cubic-bezier(.16,1,.3,1); }
.game-panel.is-hit .game-target { border-color: var(--violet); }
.game-panel.is-miss .game-target { border-color: var(--coral); }
@keyframes gameFlash { 0% { opacity: .6; } 100% { opacity: 0; } }
.game-feedback { min-height: 77px; padding: 18px 2px 10px; display: grid; align-content: start; gap: 3px; }
.game-feedback strong { font-size: 18px; }
.game-feedback span { color: var(--ink-soft); font-size: 13px; }
.game-action { width: 100%; min-height: 58px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 0; border-radius: 0; color: var(--paper); background: var(--ink); cursor: pointer; font-weight: 900; transition: color .15s ease, background .15s ease, transform .15s cubic-bezier(.16,1,.3,1); }
.game-action:hover { color: var(--ink); background: var(--mint); }
.game-action:active { transform: scale(.992); }
.game-action:disabled { opacity: .55; cursor: wait; }
.game-action:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.game-action kbd { padding: 5px 7px; color: inherit; background: transparent; border: 1px solid currentColor; font: 800 8px/1 var(--font-en); letter-spacing: .12em; }
.game-help { margin: 10px 0 0; color: var(--ink-soft); font-size: 11px; }
.game-complete { position: absolute; z-index: 9; inset: 20px; padding: 42px; display: grid; place-content: center; text-align: center; color: var(--ink); background: var(--mint); }
.game-complete[hidden] { display: none; }
.game-complete strong { font-size: clamp(42px, 5vw, 72px); line-height: .95; }
.game-complete p { margin: 22px 0 0; font-size: 18px; }
.game-complete b { font: 900 22px/1 var(--font-en); }
.game-restart { min-width: 180px; min-height: 52px; margin: 28px auto 0; border: 0; border-radius: 0; color: var(--paper); background: var(--ink); cursor: pointer; font-weight: 900; }
.game-restart:hover { color: var(--ink); background: var(--coral); }
.game-restart:focus-visible { outline: 3px solid var(--coral-dark); outline-offset: 4px; }

.section { --frame-accent: var(--coral); position: relative; isolation: isolate; padding: clamp(90px, 11vw, 152px) var(--pad); overflow: hidden; }
.section > * { position: relative; z-index: 2; max-width: var(--max); margin-inline: auto; }
.section::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset-inline-end: -92px;
  top: 58px;
  width: 170px;
  aspect-ratio: 1.2;
  border: 13px solid var(--frame-accent);
  opacity: .09;
  transform: rotate(9deg);
  pointer-events: none;
}
.section::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset-inline-end: 48px;
  top: 104px;
  width: 12px;
  aspect-ratio: 1;
  background: var(--frame-accent);
  pointer-events: none;
}
.system, .faq { --frame-accent: var(--lilac); }
.leak, .method, .founders, .contact { --frame-accent: var(--mint); }
.system::after, .method::after, .faq::after { inset-inline: -92px auto; transform: rotate(-9deg); }
.system::before, .method::before, .faq::before { inset-inline: 48px auto; }
.section-intro { display: grid; grid-template-columns: minmax(220px, .6fr) 1.4fr; gap: 7vw; align-items: start; }
.section-index { display: inline-flex; align-items: center; gap: 10px; width: max-content; color: var(--coral-dark); direction: ltr; }
.section-index::before { content: ""; width: 10px; aspect-ratio: 1; flex: 0 0 auto; background: currentColor; }
.section-index.light { color: var(--mint); }
.section-intro h2, .leak h2, .method h2, .contact h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 800;
}
.section-intro > p:last-child { grid-column: 2; max-width: 680px; margin: 18px 0 0; color: var(--ink-soft); font-size: 19px; }

.fit { background: var(--paper); }
.fit-list { margin-top: 74px; border-top: 1px solid var(--rule); }
.fit-list article { display: grid; grid-template-columns: 100px 1fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--rule); }
.fit-list article > span { color: var(--coral-dark); font: 800 12px/1.5 var(--font-en); }
.fit-list article > div { display: grid; grid-template-columns: minmax(230px, .7fr) 1.3fr; gap: 7vw; }
.fit-list h3 { margin: 0; font-size: clamp(22px, 3vw, 34px); line-height: 1.15; }
.fit-list p { max-width: 640px; margin: 0; color: var(--ink-soft); }
.fit-list .fit-check { margin-top: 16px; padding: 32px; color: var(--paper); background: var(--ink); border: 0; }
.fit-list .fit-check p { color: oklch(96% 0.012 85 / 66%); }
.fit-list .fit-check > span { width: 32px; height: 32px; display: grid; place-items: center; color: var(--ink); background: var(--mint); border-radius: 2px; }

.leak { max-width: none; color: var(--paper); background: var(--ink); }
.leak > * { max-width: var(--max); }
.leak-copy { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; }
.leak-copy h2 { grid-column: 2; }
.leak-copy > p:last-child { grid-column: 2; max-width: 720px; margin: 24px 0 0; color: oklch(96% 0.015 88 / 66%); font-size: 19px; }
.leak-map { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: center; margin-top: 80px; direction: rtl; }
.leak-map > div { min-height: 112px; padding: 20px 14px; display: grid; align-content: center; text-align: center; border: 1px solid var(--rule-light); transition: background .2s ease, color .2s ease, transform .2s cubic-bezier(.16,1,.3,1); }
.leak-map > div:hover { color: var(--ink); background: var(--mint); transform: translateY(-4px); }
.leak-map strong { font-size: 18px; }
.leak-map small { color: oklch(96% 0.015 88 / 68%); font: 600 10px/1.3 var(--font-en); }
.leak-map i { width: 44px; height: 1px; display: block; position: relative; background: var(--mint); }
.leak-map i.leaking { background: var(--coral); }
.leak-map i.leaking::after { content: ""; position: absolute; top: -3px; left: 18px; width: 7px; height: 7px; background: var(--coral); border-radius: 50%; box-shadow: 0 15px 0 oklch(70% 0.19 35 / 50%); }

.system { background: var(--paper); }
.system-layers { margin-top: 78px; border-top: 1px solid var(--rule); }
.system-layers article { display: grid; grid-template-columns: 120px 1fr; padding: 40px 0; border-bottom: 1px solid var(--rule); transition: transform .25s cubic-bezier(.16,1,.3,1), background .2s ease; }
.system-layers article:hover { background: var(--paper-2); transform: translateX(-6px); }
.layer-num { font: 800 clamp(34px, 4vw, 54px)/1 var(--font-en); color: transparent; -webkit-text-stroke: 1px var(--violet-2); }
.system-layers article > div { display: grid; grid-template-columns: .5fr 1fr 1.25fr; gap: 40px; align-items: start; }
.layer-label { margin: 5px 0 0; color: var(--coral-dark); font: 800 10px/1 var(--font-en); letter-spacing: .13em; }
.system-layers h3 { margin: 0; font-size: clamp(23px, 3vw, 34px); line-height: 1.12; }
.system-layers p:not(.layer-label) { margin: 0; color: var(--ink-soft); }
.system-layers ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 0; padding: 0; grid-column: 3; list-style: none; }
.system-layers li { padding: 5px 9px; border: 1px solid var(--rule); border-radius: 2px; font: 700 10px/1 var(--font-en); }

.method { max-width: none; color: var(--paper); background: var(--violet-2); }
.method > * { max-width: var(--max); }
.method-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; }
.method-head h2 { grid-column: 2; }
.method-steps { padding: 0; margin-top: 78px; list-style: none; border-top: 1px solid var(--rule-light); }
.method-steps li { display: grid; grid-template-columns: 110px 1fr; padding: 28px 0; border-bottom: 1px solid var(--rule-light); }
.method-steps li > span { color: var(--mint); font: 800 12px/1.6 var(--font-en); }
.method-steps li > div { display: grid; grid-template-columns: .5fr 1.5fr; gap: 7vw; }
.method-steps h3 { margin: 0; font-size: 27px; }
.method-steps p { max-width: 650px; margin: 0; color: oklch(96% 0.015 88 / 68%); }
.first-month { margin-top: 54px; padding: clamp(30px, 5vw, 56px); color: var(--ink); background: var(--mint); }
.first-month .mini-label { margin-bottom: 18px; }
.first-month h3 { max-width: 850px; margin: 0; font-size: clamp(28px, 4vw, 48px); line-height: 1.12; }
.first-month > p:last-child { max-width: 690px; margin: 22px 0 0; }

.founders { max-width: none; color: var(--paper); background: var(--ink); overflow: hidden; }
.founders-head { display: grid; grid-template-columns: minmax(210px, .55fr) 1.15fr .65fr; gap: 5vw; align-items: end; }
.founders-head h2 { margin: 0; font-size: clamp(42px, 6vw, 78px); line-height: 1.02; letter-spacing: -.045em; }
.founders-head > p:last-child { margin: 0; color: oklch(96% 0.015 88 / 68%); }
.founder-pair { display: grid; grid-template-columns: 1.08fr .92fr; margin-top: 78px; border-top: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light); }
.founder-card { min-height: 500px; padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: 90px 1fr; grid-template-rows: auto 1fr; gap: 32px; position: relative; }
.founder-card + .founder-card { border-inline-start: 1px solid var(--rule-light); }
.founder-code { grid-column: 1 / -1; font: 800 10px/1.2 var(--font-en); letter-spacing: .14em; }
.founder-initial { width: 74px; height: 74px; display: grid; place-items: center; align-self: end; border: 1px solid currentColor; border-radius: 2px; font-size: 34px; font-weight: 800; }
.founder-card > div:last-child { align-self: end; }
.founder-role { margin: 0 0 18px; font: 700 10px/1.3 var(--font-en); letter-spacing: .12em; }
.founder-card h3 { margin: 0 0 16px; font-size: clamp(44px, 6vw, 76px); line-height: .9; letter-spacing: -.045em; }
.founder-card > div:last-child > p:last-child { max-width: 560px; margin: 0; }
.founder-tamir { color: var(--paper); background: var(--violet-2); }
.founder-tamir .founder-code, .founder-tamir .founder-role { color: var(--mint); }
.founder-ofir { color: var(--ink); background: var(--paper-2); }
.founder-ofir .founder-code, .founder-ofir .founder-role { color: var(--coral-dark); }
.founders-statement { max-width: 980px; margin: 68px auto 0; text-align: center; color: oklch(96% 0.015 88 / 68%); font-size: clamp(23px, 3.2vw, 38px); line-height: 1.35; }
.founders-statement strong { color: var(--paper); }

.principles { background: var(--paper); }
.principle-grid { display: block; margin-top: 80px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.principle-grid article { min-height: 0; padding: 30px 0; display: grid; grid-template-columns: 90px minmax(260px, .8fr) 1.2fr; gap: 32px; align-items: start; border-bottom: 1px solid var(--rule); transition: color .2s ease, background .2s ease, padding .25s cubic-bezier(.16,1,.3,1); }
.principle-grid article:hover { color: var(--paper); background: var(--ink); }
.principle-grid article:hover p { color: oklch(96% 0.012 85 / 66%); }
.principle-grid article:hover { padding-inline: 24px; }
.principle-grid article:last-child { border-bottom: 0; }
.principle-grid strong { color: var(--coral-dark); font: 800 11px/1 var(--font-en); }
.principle-grid h3 { margin: 0; font-size: 25px; line-height: 1.2; }
.principle-grid p { margin: 0; color: var(--ink-soft); }

.faq { background: var(--paper-2); }
.faq-list { margin-top: 76px; border-top: 1px solid var(--rule); }
.faq-list details { border-bottom: 1px solid var(--rule); }
.faq-list summary { min-height: 82px; display: flex; justify-content: space-between; align-items: center; gap: 24px; cursor: pointer; list-style: none; font-size: clamp(19px, 2.4vw, 27px); font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--rule); border-radius: 2px; color: var(--coral-dark); font-style: normal; transition: transform .25s cubic-bezier(.16,1,.3,1), background .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: -4px 0 28px; color: var(--ink-soft); }

.contact { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; color: var(--paper); background: var(--ink); }
.contact > * { width: 100%; max-width: none; margin: 0; }
.contact-main p:last-child { max-width: 650px; margin: 28px 0 0; color: oklch(96% 0.015 88 / 68%); font-size: 18px; }
.contact-status { min-height: 160px; padding: 28px; display: flex; align-items: center; gap: 18px; border: 1px solid var(--rule-light); background: oklch(96% 0.012 85 / 4%); }
.status-light { width: 13px; height: 13px; flex: 0 0 auto; background: var(--mint); box-shadow: 0 0 0 9px oklch(88% 0.17 112 / 10%); animation: statusPulse 2.4s ease-in-out infinite; }
@keyframes statusPulse { 50% { opacity: .55; transform: scale(.72); } }
.contact-status strong { font-size: 20px; }
.contact-status p { margin: 4px 0 0; color: oklch(97% 0.022 85 / 78%); font-size: 14px; }

.site-footer { min-height: 170px; padding: 34px var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; color: var(--paper); background: var(--ink); border-top: 1px solid var(--rule-light); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand p { display: grid; margin: 0; }
.footer-brand strong { font: 700 14px/1.2 var(--font-en); }
.footer-brand small { margin-top: 4px; color: oklch(97% 0.022 85 / 90%); font: 600 9px/1 var(--font-en); text-transform: uppercase; letter-spacing: .12em; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.site-footer nav a { color: oklch(97% 0.022 85 / 92%); font-size: 13px; text-decoration: none; }
.site-footer nav a:hover { color: var(--paper); }
.site-footer nav a[aria-current="page"] { color: var(--paper); text-decoration: underline; text-underline-offset: 5px; }
.copyright { justify-self: end; color: oklch(97% 0.022 85 / 92%); font: 600 11px/1 var(--font-en); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* Unified internal pages */
.page-hero {
  min-height: 600px;
  padding: clamp(70px, 9vw, 120px) var(--pad);
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; z-index: -1; inset-inline-start: -80px; top: 76px; width: 240px; aspect-ratio: 1.2; border: 16px solid var(--lilac); opacity: .34; transform: rotate(-10deg); }
.page-hero::before { content: ""; position: absolute; z-index: -1; inset-inline-start: 45px; top: 182px; width: 160px; aspect-ratio: 1.2; border: 13px solid var(--coral); opacity: .5; transform: rotate(8deg); }
.page-hero-inner { position: relative; z-index: 1; width: 100%; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .65fr 1.35fr; gap: 18px 7vw; }
.page-back { width: max-content; align-self: start; color: var(--ink-soft); font-size: 14px; font-weight: 700; text-underline-offset: 5px; }
.page-hero .section-index { grid-column: 1; margin-top: 52px; }
.page-hero h1 { grid-column: 2; grid-row: 1 / span 3; align-self: center; max-width: 900px; margin: 0; font-size: clamp(62px, 8.5vw, 116px); line-height: .9; letter-spacing: -.055em; }
.page-lead { grid-column: 2; max-width: 720px; margin: 22px 0 0; color: var(--ink-soft); font-size: clamp(18px, 2vw, 22px); line-height: 1.6; }
.page-meta { grid-column: 1; margin: 0; align-self: end; color: var(--ink-soft); font: 700 10px/1.2 var(--font-en); text-transform: uppercase; letter-spacing: .12em; }
.page-hero-coral { background: var(--paper-2); box-shadow: inset 0 5px 0 var(--coral); }
.page-hero-coral .section-index { color: var(--coral-dark); }
.page-hero-coral .page-back { color: var(--ink-soft); }
.page-hero-mint { background: var(--paper-2); box-shadow: inset 0 5px 0 var(--mint); }
.page-hero-mint .section-index { color: oklch(42% 0.12 112); }
.page-hero-mint .page-back { color: var(--ink-soft); }
.page-hero-dark { color: var(--paper); background: var(--violet); border-color: var(--rule-light); }
.page-hero-dark .page-back, .page-hero-dark .page-lead { color: oklch(96% 0.015 88 / 72%); }
.page-hero-dark .section-index { color: var(--mint); }

.legal-shell { max-width: var(--max); margin: 0 auto; padding: clamp(74px, 9vw, 120px) var(--pad); display: grid; grid-template-columns: minmax(180px, .42fr) minmax(0, 1.58fr); gap: 7vw; align-items: start; }
.legal-aside { position: sticky; top: 110px; padding-top: 8px; }
.legal-aside > p { margin: 0 0 20px; color: var(--coral-dark); font: 800 10px/1.2 var(--font-en); text-transform: uppercase; letter-spacing: .13em; }
.legal-aside nav { display: grid; border-top: 1px solid var(--rule); }
.legal-aside a { padding: 11px 0; color: var(--ink-soft); border-bottom: 1px solid var(--rule); font-size: 13px; text-decoration: none; }
.legal-aside a:hover { color: var(--ink); }
.legal-content { border-top: 1px solid var(--rule); }
.legal-section { scroll-margin-top: 105px; display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 34px 0 40px; border-bottom: 1px solid var(--rule); }
.legal-section > span { color: var(--coral-dark); font: 800 10px/1.5 var(--font-en); }
.legal-section h2 { margin: 0 0 16px; font-size: clamp(25px, 3vw, 36px); line-height: 1.15; }
.legal-section p { max-width: 72ch; margin: 0; color: var(--ink-soft); }
.legal-section ul { max-width: 72ch; margin: 0; padding-inline-start: 22px; color: var(--ink-soft); }
.legal-section li + li { margin-top: 10px; }
.legal-note { margin-top: 38px; padding: 28px; display: flex; align-items: center; gap: 18px; color: var(--paper); background: var(--violet); }
.legal-note p { display: grid; margin: 0; }
.legal-note strong { font-size: 19px; }
.legal-note small { margin-top: 4px; color: oklch(96% 0.015 88 / 68%); font-size: 13px; }

.about-story { background: var(--paper); }
.about-story-head { display: grid; grid-template-columns: .65fr 1.35fr; gap: 7vw; }
.about-story-head h2, .about-values h2, .about-close h2 { margin: 0; font-size: clamp(42px, 6vw, 78px); line-height: 1.02; letter-spacing: -.045em; }
.about-story-body { display: grid; grid-template-columns: .65fr 1.35fr; gap: 7vw; margin-top: 62px; padding-top: 28px; border-top: 1px solid var(--rule); }
.about-story-body p { grid-column: 2; max-width: 720px; margin: 0; color: var(--ink-soft); font-size: 19px; }
.about-story-body p + p { margin-top: 18px; }
.about-values { background: var(--paper-2); }
.about-value-list { margin-top: 72px; border-top: 1px solid var(--rule); }
.about-value-list article { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--rule); }
.about-value-list article > span { color: var(--coral-dark); font: 800 10px/1.5 var(--font-en); }
.about-value-list article > div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; }
.about-value-list h3 { margin: 0; font-size: clamp(22px, 3vw, 34px); line-height: 1.16; }
.about-value-list p { max-width: 600px; margin: 0; color: var(--ink-soft); }
.about-close { max-width: none; color: var(--paper); background: var(--ink); }
.about-close-inner { max-width: var(--max); margin: 0 auto; }
.about-close h2 { max-width: 900px; margin-bottom: 42px; }


/* Secondary legal and about pages */
.doc { max-width: 1040px; min-height: 100vh; margin: 0 auto; padding: 40px var(--pad); background: var(--paper); }
.masthead { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--rule); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-name { font: 700 17px/1 var(--font-en); }
.brand-sub { margin-top: 5px; color: var(--ink-soft); font: 600 9px/1 var(--font-en); text-transform: uppercase; letter-spacing: .12em; }
.masthead-actions { display: flex; align-items: center; gap: 10px; }
.masthead-cta { padding: 9px 15px; color: var(--paper); background: var(--violet); border-radius: 8px; text-decoration: none; font-size: 14px; }
.subpage { padding-inline: 0; }
.subpage .back { display: inline-block; margin-bottom: 30px; color: var(--coral-dark); }
.eyebrow { color: var(--coral-dark); font: 800 11px/1.2 var(--font-en); letter-spacing: .13em; text-transform: uppercase; }
.subpage-eyebrow { margin-bottom: 22px; }
.subpage h1 { max-width: 800px; margin: 0; font-size: clamp(48px, 8vw, 86px); line-height: 1; letter-spacing: -.04em; }
.subpage .lede { max-width: 720px; font-size: 23px; color: var(--ink-soft); }
.subpage h3 { margin: 54px 0 12px; font-size: 29px; }
.subpage p, .subpage li { max-width: 760px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; padding: 24px 0; border-top: 1px solid var(--rule); }
.footer-nav a { font-size: 13px; color: var(--ink-soft); }
.doc-footer { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; color: var(--ink-soft); font: 600 10px/1.4 var(--font-en); }
.wa-float { display: none !important; }

/* Accessibility helper */
.a11y-toggle { position: fixed; z-index: 150; inset-inline-end: 18px; bottom: 18px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--rule-light); border-radius: 50%; color: var(--paper); background: var(--violet); box-shadow: var(--shadow); cursor: pointer; }
.a11y-toggle svg { width: 23px; }
.a11y-panel { position: fixed; z-index: 160; inset-inline-end: 18px; bottom: 76px; width: min(360px, calc(100vw - 36px)); padding: 22px; color: var(--ink); background: var(--white); border: 1px solid var(--rule); border-radius: 14px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .2s ease; }
.a11y-panel.open { opacity: 1; visibility: visible; transform: none; }
.a11y-panel h2 { display: flex; justify-content: space-between; margin: 0 0 8px; font-size: 24px; }
.a11y-close { border: 0; background: transparent; font-size: 28px; cursor: pointer; }
.a11y-sub { margin: 0 0 16px; color: var(--ink-soft); font-size: 13px; }
.a11y-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.a11y-btn { min-height: 46px; padding: 8px; display: flex; align-items: center; gap: 7px; border: 1px solid var(--rule); border-radius: 7px; color: var(--ink); background: var(--paper); cursor: pointer; font-size: 12px; }
.a11y-btn svg { width: 18px; flex: 0 0 auto; }
.a11y-btn.active { color: var(--paper); background: var(--violet); }
.a11y-btn.full { grid-column: 1 / -1; }
.a11y-reset, .a11y-statement-link { width: 100%; display: block; margin-top: 9px; padding: 9px; text-align: center; border: 0; color: var(--ink-soft); background: transparent; font-size: 12px; cursor: pointer; }
.a11y-statement-link { text-decoration: underline; }
.a11y-contrast { filter: contrast(1.3); }
.a11y-grayscale { filter: grayscale(1); }
.a11y-links a { text-decoration: underline !important; outline: 2px solid currentColor; outline-offset: 2px; }
.a11y-readable body { font-family: Arial, sans-serif; }
.a11y-no-motion *, .a11y-no-motion *::before, .a11y-no-motion *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; position: absolute; top: 74px; inset-inline: 0; padding: 20px var(--pad) 26px; flex-direction: column; gap: 16px; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--rule); }
  .site-header.menu-open .main-nav { display: flex; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .hero-copy { min-height: auto; padding-inline-end: var(--pad); }
  .hero-bottom { width: min(760px, 86%); }
  .frame { opacity: .7; }
  .motion-lab { grid-template-columns: 1fr; }
  .lab-copy { max-width: 760px; }
  .lab-panel { width: 100%; max-width: 760px; }
  .section-intro, .leak-copy, .method-head { grid-template-columns: 1fr; gap: 18px; }
  .section-intro h2, .section-intro > p:last-child, .leak-copy h2, .leak-copy > p:last-child, .method-head h2 { grid-column: 1; }
  .fit-list article > div { grid-template-columns: 1fr; gap: 8px; }
  .system-layers article > div { grid-template-columns: 1fr 1fr; }
  .system-layers article > div > p:not(.layer-label), .system-layers ul { grid-column: 2; }
  .contact { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .site-footer nav { justify-content: center; }
  .copyright { justify-self: center; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero h1, .page-hero .section-index, .page-lead, .page-meta { grid-column: 1; grid-row: auto; }
  .page-hero .section-index { margin-top: 28px; }
  .legal-shell { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
  .legal-aside nav { grid-template-columns: repeat(2, 1fr); column-gap: 24px; }
  .about-story-head, .about-story-body { grid-template-columns: 1fr; }
  .about-story-body p { grid-column: 1; }
  .founders-head { grid-template-columns: 1fr; align-items: start; }
  .founders-head > p:last-child { max-width: 650px; }
  .founder-pair { grid-template-columns: 1fr; }
  .founder-card + .founder-card { border-inline-start: 0; border-top: 1px solid var(--rule-light); }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .site-header { width: 100%; min-height: 66px; padding-inline: 16px; gap: 10px; }
  .logo { gap: 7px; }
  .brand-symbol { width: 36px; height: 36px; }
  .logo-copy { display: grid; }
  .logo-copy strong { font-size: 10px; letter-spacing: .045em; white-space: nowrap; }
  .logo-copy small { display: none; }
  .header-actions { gap: 6px; }
  .lang-opt { padding: 6px 7px; }
  .menu-toggle { width: 40px; height: 40px; }
  .main-nav { top: 66px; }
  .hero { min-height: calc(100svh - 66px); align-items: flex-start; }
  .hero-copy { min-height: auto; padding-top: 178px; padding-bottom: 112px; }
  .hero-copy::before { top: 140px; width: 42px; height: 7px; }
  .kicker { margin-bottom: 18px; font-size: 10px; line-height: 1.4; }
  .kicker { margin-inline-start: 62px; }
  .hero h1 { width: 100%; max-width: 100%; font-size: clamp(43px, 11.7vw, 48px); line-height: .9; letter-spacing: -.04em; }
  .hero-bottom { width: 100%; margin-top: 30px; padding-top: 20px; grid-template-columns: 1fr; gap: 22px; }
  .hero-lead { margin: 0; max-width: 31ch; font-size: 16px; line-height: 1.58; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions { gap: 14px; margin-top: 0; }
  .button { min-height: 48px; }
  .text-link { width: max-content; }
  .hero-stage { opacity: .82; }
  .frame { width: 108px; border-width: 8px; }
  .frame-1 { left: -38px; top: 3%; }
  .frame-2 { left: -18px; top: 6%; }
  .frame-3 { left: 2px; top: 9%; }
  .frame-4 { left: 22px; top: 12%; }
  .frame-origin { left: 38px; top: 23%; width: 12px; }
  .frame-label { display: none; }
  [dir="ltr"] .frame-1 { left: auto; right: -38px; }
  [dir="ltr"] .frame-2 { left: auto; right: -18px; }
  [dir="ltr"] .frame-3 { left: auto; right: 2px; }
  [dir="ltr"] .frame-4 { left: auto; right: 22px; }
  [dir="ltr"] .frame-origin { left: auto; right: 38px; }
  [dir="ltr"] .hero h1 { max-width: 100%; font-size: clamp(38px, 10.6vw, 43px); line-height: .92; letter-spacing: -.045em; }
  [dir="ltr"] .hero-bottom { width: 100%; }
  .hero-foot { bottom: 19px; flex-wrap: wrap; row-gap: 8px; font-size: 7px; }
  .hero-foot span:nth-child(2) { order: 3; flex-basis: 100%; }
  .motion-marquee div { padding-block: 12px; }
  .motion-lab { min-height: 0; padding: 68px var(--pad) 78px; gap: 42px; }
  .motion-lab::before { display: none; }
  .lab-copy h2 { max-width: 10ch; font-size: 44px; line-height: .96; }
  [dir="ltr"] .lab-copy h2 { max-width: 12ch; font-size: 42px; }
  .lab-copy > p:last-child { margin-top: 22px; font-size: 16px; }
  .lab-panel { padding: 12px; }
  .game-topline { padding-bottom: 12px; }
  .game-progress li { min-height: 52px; padding: 9px 6px; }
  .game-progress strong { font-size: 10px; }
  .game-arena { height: 280px; }
  .game-arena-title { font-size: 54px; }
  .game-rail, .game-target, .game-signal { left: 22px; }
  .game-rail { right: 22px; }
  .game-target { height: 126px; border-width: 7px; }
  .game-feedback { min-height: 84px; }
  .game-feedback strong { font-size: 16px; }
  .game-action { min-height: 56px; }
  .game-complete { inset: 12px; padding: 24px; }
  .game-complete strong { font-size: 42px; }
  .section { padding-block: 64px; }
  .section::after { inset-inline-end: -62px; top: 30px; width: 104px; border-width: 9px; opacity: .08; }
  .section::before { inset-inline-end: 24px; top: 62px; width: 9px; }
  .system::after, .method::after, .faq::after { inset-inline: -62px auto; }
  .system::before, .method::before, .faq::before { inset-inline: 24px auto; }
  .section-index { margin-bottom: 12px; }
  .section-intro { gap: 10px; }
  .section-intro h2, .leak h2, .method h2, .contact h2 { max-width: 11ch; font-size: clamp(35px, 10.8vw, 46px); line-height: 1.04; letter-spacing: -.035em; }
  .section-intro > p:last-child, .leak-copy > p:last-child, .contact-main p:last-child { margin-top: 14px; font-size: 16px; line-height: 1.65; }
  .fit-list { margin-top: 44px; }
  .fit-list article { grid-template-columns: 44px 1fr; gap: 12px; }
  .fit-list article { padding: 22px 0; }
  .fit-list h3 { font-size: 23px; }
  .fit-list .fit-check { padding: 20px; }
  .leak-map { margin-top: 48px; }
  .leak-map { grid-template-columns: 1fr; gap: 0; }
  .leak-map i { width: 1px; height: 28px; justify-self: center; }
  .leak-map i.leaking::after { top: 10px; left: -3px; box-shadow: 14px 0 0 oklch(70% 0.19 35 / 50%); }
  .leak-map > div { min-height: 84px; }
  .system-layers { margin-top: 48px; }
  .system-layers article { grid-template-columns: 44px 1fr; gap: 10px; padding: 26px 0; }
  .layer-num { font-size: 38px; }
  .system-layers article > div { grid-template-columns: 1fr; gap: 9px; }
  .system-layers article > div > p:not(.layer-label), .system-layers ul { grid-column: 1; }
  .system-layers ul { margin-top: 7px; }
  .method-steps { margin-top: 48px; }
  .method-steps li { grid-template-columns: 36px 1fr; gap: 10px; padding: 22px 0; }
  .method-steps li > div { grid-template-columns: 1fr; gap: 5px; }
  .method-steps h3 { font-size: 23px; }
  .first-month { margin-top: 38px; padding: 24px 20px; }
  .first-month h3 { font-size: 28px; }
  .founders-head { gap: 12px; }
  .founders-head h2 { max-width: 12ch; font-size: 38px; line-height: 1.04; }
  .founder-pair { margin-top: 46px; }
  .founder-card { min-height: 390px; padding: 24px 20px; grid-template-columns: 52px 1fr; gap: 22px 12px; }
  .founder-initial { width: 48px; height: 48px; font-size: 22px; }
  .founder-card h3 { font-size: 48px; }
  .founder-card > div:last-child > p:last-child { font-size: 15.5px; line-height: 1.65; }
  .founders-statement { margin-top: 46px; font-size: 23px; }
  .principle-grid { margin-top: 48px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: auto; padding: 26px 0; grid-template-columns: 34px 1fr; gap: 9px; border-inline-end: 0; border-bottom: 1px solid var(--rule); }
  .principle-grid article:hover { color: var(--ink); background: transparent; }
  .principle-grid article:hover p { color: var(--ink-soft); }
  .principle-grid article:hover { padding-inline: 0; }
  .principle-grid article:last-child { border-bottom: 0; }
  .principle-grid h3 { margin: 0; }
  .principle-grid p { grid-column: 2; }
  .faq-list { margin-top: 44px; }
  .faq-list summary { min-height: 70px; font-size: 19px; line-height: 1.35; }
  .contact { gap: 36px; }
  .contact-status { min-height: 130px; padding: 22px; }
  .site-footer { min-height: 0; padding-block: 30px; gap: 24px; }
  .page-hero { min-height: 0; padding-block: 58px 64px; }
  .page-hero::after { inset-inline-start: -72px; top: 52px; width: 150px; border-width: 11px; }
  .page-hero::before { inset-inline-start: 8px; top: 112px; width: 104px; border-width: 9px; }
  .page-back { font-size: 13px; }
  .page-hero .section-index { margin-top: 28px; margin-bottom: 6px; }
  .page-hero h1 { max-width: 10ch; font-size: clamp(48px, 15vw, 64px); line-height: .92; letter-spacing: -.045em; }
  .page-lead { margin-top: 14px; font-size: 17px; line-height: 1.6; }
  .page-meta { margin-top: 18px; }
  .legal-shell { padding-block: 52px 70px; gap: 42px; }
  .legal-aside nav { grid-template-columns: 1fr 1fr; }
  .legal-section { grid-template-columns: 34px 1fr; gap: 10px; padding: 26px 0 30px; }
  .legal-section h2 { font-size: 24px; }
  .legal-section p, .legal-section li { font-size: 15.5px; }
  .legal-note { padding: 22px; }
  .about-story-head { gap: 10px; }
  .about-story-head h2, .about-values h2, .about-close h2 { font-size: 38px; line-height: 1.04; }
  .about-story-body { gap: 0; margin-top: 38px; }
  .about-story-body p { font-size: 16px; }
  .about-value-list { margin-top: 46px; }
  .about-value-list article { grid-template-columns: 34px 1fr; gap: 10px; padding: 24px 0; }
  .about-value-list article > div { grid-template-columns: 1fr; gap: 8px; }
  .about-value-list h3 { font-size: 23px; }
  .doc-footer { flex-direction: column; }
}

@media (max-width: 360px) {
  :root { --pad: 18px; }
  .site-header { gap: 8px; padding-inline: 18px; }
  .header-actions { gap: 7px; }
  .brand-symbol { width: 34px; height: 34px; }
  .hero h1 { font-size: 41px; }
  .hero-lead { font-size: 16px; }
  .section-intro h2, .leak h2, .method h2, .contact h2 { font-size: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .a11y-toggle, .a11y-panel { display: none !important; }
  .hero, .leak, .method, .contact, .site-footer { color: var(--ink); background: var(--paper); }
  .section { break-inside: avoid; }
  .reveal { opacity: 1; transform: none; }
}

/* Compatibility check modal */
.fitc-overlay {
  position: fixed; inset: 0; z-index: 200;
  place-items: center; padding: 20px;
  background: oklch(19% 0.075 320 / 55%);
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.fitc-overlay:not([hidden]) { display: grid; }
.fitc-overlay.open { opacity: 1; pointer-events: auto; }
.fitc-modal {
  width: min(560px, 100%); max-height: 90vh; overflow-y: auto;
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow); padding: clamp(22px, 4vw, 36px);
  transform: translateY(8px); transition: transform .2s ease;
}
.fitc-overlay.open .fitc-modal { transform: none; }
.fitc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.fitc-head h2 { font-size: clamp(20px, 3.5vw, 26px); margin: 0; }
.fitc-close {
  border: 0; background: transparent; color: var(--ink);
  font-size: 26px; line-height: 1; cursor: pointer; padding: 4px 8px; border-radius: 8px;
}
.fitc-close:hover { background: var(--paper-2); }
.fitc-progress { font-family: var(--font-en); font-size: 12px; letter-spacing: .08em; color: var(--ink-soft); margin: 0 0 18px; }
.fitc-q { font-size: clamp(18px, 3vw, 22px); font-weight: 800; margin: 0 0 16px; }
.fitc-opts { display: grid; gap: 10px; margin: 0 0 22px; }
.fitc-opt {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid var(--rule); border-radius: 10px; padding: 14px 16px;
  cursor: pointer; background: var(--white); transition: border-color .15s ease, background .15s ease;
}
.fitc-opt:hover { border-color: var(--ink); }
.fitc-opt input { accent-color: var(--violet); width: 18px; height: 18px; flex: none; }
.fitc-opt.sel { border-color: var(--violet); background: var(--paper-2); }
.fitc-nav { display: flex; gap: 12px; justify-content: space-between; }
.fitc-nav .button-primary[disabled] { opacity: .4; cursor: not-allowed; }
.fitc-result h3 { font-size: clamp(20px, 3.4vw, 26px); margin: 0 0 10px; }
.fitc-result p { margin: 0 0 14px; }
.fitc-start { font-weight: 700; color: var(--violet-2); }
.fitc-field { display: block; margin: 0 0 12px; }
.fitc-field span { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 4px; }
.fitc-field input {
  width: 100%; padding: 12px 14px; border: 2px solid var(--rule);
  border-radius: 10px; background: var(--white); color: var(--ink);
}
.fitc-field input:focus-visible { outline: 2px solid var(--violet); outline-offset: 1px; }
.fitc-err { color: var(--coral-dark); font-size: 13px; margin: 0 0 12px; min-height: 1em; }
.fitc-cta { width: 100%; justify-content: center; }
.fitc-cta[disabled] { opacity: .5; cursor: not-allowed; }
.fitc-secondary {
  display: inline-block; margin-top: 6px; background: transparent;
  border: 0; color: var(--violet-2); text-decoration: underline; cursor: pointer; font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  .fitc-overlay, .fitc-modal { transition: none; }
}

/* Contact method buttons */
.contact-methods { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 4px; }
.contact-methods .contact-method {
  min-height: 42px; text-decoration: none; font-size: 15px;
  border-color: var(--rule); background: var(--white); color: var(--ink);
}
.contact-methods .contact-method:hover { border-color: var(--ink); background: var(--paper-2); }
.contact-methods .contact-method[aria-disabled="true"] { opacity: .5; pointer-events: none; cursor: default; }
