/* Inter Variable, latin subset, self-hosted (site policy: no external runtime
   dependency). The odd-numbered weights below (620, 650, 720, 760) only exist
   on a variable axis — without this face they all round to 600/700. Hebrew
   glyphs are outside the unicode-range and fall through to the system stack. */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light dark;
  --bg: #f7f6f3;
  --bg-app: #f6f7fa;
  --bg-well: #e7e9ee;
  --surface: #ffffff;
  --surface-2: #f2f3f7;
  --border: #e4e7ee;
  --border-strong: #cbd0dc;
  --text: #1b1f2a;
  --text-secondary: #59617a;
  --text-muted: #666e85; /* 4.7:1 on --bg — the small-text tier must clear AA */
  --accent: #2d53de;
  --accent-hover: #2445c2;
  --accent-active: #1e3aa8;
  --accent-soft: #ebf0ff;
  --accent-softer: #f5f8ff;
  --accent-border: #c3d2f8;
  --accent-text: #1e3fb8;
  --night: #141824;
  --night-surface: #1b2030;
  --night-border: #30374a;
  --night-text: #f3f5fb;
  --night-muted: #adb6ce;
  --shadow-page: 0 0 0 1px rgba(27, 31, 42, 0.05), 0 2px 6px rgba(27, 31, 42, 0.08), 0 24px 56px -20px rgba(27, 31, 42, 0.32);
  --shadow-card: 0 0 0 1px rgba(27, 31, 42, 0.05), 0 2px 6px rgba(27, 31, 42, 0.06), 0 16px 48px -20px rgba(27, 31, 42, 0.2);
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141824;
    --bg-app: #14161d;
    --bg-well: #12141b;
    --surface: #1b1e27;
    --surface-2: #232734;
    --border: #2a2e3b;
    --border-strong: #3a4050;
    --text: #e6e9f2;
    --text-secondary: #a9b0c3;
    --text-muted: #7f88a3;
    --accent: #6d8af8;
    --accent-hover: #849cfa;
    --accent-active: #5d7bf0;
    --accent-soft: rgba(109, 138, 248, 0.16);
    --accent-softer: rgba(109, 138, 248, 0.08);
    --accent-border: rgba(109, 138, 248, 0.38);
    --accent-text: #a7b8fb;
    --shadow-page: 0 0 0 1px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.45), 0 24px 64px -18px rgba(0, 0, 0, 0.7);
    --shadow-card: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.4), 0 20px 56px -20px rgba(0, 0, 0, 0.6);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  /* Without this, the height="" attribute wins when max-width shrinks the
     image, and object-fit: cover quietly crops the sides. */
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a,
button,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Anchor jumps must land clear of the 72px sticky header. */
main [id] {
  scroll-margin-block-start: 96px;
}

:is(a, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-card);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 20;
  border-block-end: 1px solid color-mix(in srgb, var(--border) 78%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand-link img {
  width: 146px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-inline-start: auto;
}

.header-nav a,
.language-link {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 650;
  text-decoration: none;
}

.header-nav a:hover,
.language-link:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(29, 58, 168, 0.35);
  transition: background-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -12px rgba(29, 58, 168, 0.7);
}

.button:active {
  background: var(--accent-active);
  transform: translateY(0);
}

.button-small {
  min-height: 38px;
  padding-inline: 15px;
  font-size: 0.875rem;
}

/* Secondary action beside the store CTA. Carries real weight rather than looking like a
   footnote: on a phone the Chrome Web Store button is a dead end, so for every mobile
   visitor this is the only action that works. */
.button-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--border);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--surface-muted, rgba(45, 83, 222, 0.06));
  border-color: var(--accent);
  box-shadow: none;
}

.button-secondary:active {
  background: rgba(45, 83, 222, 0.12);
}

.install-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.install-hint {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding-block: clamp(64px, 9vw, 126px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(54px, 7vw, 98px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-text);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.085em;
  line-height: 1.3;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-inline-end: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
  vertical-align: 0.08em;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.2rem, 5.8vw, 5.6rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--text-secondary);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.free-line {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 670;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-block-start: 30px;
}

.text-link {
  color: var(--accent-text);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 620;
  list-style: none;
}

.proof-list li::before {
  content: "✓";
  margin-inline-end: 7px;
  color: var(--accent);
}

.device-boundary {
  position: relative;
  padding: 34px;
}

.device-boundary::before,
.device-boundary::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 58px;
  border-block: 5px solid var(--accent);
  pointer-events: none;
}

.device-boundary::before {
  inset-inline-start: 0;
  border-inline-start: 5px solid var(--accent);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}

.device-boundary::after {
  inset-inline-end: 0;
  border-inline-end: 5px solid var(--accent);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}

[dir="rtl"] .device-boundary::before {
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}

[dir="rtl"] .device-boundary::after {
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}

.boundary-label {
  position: absolute;
  inset-block-start: -11px;
  inset-inline-end: 76px;
  z-index: 2;
  padding: 2px 10px;
  background: var(--bg);
  color: var(--accent-text);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-window {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-page);
}

.window-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 14px;
  border-block-end: 1px solid var(--border);
  background: var(--surface);
  direction: ltr;
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
}

.window-bar strong {
  margin-inline-start: auto;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual .app-window {
  transform: rotate(0.7deg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.53 / 1;
  object-fit: cover;
  object-position: top;
}

.hero-visual {
  animation: hero-enter 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding-block: clamp(82px, 10vw, 144px);
}

.section-heading {
  max-width: 760px;
  margin-block-end: 52px;
}

.section-heading h2,
.hebrew-copy h2,
.privacy-copy h2,
.install-card h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.7vw, 4rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p:last-child,
.split-heading > p,
.hebrew-copy > p,
.privacy-copy > p,
.install-card p {
  color: var(--text-secondary);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-block: 18px 0;
  font-size: 1.08rem;
}

.process-section {
  background: var(--bg-app);
  border-block: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  min-width: 0;
  padding: 26px 26px 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.process-card:nth-child(2) {
  transform: translateY(-16px);
}

.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-text);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.step-label span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 0.72rem;
}

.process-card h3 {
  margin: 22px 0 10px;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.process-card p {
  min-height: 74px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.screenshot-clip {
  height: 242px;
  margin: 26px -14px 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-block-end: 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--bg-well);
}

.screenshot-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.screenshot-clip-empty img {
  object-position: 50% 35%;
  transform: scale(1.65);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 60px;
}

.split-heading > p {
  margin: 0 0 4px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.plan-card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  background: var(--surface);
}

.plan-pro {
  border-color: var(--accent-border);
  background: var(--accent-softer);
  box-shadow: inset 0 5px 0 var(--accent);
}

.plan-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.plan-topline h3,
.price {
  margin: 0;
}

.plan-topline h3 {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.price {
  font-size: 1.65rem;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.price span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 630;
  letter-spacing: 0;
}

.plan-summary {
  max-width: 500px;
  margin: 14px 0 26px;
  color: var(--text-secondary);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 26px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent);
  font-weight: 800;
}

.plan-note {
  margin: 28px 0 0;
  padding-block-start: 18px;
  border-block-start: 1px solid var(--accent-border);
  color: var(--accent-text);
  font-size: 0.84rem;
  font-weight: 680;
}

.hebrew-section {
  padding-block: 0;
  background: var(--accent);
  color: #ffffff;
}

.hebrew-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding-block: 92px;
}

.hebrew-copy .eyebrow,
.hebrew-copy .text-link {
  color: #ffffff;
}

.hebrew-copy > p:not(.eyebrow, .hebrew-proof) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hebrew-proof {
  margin: 32px 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 680;
}

.hebrew-window {
  transform: rotate(-1deg);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 28px 70px -22px rgba(14, 30, 91, 0.75);
}

.hebrew-window img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  object-position: top;
}

.privacy-section {
  background: var(--night);
  color: var(--night-text);
}

.privacy-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
}

.privacy-copy .eyebrow-light {
  color: #a7b8fb;
}

.privacy-copy > p {
  max-width: 680px;
  color: var(--night-muted);
  font-size: 1.05rem;
}

.privacy-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-block: 38px 28px;
}

.privacy-flow > div {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--night-border);
  border-radius: var(--r-lg);
  background: var(--night-surface);
  text-align: center;
}

.privacy-flow .flow-core {
  border-color: rgba(109, 138, 248, 0.55);
  background: rgba(109, 138, 248, 0.14);
}

.privacy-flow strong {
  font-size: 0.84rem;
}

.privacy-flow span:not(.flow-arrow) {
  margin-block-start: 4px;
  color: var(--night-muted);
  font-size: 0.7rem;
}

.flow-arrow {
  color: #6d8af8;
  font-weight: 800;
}

.analytics-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-block-start: 24px;
  border-block-start: 1px solid var(--night-border);
}

.analytics-mark {
  width: 24px;
  height: 24px;
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(109, 138, 248, 0.6);
  border-radius: 50%;
  color: #a7b8fb;
  font-size: 0.78rem;
  font-weight: 800;
}

.analytics-note p {
  margin: 0;
  color: var(--night-muted);
  font-size: 0.84rem;
}

.analytics-note strong {
  color: var(--night-text);
}

.privacy-figure {
  margin: 0;
}

.privacy-figure img {
  border: 1px solid var(--night-border);
  border-radius: var(--r-xl);
  box-shadow: 0 30px 80px -24px rgba(0, 0, 0, 0.8);
}

.privacy-figure figcaption {
  max-width: 520px;
  margin-block-start: 16px;
  color: var(--night-muted);
  font-size: 0.78rem;
}

.faq-section {
  background: var(--bg-app);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(48px, 9vw, 128px);
}

.faq-heading {
  position: sticky;
  inset-block-start: 112px;
  margin: 0;
}

.faq-list {
  border-block-start: 1px solid var(--border-strong);
}

.faq-item {
  border-block-end: 1px solid var(--border-strong);
}

.faq-item summary {
  position: relative;
  padding: 24px 42px 24px 0;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

[dir="rtl"] .faq-item summary {
  padding: 24px 0 24px 42px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--accent-text);
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 4px;
  inset-block-start: 20px;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 670px;
  margin: -6px 0 24px;
  color: var(--text-secondary);
}

.install-section {
  padding-block: clamp(62px, 8vw, 104px);
}

.install-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.install-card > img {
  width: 70px;
}

.install-card h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.install-card p {
  margin: 10px 0 0;
}

.install-card .eyebrow {
  margin: 0 0 10px;
  color: var(--accent-text);
}

.site-footer {
  padding-block: 28px;
  border-block-start: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 740;
}

.footer-brand img {
  width: 28px;
}

.footer-inner p {
  margin: 0 auto;
}

.footer-inner a {
  font-weight: 700;
}

@media (max-width: 980px) {
  .header-nav {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid,
  .hebrew-grid,
  .privacy-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    width: min(100%, 780px);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card:nth-child(2) {
    transform: none;
  }

  .process-card {
    display: grid;
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
    column-gap: 30px;
    align-items: start;
  }

  .process-card .step-label,
  .process-card h3,
  .process-card p {
    grid-column: 1;
  }

  .process-card .screenshot-clip {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin: 0 -14px -1px 0;
  }

  [dir="rtl"] .process-card .screenshot-clip {
    margin: 0 0 -1px -14px;
  }

  .split-heading,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-heading {
    position: static;
  }

  .hebrew-window,
  .privacy-figure {
    width: min(100%, 820px);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 620px);
  }

  .site-header {
    position: static;
  }

  /* No sticky header on phones, so anchors need only a breath of clearance. */
  main [id] {
    scroll-margin-block-start: 16px;
  }

  .header-inner {
    min-height: 64px;
    gap: 14px;
  }

  .brand-link img {
    width: 120px;
  }

  .header-actions {
    margin-inline-start: auto;
    gap: 12px;
  }

  /* The install CTA is the one action a phone visitor needs — it stays.
     The language switch is duplicated in the footer, so it can go. */
  .header-actions .language-link {
    display: none;
  }

  .hero {
    padding-block: 62px 76px;
  }

  .hero-grid {
    gap: 48px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .proof-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .device-boundary {
    margin-inline: -6px;
    padding: 22px;
  }

  .device-boundary::before,
  .device-boundary::after {
    width: 38px;
    border-block-width: 4px;
  }

  .device-boundary::before {
    border-inline-start-width: 4px;
  }

  .device-boundary::after {
    border-inline-end-width: 4px;
  }

  .boundary-label {
    inset-inline-end: 52px;
  }

  .hero-visual img {
    aspect-ratio: 1.18 / 1;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-block-end: 34px;
  }

  .section-heading h2,
  .hebrew-copy h2,
  .privacy-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .process-card {
    display: block;
    padding: 22px 22px 0;
  }

  .process-card p {
    min-height: 0;
  }

  .process-card .screenshot-clip,
  [dir="rtl"] .process-card .screenshot-clip {
    height: 220px;
    margin: 24px -12px 0;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .hebrew-grid {
    min-height: 0;
    gap: 42px;
    padding-block: 74px;
  }

  .hebrew-window {
    transform: none;
  }

  .privacy-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  [dir="rtl"] .flow-arrow {
    transform: rotate(-90deg);
  }

  .install-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-inner p {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Legal pages (terms, refunds, privacy) --------------------------------
   Long-form reading, not marketing layout: a narrow measure, generous spacing,
   and headings that stay scannable when someone is looking for one clause. */
.legal-shell {
  max-width: 68ch;
  padding-block: 3rem 4rem;
}
.legal-shell h1 { margin-bottom: 0.25rem; }
.legal-meta {
  color: var(--muted, #6b6b76);
  font-size: 0.9rem;
  margin-top: 0;
}
.legal-lede {
  font-size: 1.08rem;
  line-height: 1.65;
  margin-block: 1.5rem 2rem;
}
.legal-shell h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  scroll-margin-top: 5rem; /* deep links land below the sticky header */
}
.legal-shell p, .legal-shell li { line-height: 1.7; }
.legal-shell ul { padding-inline-start: 1.3rem; }
.legal-shell li { margin-block: 0.4rem; }
.legal-callout {
  border-inline-start: 3px solid currentColor;
  padding-inline-start: 1rem;
  margin-block: 1.4rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}
.legal-shell pre {
  overflow-x: auto;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.table-scroll { overflow-x: auto; margin-block: 1rem; }
.legal-shell table { border-collapse: collapse; width: 100%; font-size: 0.92rem; }
.legal-shell th, .legal-shell td {
  border: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 18%, transparent);
  padding: 0.4rem 0.6rem;
  text-align: start;
  vertical-align: top;
}
