/* =========================================================
   Shaveli — marketing site
   Tokens → base → components → sections → RTL → responsive
   ========================================================= */

:root {
  /* Brand — sampled from the Shaveli mark */
  --brand: #0664f7;
  --brand-ink: #0047c9;
  --brand-wash: #edf3ff;
  --brand-line: #cfe0ff;
  --teal: #0aa89f;          /* decorative only — too light for text */
  --teal-ink: #07736b;      /* AA on --teal-wash */
  --teal-wash: #e2f7f5;
  --lime: #9cf500;          /* decorative only */

  /* Neutrals */
  --ink: #0b1b33;
  --ink-2: #2b3d59;
  --muted: #56657e;
  --muted-2: #68748a;       /* quietest text that still clears AA on white */
  --line: #e3e9f2;
  --line-soft: #eef2f8;
  --canvas: #f6f8fc;
  --surface: #ffffff;
  --deep: #08172e;

  /* Feedback */
  --ok: #0a7a5f;
  --warn: #8a5a06;
  --warn-wash: #fdf3e0;
  --danger: #b42318;

  /* Type */
  --display: 'Rubik', 'Heebo', system-ui, sans-serif;
  --text: 'Inter', 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Shape + depth */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(11, 27, 51, .06), 0 4px 12px -6px rgba(11, 27, 51, .14);
  --shadow-md: 0 1px 2px rgba(11, 27, 51, .05), 0 18px 40px -22px rgba(11, 27, 51, .28);
  --shadow-lg: 0 2px 4px rgba(11, 27, 51, .04), 0 40px 80px -40px rgba(9, 41, 92, .42);

  --ease: cubic-bezier(.22, .68, .3, 1);
  --gutter: 24px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--canvas);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'cv05' 1, 'ss01' 1;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

body > main { flex: 1 0 auto; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 1.75rem + 3.1vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -.035em;
}

h2 {
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -.03em;
}

h3 {
  font-size: 1.0625rem;
  line-height: 1.35;
  letter-spacing: -.015em;
}

p { margin: 0; }

a { color: var(--brand); text-underline-offset: 3px; }
a:hover { color: var(--brand-ink); }

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

::selection { background: #cfe0ff; color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

.on-deep :focus-visible,
.site-foot :focus-visible { outline-color: #8fc0ff; }

/* ---------- Layout helpers ---------- */

.wrap {
  width: min(1180px, 100% - (var(--gutter) * 2));
  margin-inline: auto;
}

/* Honeypot wrapper — off-screen rather than display:none, so Netlify still
   registers the field and assistive tech is not lied to about the form. */
.hidden {
  position: absolute !important;
  inset-inline-start: -10000px !important;
}

.delete-card {
  max-width: 760px;
  margin: 0 auto 64px;
  padding: clamp(24px, 5vw, 48px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}

.delete-card h2 { margin: 28px 0 10px; font-size: 1.35rem; }
.delete-card p + p { margin-top: 12px; }
.delete-card hr { margin: 32px 0; border: 0; border-top: 1px solid var(--line); }
.delete-form { display: grid; gap: 12px; margin-top: 20px; }
.delete-form > label { font-weight: 600; }
.delete-form input[type="email"] {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}
.delete-form .delete-confirm { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; }
.delete-form .delete-confirm input { margin-top: 6px; }
.delete-form .btn { justify-self: start; border: 0; cursor: pointer; }
.delete-success { margin-top: 12vh; text-align: center; }
.delete-success h1 { margin: 18px 0; }
.delete-success .btn { display: inline-flex; margin-top: 24px; }

.skip {
  position: absolute;
  inset-inline-start: 16px;
  top: -100px;
  z-index: 50;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: top .18s var(--ease);
}
.skip:focus { top: 14px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-ink);
  background: var(--brand-wash);
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  padding: 7px 14px;
}

.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(6, 100, 247, .15);
  animation: pulse 2.6s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(6, 100, 247, .16); }
  50% { box-shadow: 0 0 0 6px rgba(6, 100, 247, .05); }
}

.section-head { max-width: 46ch; }
.section-head h2 { margin: 18px 0 0; }
.section-head .lead { margin-top: 16px; }

.lead {
  font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 58ch;
}

/* ---------- Header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 248, 252, .82);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.site-head.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, .86);
}

.head-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand .mark { width: 38px; height: 38px; border-radius: 11px; }

.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -.025em;
}

.brand-alt {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  padding-inline-start: 11px;
  margin-inline-start: 1px;
  border-inline-start: 1px solid var(--line);
}

.langs {
  display: flex;
  gap: 2px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.langs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 999px;
  font: 600 .8125rem var(--text);
  cursor: pointer;
  transition: color .16s var(--ease), background .16s var(--ease);
}
.langs button:hover { color: var(--ink); background: var(--line-soft); }
.langs button[aria-pressed='true'] {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 4px 12px -4px rgba(6, 100, 247, .6);
}
.langs button[lang='he'] { font-family: var(--display); }

/* ---------- Buttons + fields ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding-inline: 26px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font: 600 .9375rem var(--text);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .16s var(--ease), box-shadow .2s var(--ease), background .16s var(--ease);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 1px rgba(11, 27, 51, .08), 0 12px 24px -12px rgba(6, 100, 247, .9);
}
.btn-primary:hover { background: var(--brand-ink); color: #fff; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: .6; cursor: progress; transform: none; }

.field-label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
}

.field-row {
  display: flex;
  gap: 10px;
}

.field {
  flex: 1 1 auto;
  min-width: 0;
  height: 54px;
  border: 1px solid #cdd8e8;
  border-radius: var(--r-sm);
  background: var(--surface);
  padding-inline: 16px;
  font: 400 1rem var(--text);
  color: var(--ink);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field::placeholder { color: var(--muted-2); }
.field:hover { border-color: #b8c7dd; }
.field:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(6, 100, 247, .16);
}
.field:focus-visible { outline: none; }
.field[aria-invalid='true'] { border-color: var(--danger); }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 14px;
  cursor: pointer;
}
.consent input {
  flex: none;
  margin: 3px 0 0;
  width: 17px; height: 17px;
  accent-color: var(--brand);
}

.form-status {
  font-size: .875rem;
  font-weight: 500;
  margin-top: 12px;
  min-height: 1px;
}
.form-status.success { color: var(--ok); }
.form-status.error { color: var(--danger); }

.fine {
  font-size: .8125rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(40px, 5vw, 76px) clamp(56px, 7vw, 104px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: -76px 0 auto;
  height: 620px;
  background-image:
    linear-gradient(to right, rgba(11, 27, 51, .055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 27, 51, .055) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: radial-gradient(115% 78% at 50% 0%, #000 5%, transparent 68%);
  mask-image: radial-gradient(115% 78% at 50% 0%, #000 5%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
}

.hero h1 { margin: 22px 0 20px; }
.hero .lead { margin-bottom: 34px; }

.signup {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
  max-width: 560px;
}

.signup form { margin: 0; }

/* ---------- Product scene (illustration) ---------- */

.hero-scene { position: relative; }

.hero-scene::before {
  content: '';
  position: absolute;
  inset: -14% -6% -10%;
  background: radial-gradient(closest-side, rgba(6, 100, 247, .16), rgba(6, 100, 247, 0) 100%);
  filter: blur(4px);
  pointer-events: none;
}

.scene-fig { position: relative; margin: 0; }

.scene {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.scene-search {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 52px;
  padding-inline: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfcfe;
  color: var(--ink-2);
  font-size: .9375rem;
  overflow: hidden;
}
.scene-search svg { flex: none; color: var(--brand); }
.scene-query {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.caret {
  flex: none;
  width: 2px;
  height: 1.1em;
  background: var(--brand);
  border-radius: 1px;
  animation: blink 1.15s steps(1) infinite;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

.scene-panel {
  margin-top: 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: #fcfdff;
  padding: 16px;
}

.scene-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.scene-head strong {
  font-family: var(--display);
  font-size: .9375rem;
  font-weight: 600;
}
.scene-head span { font-size: .8125rem; color: var(--muted); }

.offers { list-style: none; margin: 0; padding: 0; }

.offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    'name price'
    'tag  price';
  align-items: center;
  gap: 6px 12px;
  padding: 14px 10px;
  margin-inline: -10px;
  border-radius: var(--r-sm);
  border-bottom: 1px solid var(--line-soft);
  animation: rise .55s var(--ease) backwards;
}
.offer:last-child { border-bottom: 0; padding-bottom: 4px; }
.offer:nth-child(1) { animation-delay: .12s; }
.offer:nth-child(2) { animation-delay: .24s; }
.offer:nth-child(3) { animation-delay: .36s; }

.offer.is-match { background: rgba(226, 247, 245, .55); box-shadow: inset 0 0 0 1px rgba(10, 168, 159, .18); }

.offer-name {
  grid-area: name;
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.4;
}

.price {
  grid-area: price;
  align-self: center;
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}

.tag {
  grid-area: tag;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.tag svg { flex: none; }
.tag-ok { color: var(--teal-ink); background: var(--teal-wash); border-color: rgba(10, 168, 159, .35); }
.tag-warn { color: var(--warn); background: var(--warn-wash); border-color: rgba(138, 90, 6, .22); }

.scene-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line-soft);
  font-size: .8125rem;
  color: var(--muted);
}
.scene-foot svg { flex: none; color: var(--brand); }

.scene-cap {
  margin-top: 14px;
  font-size: .75rem;
  color: var(--muted-2);
  text-align: center;
}

/* ---------- Proof strip ---------- */

.proof { padding-block: 0 clamp(48px, 6vw, 88px); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.proof-grid article {
  background: var(--surface);
  padding: 26px 24px;
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--brand-wash);
  color: var(--brand);
  margin-bottom: 16px;
}

.proof-grid h3 { margin-bottom: 6px; }
.proof-grid p { font-size: .875rem; color: var(--muted); line-height: 1.55; }

/* ---------- Product section ---------- */

.product {
  padding-block: clamp(56px, 7vw, 104px);
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(36px, 4vw, 56px);
}

.feature {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #fbfcff, #fff 60%);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.feature:hover {
  transform: translateY(-2px);
  border-color: var(--brand-line);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  margin-bottom: 18px;
}

.feature h3 { font-size: 1.1875rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .9375rem; }

/* ---------- Market band ---------- */

.band {
  background: var(--deep);
  color: #eaf1fb;
  position: relative;
  overflow: hidden;
}
.band::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(to right, var(--brand) 0 38%, var(--teal) 38% 72%, var(--lime) 72% 100%);
}

.band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: clamp(38px, 4.5vw, 58px);
}

.band p {
  font-family: var(--display);
  font-size: clamp(1.125rem, 1rem + .7vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.015em;
  max-width: 34ch;
}

.wordmarks {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: #8fb4e8;
}
.wordmarks span { white-space: nowrap; }
.wordmarks i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .6;
}

/* ---------- FAQ ---------- */

.faq { padding-block: clamp(56px, 7vw, 104px); }

.faq-list {
  margin-top: clamp(30px, 3.5vw, 46px);
  border-top: 1px solid var(--line);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 12px 40px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}
.faq-item h3 { font-size: 1.125rem; }
.faq-item p { color: var(--muted); }

/* ---------- Closing CTA ---------- */

.cta { padding-block: clamp(56px, 7vw, 100px); }

.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(34px, 5vw, 64px);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-card::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(to right, var(--brand), var(--teal) 62%, var(--lime));
}
.cta-card .mark { width: 56px; height: 56px; border-radius: 16px; margin-inline: auto; }
.cta-card h2 { margin: 20px 0 12px; }
.cta-card .lead { margin-inline: auto; margin-bottom: 28px; }

/* ---------- Footer ---------- */

.site-foot {
  background: var(--ink);
  color: #b9c7dc;
  padding-block: 32px;
  margin-top: auto;
}

.foot-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .875rem;
}
.foot-brand .mark { width: 30px; height: 30px; border-radius: 9px; }

.site-foot nav { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.site-foot a {
  color: #dce7f6;
  font-size: .875rem;
  text-decoration: none;
}
.site-foot a:hover { color: #fff; text-decoration: underline; }

/* ---------- Legal pages ---------- */

.legal { padding-block: clamp(34px, 4vw, 56px) clamp(64px, 8vw, 110px); }

.legal-head { max-width: 62ch; }
.legal-head h1 {
  font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.4rem);
  margin: 18px 0 10px;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 26px;
}
.back:hover { text-decoration: underline; }

.updated { color: var(--muted); font-size: .9375rem; }

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(32px, 4vw, 52px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.legal-toc h2 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: .875rem;
  line-height: 1.4;
  color: var(--ink-2);
  text-decoration: none;
}
.legal-toc a::before {
  content: counter(toc);
  flex: none;
  min-width: 1.6em;
  font-variant-numeric: tabular-nums;
  color: var(--muted-2);
}
.legal-toc a:hover { color: var(--brand); }
.legal-toc a:hover::before { color: var(--brand); }

.legal-body { counter-reset: sec; }

.legal-section {
  counter-increment: sec;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  margin-bottom: 14px;
  scroll-margin-top: 96px;
}
.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 1.1875rem;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.legal-section h2::before {
  content: counter(sec, decimal-leading-zero);
  font-size: .75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--brand);
  letter-spacing: .08em;
}
.legal-section p {
  color: var(--ink-2);
  font-size: .9375rem;
  line-height: 1.72;
}

/* ---------- Thanks page ---------- */

.thanks {
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(56px, 9vw, 120px);
}
.thanks .mark { width: 68px; height: 68px; border-radius: 20px; }
.thanks h1 {
  font-size: clamp(2rem, 1.6rem + 2vw, 3.1rem);
  margin: 26px 0 14px;
}
.thanks .lead { margin-inline: auto; }
.thanks .back { margin: 30px 0 0; }

/* ---------- Motion ---------- */

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* Reveal is additive: content is visible without JS, and animates when scrolled into view. */
.reveal-in { animation: rise .6s var(--ease) both; }

.hero-copy > *,
.hero-scene { animation: rise .7s var(--ease) backwards; }
.hero-copy > *:nth-child(1) { animation-delay: .04s; }
.hero-copy > *:nth-child(2) { animation-delay: .1s; }
.hero-copy > *:nth-child(3) { animation-delay: .16s; }
.hero-copy > *:nth-child(4) { animation-delay: .22s; }
.hero-scene { animation-delay: .26s; }

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

/* ---------- RTL ---------- */

html[dir='rtl'] body { font-family: 'Heebo', 'Rubik', system-ui, sans-serif; }
html[dir='rtl'] h1,
html[dir='rtl'] h2,
html[dir='rtl'] h3,
html[dir='rtl'] .price,
html[dir='rtl'] .band p,
html[dir='rtl'] .brand-name,
html[dir='rtl'] .wordmarks { font-family: 'Rubik', 'Heebo', system-ui, sans-serif; }
html[dir='rtl'] h1 { letter-spacing: -.01em; }
html[dir='rtl'] h2,
html[dir='rtl'] h3 { letter-spacing: 0; }
html[dir='rtl'] .eyebrow { letter-spacing: .06em; }
html[dir='rtl'] .scene-search svg,
html[dir='rtl'] .scene-foot svg { transform: scaleX(-1); }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-scene { max-width: 620px; width: 100%; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-toc ol { columns: 2; column-gap: 28px; }
}

@media (max-width: 860px) {
  .proof-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .faq-item { grid-template-columns: 1fr; gap: 8px; }
  .band-inner { padding-block: 34px; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; }
  html { scroll-padding-top: 76px; }
  .head-inner { height: 66px; }
  .brand .mark { width: 34px; height: 34px; }
  .brand-name { font-size: 1.15rem; }
  .brand-alt { display: none; }
  .langs button { padding: 7px 10px; }
  .hero { padding-top: 26px; }
  .hero h1 { margin-top: 18px; }
  .signup { padding: 18px; border-radius: var(--r-md); }
  .field-row { flex-direction: column; }
  .btn { width: 100%; }
  .scene { padding: 14px; border-radius: var(--r-lg); }
  .scene-search { height: 46px; font-size: .8125rem; padding-inline: 13px; }
  .scene-panel { padding: 13px; }
  .offer { grid-template-columns: 1fr auto; }
  .proof-grid article { padding: 22px 20px; }
  .feature { padding: 24px 22px; }
  .legal-toc ol { columns: 1; }
  .legal-section { padding: 22px 20px; }
  .foot-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .site-foot nav { gap: 8px 20px; }
}
