/* =====================================================
   BOTEN V4 — Components
   WhatsApp phone, sticker layer, pricing, FAQ, hero
   ===================================================== */

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-block: clamp(60px, 8vw, 120px) clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; max-width: 620px; }
.hero-headline { color: var(--ink-0); }
.hero-headline em {
  font-style: normal;
  background: linear-gradient(180deg, var(--gold-200), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Kill all italic on headlines globally */
.h-display, .h-section, .hero-headline,
.h-display em, .h-section em, .hero-headline em,
h1 em, h2 em, h3 em, h4 em { font-style: normal !important; }

/* Highlight em used inside headlines: gold accent without italic */
.h-display em, .h-section em, .hero-headline em {
  color: var(--gold-300);
}

/* Phone display utility — keeps numbers readable in RTL without flipping the line */
.phone-num {
  unicode-bidi: isolate;
  direction: ltr;
  font-feature-settings: "tnum";
  white-space: nowrap;
}
.hero-chips {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  margin-block-start: 12px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--surface-glass);
  border: 1px solid var(--line-1);
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.chip-dot { width: 5px; height: 5px; border-radius: 999px; background: var(--gold-400); }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ===== WhatsApp Phone Demo ===== */
.wa-phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  isolation: isolate;
}
.wa-phone-stage::before {
  content: '';
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(closest-side, rgba(245,165,36,.18), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}
.wa-phone {
  width: min(360px, 100%);
  aspect-ratio: 9 / 19;
  background: #0a0e10;
  border-radius: 44px;
  padding: 12px;
  border: 1px solid #1a1d22;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 50px 120px -30px rgba(0,0,0,0.8),
    0 20px 60px -20px rgba(245,165,36,0.2);
  position: relative;
  overflow: hidden;
}
.wa-phone::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #000;
  border-radius: 16px;
  z-index: 5;
}
.wa-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #0b141a;
  position: relative;
  display: flex; flex-direction: column;
}
.wa-status {
  height: 40px;
  display: flex; align-items: end; justify-content: space-between;
  padding: 0 24px 8px;
  font-family: var(--font-en);
  font-size: 13px; font-weight: 600; color: #fff;
}
.wa-status .icons { display: flex; gap: 6px; align-items: center; opacity: .9; }
.wa-status .icons svg { width: 16px; height: 12px; fill: #fff; }
.wa-header {
  background: var(--green-deep);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  font-family: var(--font-he);
}
body[dir="ltr"] .wa-header { font-family: var(--font-en); }
.wa-back { width: 22px; height: 22px; opacity: .9; flex-shrink: 0; }
.wa-back svg { width: 100%; height: 100%; fill: #fff; }
.wa-avatar {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--gold-400);
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-name { flex: 1; }
.wa-name b { display: block; font-size: 15px; font-weight: 500; }
.wa-name span { display: block; font-size: 11px; opacity: .75; }
.wa-header-actions { display: flex; gap: 16px; opacity: .85; }
.wa-header-actions svg { width: 18px; height: 18px; fill: #fff; }
.wa-thread {
  flex: 1;
  background:
    linear-gradient(rgba(11, 20, 26, .85), rgba(11, 20, 26, .85)),
    repeating-linear-gradient(45deg, #1a2731 0 2px, #11181f 2px 8px);
  background-color: #0b141a;
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
  position: relative;
}
.wa-day {
  align-self: center;
  font-size: 11px;
  background: rgba(30, 47, 56, .8);
  color: #d1d7db;
  padding: 4px 10px;
  border-radius: 8px;
  margin-block-end: 6px;
  font-weight: 500;
}
.wa-msg {
  max-width: 82%;
  padding: 7px 10px 6px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.35;
  color: #e9edef;
  position: relative;
  word-wrap: break-word;
  animation: msg-in .5s var(--ease-out) both;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.wa-msg.user {
  align-self: flex-end;
  background: #005c4b;
  border-end-end-radius: 2px;
}
.wa-msg.bot {
  align-self: flex-start;
  background: #202c33;
  border-end-start-radius: 2px;
}
.wa-msg .meta {
  font-size: 10px;
  color: rgba(233, 237, 239, .6);
  margin-inline-start: 8px;
  display: inline-flex;
  vertical-align: bottom;
}
.wa-msg .meta svg { width: 14px; height: 10px; fill: #53bdeb; margin-inline-start: 2px; }
.wa-typing {
  align-self: flex-start;
  background: #202c33;
  padding: 12px 14px;
  border-radius: 8px;
  display: inline-flex;
  gap: 4px;
  border-end-start-radius: 2px;
}
.wa-typing span {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--ink-2);
  animation: dot-bounce 1.4s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: .2s; }
.wa-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes dot-bounce {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.wa-input {
  background: #0b141a;
  padding: 8px 12px 12px;
  display: flex; align-items: center; gap: 8px;
}
.wa-input-field {
  flex: 1;
  background: #2a3942;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  color: rgba(233, 237, 239, .5);
  display: flex; align-items: center; gap: 8px;
}
.wa-input-send {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--green-500);
  display: grid; place-items: center;
}
.wa-input-send svg { width: 18px; height: 18px; fill: #fff; }

/* Floating ribbon next to phone */
.phone-ribbon {
  position: absolute;
  z-index: 6;
  inset-block-start: 14%;
  inset-inline-start: -16px;
  display: inline-flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(28,24,20,.96), rgba(20,17,14,.96));
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-1);
  max-width: 220px;
  animation: float-y 6s ease-in-out infinite;
}
.phone-ribbon-2 {
  inset-block-start: auto;
  inset-block-end: 16%;
  inset-inline-start: auto;
  inset-inline-end: -16px;
  border-color: var(--line-2);
  animation-delay: -3s;
}
.phone-ribbon strong { color: var(--gold-300); display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-mono); margin-block-end: 4px; font-weight: 500; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 940px) {
  .phone-ribbon { display: none; }
}

/* ===== Sticker layer ===== */
.sticker {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
  animation: float-y 7s ease-in-out infinite;
}
.sticker img { width: 100%; height: 100%; object-fit: contain; }

/* ===== World cards (bento) ===== */
.worlds-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.world {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,250,240,.045), rgba(255,250,240,.01)) padding-box,
    linear-gradient(180deg, rgba(255,250,240,.18), rgba(255,250,240,.04)) border-box;
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s;
  isolation: isolate;
}
.world:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.world::before {
  content: '';
  position: absolute;
  inset-block-end: -40%; inset-inline-end: -40%;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(closest-side, var(--world-glow, rgba(245,165,36,.15)), transparent 70%);
  z-index: -1;
}
.world-tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500;
  margin-block-end: 12px;
}
.world-title {
  font-family: var(--font-display-he);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink-0);
  margin-block-end: 14px;
  text-wrap: balance;
}
body[dir="ltr"] .world-title { font-family: var(--font-display-en); font-weight: 600; letter-spacing: -0.032em; }
.world-desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 38ch;
  margin-block-end: 24px;
  flex: 1;
}
.world-list {
  display: flex; flex-direction: column; gap: 8px;
  margin-block-end: 24px;
}
.world-list li {
  display: flex; align-items: start; gap: 10px;
  font-size: 13.5px;
  color: var(--ink-1);
}
.world-list li::before {
  content: ''; width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--gold-400);
  margin-block-start: 9px;
  flex-shrink: 0;
}
.world-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--gold-300);
  font-family: var(--font-he);
}
body[dir="ltr"] .world-cta { font-family: var(--font-en); }
.world-cta::after {
  content: '→';
  transition: transform .25s var(--ease-out);
}
body[dir="rtl"] .world-cta::after { content: '←'; }
.world:hover .world-cta::after { transform: translateX(4px); }
body[dir="rtl"] .world:hover .world-cta::after { transform: translateX(-4px); }

.world-sticker {
  position: absolute;
  inset-block-start: 20px;
  inset-inline-end: 20px;
  width: 80px; height: 80px;
  opacity: .9;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.4));
}
.world-personal { --world-glow: rgba(245,165,36,.18); grid-column: span 1; grid-row: span 2; min-height: auto; }
.world-business { --world-glow: rgba(37,211,102,.12); }
.world-event { --world-glow: rgba(160,120,255,.12); }
.world-discovery { --world-glow: rgba(100,180,255,.12); grid-column: span 2; min-height: 220px; }

@media (max-width: 980px) {
  .worlds-grid { grid-template-columns: 1fr 1fr; }
  .world-personal, .world-discovery { grid-column: span 2; grid-row: auto; min-height: 280px; }
}
@media (max-width: 640px) {
  .worlds-grid { grid-template-columns: 1fr; }
  .world-personal, .world-discovery { grid-column: span 1; }
}

/* ===== Routing diagram (premium) ===== */
.routing {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245,165,36,.05), transparent 60%),
    linear-gradient(180deg, rgba(255,250,240,.025), rgba(255,250,240,.005));
  border: 1px solid var(--line-1);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 4vw, 56px) clamp(24px, 3vw, 48px);
  overflow: hidden;
}
.routing::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(245,165,36,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: center;
  mask: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.routing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px,1fr) clamp(160px, 16vw, 220px) minmax(260px,1fr);
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
}
.routing-cell {
  position: relative;
}
/* OLD per-row dashed stub — disabled; real SVG lines now drawn in .routing-lines */
.routing-cell.__legacy_stub::after {
  content: '';
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: calc(-1 * (clamp(140px, 14vw, 200px) / 2 + clamp(8px, 1vw, 16px)));
  width: calc(clamp(140px, 14vw, 200px) / 2 + clamp(8px, 1vw, 16px));
  height: 1px;
  background-image: linear-gradient(90deg, rgba(245,165,36,.55) 0 6px, transparent 6px 12px);
  background-size: 12px 1px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: .65;
}
body[dir="rtl"] .routing-cell::after {
  inset-inline-end: auto;
  inset-inline-start: calc(-1 * (clamp(140px, 14vw, 200px) / 2 + clamp(8px, 1vw, 16px)));
}
.routing-cell.out::after {
  inset-inline-end: auto;
  inset-inline-start: calc(-1 * (clamp(140px, 14vw, 200px) / 2 + clamp(8px, 1vw, 16px)));
}
body[dir="rtl"] .routing-cell.out::after {
  inset-inline-start: auto;
  inset-inline-end: calc(-1 * (clamp(140px, 14vw, 200px) / 2 + clamp(8px, 1vw, 16px)));
}
.routing-col-label {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px,1fr) clamp(160px, 16vw, 220px) minmax(260px,1fr);
  gap: clamp(16px, 2vw, 32px);
  margin-block-end: 8px;
}
.routing-col-label > div {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.routing-col-label > div:nth-child(2) {
  text-align: center;
  color: var(--gold-300);
}
.routing-col-label > div:nth-child(3) {
  text-align: end;
}
.routing-in, .routing-out {
  display: flex; flex-direction: column;
  gap: 10px;
}
.routing-cell {
  background: var(--surface-glass);
  border: 1px solid var(--line-1);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink-1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .25s, border-color .25s;
}
.routing-cell:hover {
  border-color: var(--line-2);
  transform: translateX(var(--rt-shift, 4px));
}
body[dir="rtl"] .routing-cell:hover { transform: translateX(calc(-1 * var(--rt-shift, 4px))); }
.routing-cell .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  display: block;
}
.routing-cell .body {
  display: block;
  line-height: 1.45;
}
.routing-cell.out {
  border-color: rgba(245,165,36,.22);
  background: linear-gradient(135deg, rgba(245,165,36,.07), rgba(245,165,36,.02));
}
.routing-cell.out .tag { color: var(--gold-300); }

/* Center node */
.routing-core {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 220px;
}
.routing-core-disk {
  position: relative;
  z-index: 3;
  width: clamp(150px, 15vw, 176px);
  height: clamp(108px, 11vw, 126px);
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(255,230,150,.18) 1px, transparent 1px) 50% 50% / 18px 18px,
    linear-gradient(0deg, rgba(255,230,150,.12) 1px, transparent 1px) 50% 50% / 18px 18px,
    radial-gradient(circle at 30% 22%, rgba(255,232,170,.35), transparent 42%),
    linear-gradient(155deg, #3a2410 0%, #1b140f 46%, #0d0f12 100%);
  box-shadow:
    0 0 0 1px rgba(255,198,88,.70),
    0 0 0 7px rgba(245,165,36,.08),
    0 0 0 18px rgba(245,165,36,.025),
    0 24px 70px -18px rgba(245,165,36,.58),
    0 0 48px rgba(245,165,36,.22),
    inset 0 1px 0 rgba(255,230,170,.35),
    inset 0 -18px 34px rgba(0,0,0,.42);
}
.routing-core-disk::before {
  content: '';
  position: absolute;
  inset: -22px -20px;
  border-radius: 28px;
  z-index: -1;
  background:
    repeating-linear-gradient(180deg, transparent 0 9px, rgba(245,165,36,.72) 9px 14px, transparent 14px 23px) left center / 16px calc(100% - 36px) no-repeat,
    repeating-linear-gradient(180deg, transparent 0 9px, rgba(245,165,36,.72) 9px 14px, transparent 14px 23px) right center / 16px calc(100% - 36px) no-repeat,
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(245,165,36,.55) 10px 15px, transparent 15px 26px) center top / calc(100% - 46px) 12px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(245,165,36,.38) 10px 15px, transparent 15px 26px) center bottom / calc(100% - 46px) 12px no-repeat;
  filter: drop-shadow(0 0 7px rgba(245,165,36,.22));
  opacity: .92;
  pointer-events: none;
}
.routing-core-disk::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(245,165,36,.32);
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(245,165,36,.16) 12.5% 13%, transparent 13.5% 86%, rgba(245,165,36,.12) 86.5% 87%, transparent 87.5%),
    linear-gradient(180deg, rgba(255,220,140,.07), transparent 55%);
  box-shadow: inset 0 0 18px rgba(245,165,36,.08);
  pointer-events: none;
}
.routing-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: clamp(180px, 22vw, 220px);
  min-height: clamp(180px, 22vw, 220px);
  justify-self: center;
}
.routing-core-eyebrow {
  position: absolute;
  inset-block-start: -22px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--gold-300);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}
.routing-core-label {
  position: relative;
  z-index: 3;
  margin-block-start: 12px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--gold-300);
  text-align: center;
  display: block;
  text-transform: uppercase;
}
.routing-core-logo {
  position: relative;
  z-index: 2;
  width: 70px; height: 70px;
  display: grid; place-items: center;
  border-radius: 20px;
  background:
    radial-gradient(circle at 40% 28%, rgba(255,225,150,.18), transparent 45%),
    linear-gradient(180deg, rgba(245,165,36,.14), rgba(245,165,36,.03));
  box-shadow:
    inset 0 1px 0 rgba(255,235,180,.22),
    inset 0 -8px 18px rgba(0,0,0,.22),
    0 0 0 1px rgba(245,165,36,.18);
}
.routing-core-logo img {
  width: 58px; height: 58px;
  object-fit: contain;
  filter:
    brightness(0)
    invert(84%)
    sepia(65%)
    saturate(633%)
    hue-rotate(335deg)
    brightness(106%)
    contrast(97%)
    drop-shadow(0 1px 0 rgba(0,0,0,.55))
    drop-shadow(0 0 10px rgba(245,165,36,.18));
  opacity: .58;
  mix-blend-mode: screen;
}
.routing-core-pulse {
  position: absolute;
  z-index: 1;
  width: clamp(150px, 15vw, 176px);
  height: clamp(108px, 11vw, 126px);
  border-radius: 28px;
  border: 1px solid rgba(245,165,36,.45);
  animation: pulse 3s ease-out infinite;
}
.routing-core-pulse:nth-child(2) { animation-delay: -1.5s; }
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Connector lines — real SVG from disc center to every cell */
.routing-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.routing-lines path {
  fill: none;
  stroke: url(#rt-grad);
  stroke-width: 1.25;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(245,165,36,.35));
  opacity: 0;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: rt-draw 1.4s cubic-bezier(.65,0,.35,1) forwards;
}
.routing-lines path.in  { animation-delay: calc(var(--i, 0) * 120ms); }
.routing-lines path.out { animation-delay: calc(400ms + var(--i, 0) * 120ms); }
@keyframes rt-draw {
  to { opacity: 1; stroke-dashoffset: 0; }
}
.routing-lines circle.endpoint {
  fill: var(--gold-300);
  opacity: 0;
  animation: rt-dot .4s ease-out forwards;
  animation-delay: calc(1s + var(--i,0)*120ms);
  filter: drop-shadow(0 0 4px rgba(245,165,36,.7));
}
@keyframes rt-dot { to { opacity: 1; } }
.routing-lines path.__hidden {
  stroke-width: 1.5;
  stroke-dasharray: 4 5;
  stroke-linecap: round;
  animation: dash-flow 12s linear infinite;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -200; }
}

@media (max-width: 820px) {
  .routing-grid, .routing-col-label { grid-template-columns: 1fr; }
  .routing-col-label > div:nth-child(2),
  .routing-col-label > div:nth-child(3) { text-align: start; }
  .routing-core { padding-block: 24px; min-height: 0; }
  .routing-core-disk { width: 118px; height: 84px; border-radius: 20px; }
  .routing-core-logo { width: 56px; height: 56px; border-radius: 16px; }
  .routing-core-logo img { width: 48px; height: 48px; }
  .routing-core-pulse { width: 118px; height: 84px; border-radius: 22px; }
  .routing-lines { display: none; }
}

/* ===== Pricing ===== */
.pricing-tabs {
  display: inline-flex;
  background: var(--surface-glass);
  border: 1px solid var(--line-1);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.pricing-tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color .2s, background .2s;
  font-family: var(--font-he);
}
body[dir="ltr"] .pricing-tab { font-family: var(--font-en); }
.pricing-tab.active {
  background: var(--ink-0);
  color: var(--bg-0);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-block-start: 40px;
}
.plan {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,250,240,.04), rgba(255,250,240,.015)) padding-box,
    linear-gradient(180deg, rgba(255,250,240,.16), rgba(255,250,240,.04)) border-box;
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease-out);
}
.plan:hover { transform: translateY(-3px); }
.plan.featured {
  background:
    linear-gradient(180deg, rgba(245,165,36,.1), rgba(245,165,36,.02)) padding-box,
    linear-gradient(180deg, var(--gold-300), rgba(245,165,36,.15)) border-box;
  box-shadow: 0 30px 80px -30px rgba(245,165,36,.4);
}
.plan-badge {
  position: absolute;
  inset-block-start: -12px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  color: #1a1100;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  font-family: var(--font-he);
}
body[dir="ltr"] .plan-badge { font-family: var(--font-en); }
.plan-name {
  font-family: var(--font-display-he);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-block-end: 14px;
  color: var(--ink-0);
}
body[dir="ltr"] .plan-name { font-family: var(--font-display-en); font-weight: 600; letter-spacing: -0.03em; }
.plan-price {
  font-family: var(--font-display-en);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-0);
  margin-block-end: 4px;
}
.plan-price small {
  font-family: var(--font-he);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-3);
  margin-inline-start: 6px;
}
body[dir="ltr"] .plan-price small { font-family: var(--font-en); }
.plan-tag {
  font-size: 13px;
  color: var(--ink-2);
  margin-block-end: 24px;
  padding-block-end: 24px;
  border-block-end: 1px solid var(--line-1);
  min-height: 60px;
}
.plan-features {
  display: flex; flex-direction: column;
  gap: 12px;
  margin-block-end: 28px;
  flex: 1;
}
.plan-features li {
  display: flex; align-items: start; gap: 10px;
  font-size: 14px;
  color: var(--ink-1);
  line-height: 1.45;
}
.plan-features li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-block-start: 2px;
  color: var(--gold-400);
}
.plan .btn { width: 100%; }
@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-block-end: 1px solid var(--line-1);
  padding-block: 4px;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 22px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-0);
  text-align: start;
  font-family: var(--font-he);
  letter-spacing: -0.005em;
}
body[dir="ltr"] .faq-q { font-family: var(--font-en); }
.faq-q::after {
  content: '';
  width: 14px; height: 14px;
  background:
    linear-gradient(var(--ink-2), var(--ink-2)) center/100% 1.5px no-repeat,
    linear-gradient(var(--ink-2), var(--ink-2)) center/1.5px 100% no-repeat;
  transition: transform .3s var(--ease-out);
  flex-shrink: 0;
  margin-inline-start: 16px;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); background: linear-gradient(var(--ink-2), var(--ink-2)) center/100% 1.5px no-repeat; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out), padding .35s;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 64ch;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding-block-end: 22px;
}

/* ===== Languages strip ===== */
.langs {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 32px;
}
.lang-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface-glass);
  border: 1px solid var(--line-1);
  font-size: 14px;
  color: var(--ink-1);
  display: inline-flex; gap: 8px; align-items: center;
}
.lang-chip span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

/* ===== Marquee ===== */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 16px;
  border-block: 1px solid var(--line-1);
  background: var(--bg-1);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 48px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  padding-inline-end: 48px;
  font-family: var(--font-display-he);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink-2);
  letter-spacing: -0.015em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .dot {
  width: 6px; height: 6px;
  background: var(--gold-400);
  border-radius: 999px;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
body[dir="rtl"] .marquee-track { animation-direction: reverse; }

/* ===== Premium FAQ split panel ===== */
.faq-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  background:
    linear-gradient(180deg, rgba(255,250,240,.035), rgba(255,250,240,.01)) padding-box,
    linear-gradient(180deg, rgba(255,250,240,.16), rgba(255,250,240,.04)) border-box;
  border: 1px solid transparent;
  border-radius: var(--r-2xl);
  padding: clamp(24px, 3vw, 40px);
}
.faq-cats {
  display: flex; flex-direction: column; gap: 4px;
  border-inline-end: 1px solid var(--line-1);
  padding-inline-end: 16px;
}
body[dir="rtl"] .faq-cats { border-inline-end: 1px solid var(--line-1); }
.faq-cat {
  text-align: start;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  transition: background .2s, color .2s;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-cat:hover { color: var(--ink-0); background: var(--surface-glass); }
.faq-cat.active {
  background: var(--surface-glass-2);
  color: var(--ink-0);
  font-weight: 600;
}
.faq-cat .count {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3);
  background: rgba(255,250,240,.06); padding: 2px 8px; border-radius: 999px;
}
.faq-panel { display: none; }
.faq-panel.active { display: block; }
.faq-panel .faq-item:first-child { border-block-start: 0; padding-block-start: 0; }
.faq-panel .faq-item:first-child .faq-q { padding-block-start: 0; }
@media (max-width: 760px) {
  .faq-split { grid-template-columns: 1fr; gap: 16px; }
  .faq-cats { flex-direction: row; flex-wrap: wrap; border: 0; padding: 0; gap: 6px; }
  .faq-cat { padding: 8px 12px; font-size: 13px; }
  .faq-cat .count { display: none; }
}

/* ===== Section bg variants ===== */
.section-alt { background: var(--bg-1); border-block: 1px solid var(--line-1); }

/* ===== Step list ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--surface-glass);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold-300);
  display: block;
  margin-block-end: 12px;
}
.step h3 {
  font-family: var(--font-display-he);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--ink-0);
  margin-block-end: 8px;
}
body[dir="ltr"] .step h3 { font-family: var(--font-display-en); font-weight: 600; }
.step p { font-size: 14.5px; color: var(--ink-2); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ===== Feature row (alternating) ===== */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(40px, 5vw, 80px);
}
.feat-row.flip .feat-text { order: 2; }
.feat-art {
  position: relative;
  background: linear-gradient(180deg, rgba(255,250,240,.04), rgba(255,250,240,.01));
  border: 1px solid var(--line-1);
  border-radius: var(--r-xl);
  padding: 32px;
  min-height: 320px;
  display: grid; place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.feat-art::before {
  content: '';
  position: absolute; inset: -10%;
  background: radial-gradient(closest-side, rgba(245,165,36,.13), transparent 70%);
  z-index: -1;
}
@media (max-width: 880px) {
  .feat-row { grid-template-columns: 1fr; }
  .feat-row.flip .feat-text { order: 0; }
}

/* ===== Mock card (lead summary, etc) ===== */
.mock {
  width: 100%; max-width: 360px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 18px;
  font-size: 13.5px;
  color: var(--ink-1);
  box-shadow: var(--shadow-card);
}
.mock-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
  padding-block-end: 12px;
  border-block-end: 1px solid var(--line-1);
  margin-block-end: 14px;
}
.mock-head .pill { background: rgba(245,165,36,.18); color: var(--gold-300); padding: 3px 8px; border-radius: 999px; }
.mock dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 0; }
.mock dt { color: var(--ink-3); font-size: 12px; }
.mock dd { margin: 0; color: var(--ink-0); font-weight: 500; }

/* Photo album mock */
.album {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%; max-width: 360px;
}
.album-tile {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c1, rgba(245,165,36,.3)), var(--c2, rgba(160,120,255,.25)));
  position: relative;
  overflow: hidden;
}
.album-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 4px, transparent 4px 10px);
}

/* Discovery list */
.disco-list { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 380px; }
.disco-item {
  background: var(--surface-glass-2);
  border: 1px solid var(--line-1);
  border-radius: 14px;
  padding: 14px;
  display: flex; gap: 12px; align-items: center;
}
.disco-thumb {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid; place-items: center;
  font-family: var(--font-display-en); font-weight: 700; color: #1a1100; font-size: 18px;
}
.disco-name { font-weight: 600; font-size: 14px; }
.disco-meta { font-size: 12px; color: var(--ink-3); margin-block-start: 2px; }

/* ===== Legal pages ===== */
.legal-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
.legal-toc {
  position: sticky; inset-block-start: 96px;
  display: flex; flex-direction: column; gap: 4px;
  border-inline-end: 1px solid var(--line-1);
  padding-inline-end: 16px;
}
.legal-toc a {
  padding: 10px 12px; border-radius: 10px;
  font-size: 13.5px; color: var(--ink-3);
  font-family: var(--font-mono); letter-spacing: 0.02em;
}
.legal-toc a:hover { color: var(--ink-0); background: var(--surface-glass); }
.legal-toc a.active { color: var(--gold-300); background: var(--surface-glass); }
.legal-content { max-width: 720px; }
.legal-content h2 {
  font-family: var(--font-display-he); font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.018em;
  margin: 48px 0 16px; color: var(--ink-0);
}
body[dir="ltr"] .legal-content h2 { font-family: var(--font-display-en); font-weight: 600; }
.legal-content h2:first-child { margin-block-start: 0; }
.legal-content h3 {
  font-family: var(--font-display-he); font-weight: 700;
  font-size: 18px; margin: 24px 0 8px; color: var(--ink-0);
}
.legal-content p, .legal-content li {
  font-size: 15.5px; line-height: 1.65; color: var(--ink-1);
  margin-block-end: 12px;
}
.legal-content ul, .legal-content ol {
  margin: 0 0 16px; padding-inline-start: 20px;
  list-style: disc;
}
.legal-content a { color: var(--gold-300); text-decoration: underline; text-underline-offset: 3px; }
.legal-summary {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-block-end: 40px;
  padding: 24px;
  background: var(--surface-glass);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
}
.legal-summary div {
  font-size: 13px; color: var(--ink-2); line-height: 1.5;
}
.legal-summary div strong {
  display: block; color: var(--ink-0); font-weight: 600;
  font-size: 13.5px; margin-block-end: 4px;
  font-family: var(--font-display-he);
}
body[dir="ltr"] .legal-summary div strong { font-family: var(--font-display-en); }
.legal-meta {
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--ink-3); letter-spacing: 0.06em;
  padding: 14px 18px; background: var(--bg-2);
  border: 1px solid var(--line-1); border-radius: 10px;
  margin-block-end: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.legal-flag {
  background: rgba(245,165,36,.08);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 14px; color: var(--ink-1);
  margin-block: 24px;
}
.legal-flag strong { color: var(--gold-300); display: block; margin-block-end: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-mono); font-weight: 500; }

/* Legal hub cards */
.legal-hub-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.legal-hub-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px;
  background: var(--surface-glass);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  transition: transform .25s, border-color .25s;
}
.legal-hub-card:hover { transform: translateY(-3px); border-color: var(--line-gold); }
.legal-hub-card .arr { margin-block-start: auto; color: var(--gold-300); font-size: 18px; padding-block-start: 14px; }

/* tabs (legal) */
.tabs {
  display: inline-flex; background: var(--surface-glass); border: 1px solid var(--line-1);
  border-radius: 999px; padding: 4px; gap: 2px; margin-block-end: 24px;
}
.tab {
  padding: 10px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  color: var(--ink-2); transition: color .2s, background .2s;
}
.tab.active { background: var(--ink-0); color: var(--bg-0); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

@media (max-width: 880px) {
  .legal-shell { grid-template-columns: 1fr; }
  .legal-toc { position: static; flex-direction: row; flex-wrap: wrap; border: 0; padding: 0; }
}
.cta-block {
  position: relative;
  background:
    radial-gradient(800px circle at 50% -20%, rgba(245,165,36,.18), transparent 60%),
    linear-gradient(180deg, rgba(245,165,36,.04), rgba(0,0,0,0));
  border: 1px solid var(--line-gold);
  border-radius: var(--r-2xl);
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}
.cta-block .h-section { margin-inline: auto; max-width: 18ch; }
.cta-block .lede { margin-inline: auto; margin-block: 18px 32px; }
.cta-block .hero-actions { justify-content: center; }
