/* =========================================================================
   Toons — Landing
   Solid grid + liquid motion. AI-startup energy, Iraqi soul.
   ========================================================================= */

/* ── Fonts ─────────────────────────────────────────────────────────────── */

@font-face { font-family: "Ping"; src: url("../fonts/ping-ar-lt-light.otf") format("opentype");    font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Ping"; src: url("../fonts/ping-ar-lt-regular.otf") format("opentype");  font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Ping"; src: url("../fonts/ping-ar-lt-medium.otf") format("opentype");   font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Ping"; src: url("../fonts/ping-ar-lt-bold.otf") format("opentype");     font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Ping"; src: url("../fonts/ping-ar-lt-heavy.otf") format("opentype");    font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Ping"; src: url("../fonts/ping-ar-lt-black.otf") format("opentype");    font-weight: 900; font-style: normal; font-display: swap; }

/* ── Tokens ────────────────────────────────────────────────────────────── */

:root {
  /* Ink */
  --ink:        #0B0A0A;
  --ink-2:      #1F1C19;
  --ink-3:      #5C5751;
  --ink-mute:   #9A938B;

  /* Surfaces — warm cream base, near-white raised */
  --paper:      #FBF7F1;
  --paper-2:    #F5EFE5;
  --surface:    #FFFFFF;

  /* Lines */
  --line:       rgba(11, 10, 10, 0.10);
  --line-soft:  rgba(11, 10, 10, 0.06);
  --line-strong:rgba(11, 10, 10, 0.18);
  --grid:       rgba(11, 10, 10, 0.05);

  /* Brand — true orange family */
  --brand:        #FF7A1A;            /* primary */
  --brand-2:      #FFB066;            /* warm peach (gradient companion) */
  --brand-3:      #FFD89E;            /* soft glow */
  --brand-deep:   #E85D00;            /* hover/active reserve */
  --brand-tint:   #FFEFE0;            /* surfaces */
  --brand-ink:    #4A1500;

  /* Glass */
  --glass:        rgba(251, 247, 241, 0.72);
  --glass-strong: rgba(251, 247, 241, 0.86);
  --glass-line:   rgba(11, 10, 10, 0.08);

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px;  --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px;  --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Radius */
  --r-sm: 8px;  --r-md: 12px; --r-lg: 20px;
  --r-xl: 28px; --r-2xl: 36px; --r-pill: 999px;

  /* Type */
  --font: "Ping", "Cairo", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Motion */
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --ease-snap: cubic-bezier(.4, 0, .2, 1);

  /* Container */
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --nav-h: 68px;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
::selection { background: var(--brand); color: white; }

/* The grid. Vercel's calling card — but quieter, warmer. */
.grid-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}

/* Faint grain — only as overlay, not chrome */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ── Layout ────────────────────────────────────────────────────────────── */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
}

/* ── Eyebrow ─────────────────────────────────────────────────────────── */

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--brand-tint);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 122, 26, 0.18);
}
[lang="ar"] .eyebrow {
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 122, 26, 0); }
}

/* ── Buttons ─────────────────────────────────────────────────────────── */

.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px; line-height: 1;
  white-space: nowrap;
  transition: transform 200ms var(--ease), box-shadow 220ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease);
  overflow: hidden;
  isolation: isolate;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 12px 28px -12px rgba(11, 10, 10, 0.5);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 18px 36px -14px rgba(11, 10, 10, 0.55); }

.btn--brand {
  color: white;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 14px 32px -10px rgba(255, 122, 26, 0.55);
}
.btn--brand::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 1.1s var(--ease);
  z-index: -1;
}
.btn--brand:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.30), 0 20px 38px -10px rgba(255, 122, 26, 0.65); }
.btn--brand:hover::before { transform: translateX(100%); }

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(11, 10, 10, 0.04);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-1px); }

.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--lg { padding: 18px 28px; font-size: 16px; }

.arrow {
  width: 16px; height: 16px;
  transition: transform 220ms var(--ease);
  flex: 0 0 auto;
}
:root[dir="rtl"] .arrow { transform: scaleX(-1); }
.btn:hover .arrow { transform: translateX(3px); }
:root[dir="rtl"] .btn:hover .arrow { transform: scaleX(-1) translateX(3px); }

/* ── Floating glass nav (fixed — does not hide) ─────────────────────── */

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(calc(100% - 32px), 1180px);
  height: var(--nav-h);
  background: var(--glass-strong);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid var(--glass-line);
  border-radius: var(--r-pill);
  /* LTR: brand on left, CTA+lang+menu on right */
  padding: 8px 8px 8px 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 20px 44px -22px rgba(11, 10, 10, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
}
/* RTL: brand on right, CTA+lang+menu on left edge */
:root[dir="rtl"] .nav { padding: 8px 22px 8px 8px; }

.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 17px;
  color: var(--ink);
}
.nav__brand img { width: 28px; height: 28px; border-radius: 7px; }

/* Nav links grow to fill middle; controls stay at the end */
.nav__links {
  position: relative;
  display: flex; align-items: center;
  margin-inline-start: 18px;
  flex: 1;
}

/* Active pill — solid tint, only for the scroll-tracked active link */
.nav__indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  background: var(--brand-tint);
  border: 1px solid rgba(255, 122, 26, 0.22);
  border-radius: var(--r-pill);
  transition: left 380ms var(--ease), width 380ms var(--ease), opacity 200ms var(--ease);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.nav__indicator.is-on { opacity: 1; }

.nav__link {
  position: relative;
  z-index: 1;
  /* Match pill height exactly: pill is 36px tall, padding makes it so */
  padding: 9px 14px;
  height: 36px;
  display: inline-flex; align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  /* Hover shows border ring at pill dimensions — no color/bg change */
  transition: color 160ms var(--ease), box-shadow 160ms var(--ease);
  white-space: nowrap;
  box-sizing: border-box;
}
.nav__link:hover {
  /* Border only — same neutral ink, no orange, no background */
  box-shadow: 0 0 0 1px rgba(11, 10, 10, 0.18);
}
.nav__link.is-active { color: var(--brand-deep); font-weight: 700; }

/* Lang toggle — push to end of nav before the CTA */
.nav__lang {
  margin-inline-start: auto;
  padding: 9px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
  font-feature-settings: "tnum";
  transition: background 160ms var(--ease), color 160ms var(--ease), box-shadow 160ms var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__lang:hover {
  background: rgba(11, 10, 10, 0.05);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(11, 10, 10, 0.10);
}

/* CTA — full height of the nav interior, hugs the pill edge */
.nav__cta {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  font-size: 14px;
  border-radius: calc(var(--r-pill) - 6px);
  margin-block: 0;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__lang  { margin-inline-start: auto; }
}

.nav__menu {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: background 160ms var(--ease), border-color 160ms var(--ease);
  flex-shrink: 0;
}
.nav__menu:hover { background: rgba(11, 10, 10, 0.05); border-color: rgba(11,10,10,0.16); }
@media (max-width: 880px) { .nav__menu { display: inline-flex; } }

/* ── Mobile sheet — slides from the inline-end edge ─────────────────── */
.sheet {
  position: fixed;
  top: 0; bottom: 0;
  inset-inline-end: 0;
  width: min(320px, 84vw);
  z-index: 200;
  background: var(--paper);
  border-inline-start: 1px solid var(--line);
  box-shadow: -24px 0 64px -24px rgba(11, 10, 10, 0.22);
  padding: 80px 28px 40px;
  /* Default: off-screen to the right (LTR) or left (RTL) */
  transform: translateX(100%);
  transition: transform 380ms var(--ease);
  display: flex; flex-direction: column;
  visibility: hidden;
  overflow-y: auto;
}
:root[dir="rtl"] .sheet {
  inset-inline-end: 0;
  transform: translateX(-100%);
}
.sheet.is-open {
  transform: translateX(0) !important;
  visibility: visible;
}

.sheet__close {
  position: absolute; top: 20px; inset-inline-end: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background 160ms var(--ease), border-color 160ms var(--ease);
}
.sheet__close:hover { background: var(--paper-2); border-color: var(--line-strong); }

.sheet a {
  display: flex; align-items: center;
  padding: 16px 6px;
  font-size: 19px; font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  transition: color 180ms var(--ease), padding-inline-start 180ms var(--ease);
  gap: 10px;
}
.sheet a:hover { color: var(--brand-deep); padding-inline-start: 14px; }
.sheet__cta {
  margin-top: auto;
  padding-top: var(--s-6);
  display: flex; flex-direction: column; gap: 10px;
}
.sheet__cta .btn--brand { justify-content: center; color: #fff; }
.sheet__cta .btn--ghost { justify-content: center; }

/* Sheet backdrop — scrim + click-to-close */
.sheet-backdrop {
  position: fixed; inset: 0;
  z-index: 199;
  background: rgba(11, 10, 10, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms var(--ease);
}
.sheet-backdrop.is-on {
  opacity: 1;
  pointer-events: auto;
}

/* ── Hero screenshot slider (mobile only) ────────────────────────────── */


/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: clamp(120px, 16vh, 180px) 0 clamp(80px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
/* When the grid collapses to one column, drop the desktop exhibit entirely.
   No replacement on mobile — copy + CTAs stand on their own. */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .exhibit:not(.shoppers__media) { display: none; }
}

.hero__copy { max-width: 600px; }

.hero__title {
  margin: 22px 0 0;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero__title .accent {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-deep) 50%, var(--brand) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 8s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero__title .alt {
  display: block;
  margin-top: 10px;
  font-size: 0.42em;
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: -0.01em;
}
:root[dir="rtl"] .hero__title { letter-spacing: -0.02em; }

.hero__lede {
  margin: 26px 0 32px;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 520px;
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
}

.hero__trust {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink-3);
}
.hero__trust .ok {
  width: 18px; height: 18px;
  background: #1aaa55;
  color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  box-shadow: 0 0 0 4px rgba(26, 170, 85, 0.12);
}

/* ── Hero atmosphere — the liquid mesh ──────────────────────────────── */

.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Faint grid backbone (Vercel solidity) */
.hero__bg .grid-bg {
  background-size: 64px 64px;
}

/* Liquid blobs — slow, drifting, never crowding */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
  will-change: transform;
}
.blob--1 {
  width: 540px; height: 540px;
  top: -180px;
  inset-inline-end: -160px;
  background: radial-gradient(circle at 35% 35%, var(--brand) 0%, var(--brand-2) 45%, transparent 70%);
  animation: drift1 22s ease-in-out infinite;
}
.blob--2 {
  width: 420px; height: 420px;
  bottom: -120px;
  inset-inline-start: -100px;
  background: radial-gradient(circle at 60% 40%, var(--brand-3) 0%, var(--brand-2) 50%, transparent 75%);
  opacity: 0.45;
  animation: drift2 28s ease-in-out infinite;
}
.blob--3 {
  width: 280px; height: 280px;
  top: 38%; left: 38%;
  background: radial-gradient(circle, rgba(255, 176, 102, 0.45), transparent 65%);
  opacity: 0.4;
  animation: drift3 26s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 60px) scale(1.08); }
  66%      { transform: translate(30px, 30px) scale(0.95); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(60px, -40px) scale(1.1); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-40%, -60%) scale(1.15); }
}

/* ── Hero exhibit (right side: phones) ──────────────────────────────── */

.exhibit {
  position: relative;
  height: clamp(500px, 58vh, 660px);
}

.phone {
  position: absolute;
  width: clamp(200px, 20vw, 280px);
  aspect-ratio: 9 / 19.5;
  border-radius: 42px;
  background: linear-gradient(160deg, #1a1a1a 0%, #0B0A0A 100%);
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 40px 80px -30px rgba(11, 10, 10, 0.5),
    0 16px 36px -16px rgba(255, 122, 26, 0.18);
  transition: transform 700ms var(--ease);
  will-change: transform;
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
}
.phone__screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 18px;
  background: #0B0A0A;
  border-radius: 999px;
  z-index: 2;
}

/* Glow halo around the phones */
.exhibit__halo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.exhibit__halo::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  background: radial-gradient(ellipse at center, rgba(255, 122, 26, 0.18) 0%, transparent 60%);
  filter: blur(50px);
  animation: halo 9s ease-in-out infinite;
}
@keyframes halo {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.1); opacity: 1; }
}

.phone--lead { left: 4%;   top: 4%;    transform: rotate(-5deg); z-index: 3; }
.phone--mid  { right: 2%;  top: 18%;   transform: rotate(4deg);  z-index: 2; }
.phone--back { left: 28%;  bottom: 0;  transform: rotate(-1deg); z-index: 1; opacity: 0.92; }

/* Tilt on cursor — controlled, no spring */
.phone:hover { transform-origin: center; }

@media (max-width: 1024px) {
  .exhibit { height: 560px; }
  .phone--lead { left: 2%; }
  .phone--mid  { right: 0%; }
  .phone--back { left: 26%; }
}
@media (max-width: 600px) {
  .exhibit { height: 500px; }
  .phone { width: 210px; }
  .phone--lead { left: -4%; top: 0; }
  .phone--mid  { right: -4%; top: 14%; }
  .phone--back { left: 22%; bottom: 0; }
}

/* ── Floating stat tile (vendor signal) ─────────────────────────────── */

.float-tile {
  position: absolute;
  z-index: 4;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-line);
  border-radius: var(--r-md);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 16px 32px -14px rgba(11, 10, 10, 0.18);
  font-size: 13px;
  animation: floatY 6s ease-in-out infinite;
}
.float-tile__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-tint);
  color: var(--brand-deep);
}
.float-tile__name { font-weight: 700; color: var(--ink); display: block; line-height: 1.2; }
.float-tile__sub  { color: var(--ink-3); font-size: 12px; display: block; line-height: 1.2; margin-top: 2px; }

.float-tile--a {
  top: 8%;
  inset-inline-start: -4%;
  animation-delay: 0s;
}
.float-tile--b {
  bottom: 14%;
  inset-inline-end: -4%;
  animation-delay: 1.5s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (max-width: 1024px) {
  .float-tile { display: none; }
}

/* ── Section frame ───────────────────────────────────────────────────── */

.section {
  padding: clamp(96px, 13vh, 160px) 0;
  position: relative;
}
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--ink); color: var(--paper); }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(56px, 7vh, 88px);
  text-align: center;
  margin-inline: auto;
}
.section__title {
  margin: 16px 0 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section--dark .section__title { color: var(--paper); }
.section__lede {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 560px;
  margin-inline: auto;
}
.section--dark .section__lede { color: rgba(251, 247, 241, 0.7); }

/* ── Vendor feature grid ─────────────────────────────────────────────── */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .feat-grid { grid-template-columns: 1fr; } }

.feat {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  overflow: hidden;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}
.feat::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity 320ms var(--ease);
  pointer-events: none;
}
.feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(11, 10, 10, 0.16);
  border-color: rgba(255, 122, 26, 0.4);
}
.feat:hover::before { opacity: 1; }

.feat__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px -8px rgba(255, 122, 26, 0.55);
}
.feat__title {
  font-size: 18px; font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.feat__desc {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}

/* ── Showcase rows (alternating big illustration + tight copy) ──────── */

/* The "how" stack — three layers tied together by a vertical spine */
.how__stack {
  position: relative;
  padding-block: clamp(8px, 2vh, 24px);
}
.how__spine {
  position: absolute;
  top: 40px;
  bottom: 40px;
  inset-inline-start: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--brand) 8%,
    var(--brand) 92%,
    transparent 100%
  );
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.how__spine::before {
  /* Glow trail moving slowly down the spine */
  content: "";
  position: absolute;
  inset-inline-start: -3px;
  width: 7px;
  height: 90px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  filter: blur(8px);
  opacity: 0.7;
  animation: spine-flow 9s ease-in-out infinite;
}
@keyframes spine-flow {
  0%   { top: 0%;  opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { top: 100%; opacity: 0; }
}
@media (max-width: 900px) {
  .how__spine { display: none; }
}

.row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
  padding: clamp(48px, 7vh, 96px) 0;
  z-index: 1;
}
.row::before {
  /* The "node" on the spine where this row sits */
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--brand);
  box-shadow: 0 0 0 6px var(--paper-2), 0 0 16px rgba(255, 122, 26, 0.4);
  z-index: 2;
}
:root[dir="rtl"] .row::before { transform: translate(50%, -50%); }
@media (max-width: 900px) {
  .row::before { display: none; }
}
.row--reverse .row__media { order: 2; }
@media (max-width: 900px) {
  .row { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .row--reverse .row__media { order: 1; }
}

/* Layer step badge on the copy column */
.row__step {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  font-feature-settings: "tnum";
}
.row__step-num {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.row__step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
[lang="ar"] .row__step-label { letter-spacing: 0; text-transform: none; font-size: 13px; }

.row__copy { max-width: 480px; }
.row__copy h3 {
  margin: 18px 0 0;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.row__copy p {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
}

/* The showcase frame — a big surface with mesh atmosphere */
.show {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 3vw, 40px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 32px 64px -36px rgba(11, 10, 10, 0.18);
  overflow: hidden;
  isolation: isolate;
}
.show::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.14), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(255, 216, 158, 0.18), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* — Inventory mock */
.inv-list { display: flex; flex-direction: column; gap: 8px; }
.inv-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: border-color 220ms var(--ease), transform 220ms var(--ease);
}
.inv-row:hover { border-color: rgba(255, 122, 26, 0.35); transform: translateX(2px); }
:root[dir="rtl"] .inv-row:hover { transform: translateX(-2px); }
.inv-row__name { font-weight: 600; color: var(--ink); font-size: 15px; }
.inv-row__sub  { display: block; font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.inv-row__price { font-weight: 700; color: var(--ink); font-feature-settings: "tnum"; font-size: 14px; }
.inv-row__pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
}
.inv-row__pill--ok  { background: #E8F6EE; color: #117A3D; }
.inv-row__pill--low { background: var(--brand-tint); color: var(--brand-deep); }

/* — Routing mock */
.routing { display: flex; flex-direction: column; gap: 12px; position: relative; }
.routing__path {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
}
.routing__path.is-active {
  border-color: var(--brand);
  background: linear-gradient(90deg, var(--brand-tint), transparent);
  box-shadow: 0 6px 18px -10px rgba(255, 122, 26, 0.4);
}
.routing__path .step {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.routing__path.is-active .step {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 4px 12px -4px rgba(255, 122, 26, 0.5);
}
.routing__path .label { font-size: 14px; color: var(--ink); font-weight: 500; }
.routing__path .meta  { font-size: 12px; color: var(--ink-3); font-feature-settings: "tnum"; }

/* — Chat mock */
.chat { display: flex; flex-direction: column; gap: 10px; padding: 6px; }
.chat__bubble {
  padding: 12px 16px;
  border-radius: 16px;
  max-width: 85%;
  font-size: 14px; line-height: 1.5;
  animation: bubble-in 0.5s var(--ease) backwards;
}
.chat__bubble:nth-child(1) { animation-delay: 0.1s; }
.chat__bubble:nth-child(2) { animation-delay: 0.4s; }
.chat__bubble:nth-child(3) { animation-delay: 1.0s; }
.chat__bubble:nth-child(4) { animation-delay: 1.4s; }
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat__bubble--user {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-soft);
  align-self: flex-start;
  border-bottom-inline-start-radius: 6px;
}
.chat__bubble--bot {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  align-self: flex-end;
  border-bottom-inline-end-radius: 6px;
  box-shadow: 0 8px 20px -8px rgba(255, 122, 26, 0.5);
}
.chat__bubble--bot .typing { display: inline-flex; gap: 4px; align-items: center; }
.chat__bubble--bot .typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: white; opacity: 0.6;
  animation: blink 1.4s infinite ease-in-out;
}
.chat__bubble--bot .typing i:nth-child(2) { animation-delay: 0.2s; }
.chat__bubble--bot .typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.25; } 30% { opacity: 1; } }

/* Robot sticker — anchored to .row__media, floats at top-inline-end of the chat frame */
.row__media { position: relative; }
.chat-robot {
  position: absolute;
  top: -28px;
  inset-inline-end: -18px;
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(11, 10, 10, 0.16));
  animation: floatY 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}
@media (max-width: 900px) {
  .chat-robot { width: 80px; height: 80px; top: -20px; inset-inline-end: -10px; }
}

/* ── Shoppers band ───────────────────────────────────────────────────── */

.shoppers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .shoppers { grid-template-columns: 1fr; }
  .shoppers__media { order: 2; }
}

.shoppers__media {
  position: relative;
  /* Container is tall enough to hold most of the phones; the bottoms
     extend slightly past and get clipped by the CTA band's negative
     margin below (the "tucked under panel" effect). */
  height: clamp(420px, 52vh, 560px);
}
.shoppers .phone--lead { left: 4%;  top: 4%;  transform: rotate(2deg); }
.shoppers .phone--mid  { right: 4%; top: 16%; transform: rotate(-3deg); }

/* Shoppers section: keep normal top padding, trim only the bottom so the
   CTA band's mild negative margin pulls cleanly without huge gaps. */
#shoppers.section { padding-bottom: clamp(64px, 8vh, 112px); }

.shoppers__copy h2 { margin-top: 18px; }
.shoppers__copy p {
  margin: 22px 0 32px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 480px;
}

.store-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 14px;
  transition: background 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
  box-shadow: 0 8px 20px -10px rgba(11, 10, 10, 0.4);
}
.store-btn:hover {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(255, 122, 26, 0.5);
}
.store-btn .small { display: block; font-size: 11px; opacity: 0.72; line-height: 1; margin-bottom: 3px; letter-spacing: 0.06em; }
.store-btn .big   { display: block; font-size: 16px; font-weight: 700; line-height: 1; }
.store-btn svg    { width: 22px; height: 22px; flex: 0 0 auto; }

/* ── Logo orbit (delivery partners — anonymous, scalable) ───────────── */

.orbit {
  position: relative;
  margin-top: clamp(56px, 7vh, 96px);
  padding: clamp(40px, 6vh, 64px) 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  overflow: hidden;
  text-align: center;
}
.orbit__label {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 600;
}
[lang="ar"] .orbit__label { letter-spacing: 0; text-transform: none; font-size: 13px; }

.orbit__track {
  display: flex; align-items: center; justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.orbit__tile {
  height: 56px;
  min-width: 110px;
  padding: 0 22px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
  position: relative;
  overflow: hidden;
}
.orbit__tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 122, 26, 0.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.9s var(--ease);
}
.orbit__tile:hover { color: var(--brand-deep); border-color: rgba(255, 122, 26, 0.4); transform: translateY(-2px); }
.orbit__tile:hover::before { transform: translateX(100%); }
.orbit__tile.is-more {
  background: var(--paper);
  border-style: dashed;
  color: var(--ink-3);
}

/* Logo variant — taller tile, image on top + name below */
.orbit__tile--logo {
  flex-direction: column;
  height: auto;
  min-height: 90px;
  padding: 16px 22px;
  gap: 8px;
}
.orbit__logo {
  width: auto;
  height: 40px;
  max-width: 100px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  margin-inline: auto;
}
.orbit__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.orbit__tile--logo:hover .orbit__name { color: var(--brand-deep); }

@media (max-width: 720px) {
  .orbit__tile--logo { min-height: 72px; padding: 12px 14px; }
  .orbit__logo { height: 30px; max-width: 72px; }
  .orbit__name { font-size: 11px; }
}

/* ── CTA band (pre-footer) ──────────────────────────────────────────── */

.cta-band {
  position: relative;
  /* Mild negative top margin so the band clips just the phone tails, not
     the shoppers copy/CTAs above. The shoppers section reserves room for
     the phones; this only nibbles the very bottom of that reserved space. */
  margin: clamp(-64px, -5vh, -32px) var(--gutter) 0;
  padding: clamp(72px, 10vh, 120px) clamp(32px, 5vw, 80px);
  border-radius: clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, #161412 0%, #0B0A0A 100%);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
  z-index: 2;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 122, 26, 0.45), transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(255, 176, 102, 0.30), transparent 50%);
  filter: blur(40px);
  z-index: -1;
}
.cta-band::after {
  /* subtle grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}
.cta-band__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .cta-band__inner { grid-template-columns: 1fr; } }

.cta-band .eyebrow { background: rgba(255, 122, 26, 0.14); color: var(--brand-2); border-color: rgba(255, 122, 26, 0.3); }

.cta-band h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 18px 0 0;
}
.cta-band h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand-2) 0%, var(--brand) 50%, var(--brand-2) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s ease-in-out infinite;
}

.cta-band__channels { display: grid; gap: 4px; }
.cta-band__row {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 0;
  border-top: 1px solid rgba(251, 247, 241, 0.10);
}
.cta-band__row:last-child { border-bottom: 1px solid rgba(251, 247, 241, 0.10); }
.cta-band__row .lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.5);
  font-weight: 600;
}
[lang="ar"] .cta-band__row .lbl { letter-spacing: 0; text-transform: none; font-size: 13px; }
.cta-band__row .val {
  font-size: 20px; font-weight: 500;
  color: var(--paper);
  font-feature-settings: "tnum";
  transition: color 200ms var(--ease);
}
.cta-band__row a.val:hover { color: var(--brand-2); }

.cta-band__cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band__cta .btn--ghost {
  background: rgba(251, 247, 241, 0.06);
  color: var(--paper);
  border-color: rgba(251, 247, 241, 0.15);
}
.cta-band__cta .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ── Footer ──────────────────────────────────────────────────────────── */

.foot {
  padding: 40px 0 60px;
  margin-top: 64px;
  border-top: 1px solid var(--line);
}
.foot__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.foot__brand img { width: 24px; height: 24px; border-radius: 6px; }
.foot__links {
  display: flex; gap: 24px;
  font-size: 14px;
  color: var(--ink-3);
}
.foot__links a:hover { color: var(--ink); }
.foot__legal { font-size: 13px; color: var(--ink-mute); }

/* ── Entrance choreography ──────────────────────────────────────────── */

.in {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 720ms var(--ease) forwards;
}
.in--1 { animation-delay: 80ms; }
.in--2 { animation-delay: 180ms; }
.in--3 { animation-delay: 280ms; }
.in--4 { animation-delay: 380ms; }
.in--5 { animation-delay: 480ms; }
.in--6 { animation-delay: 580ms; }

@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .in { opacity: 1; transform: none; animation: none; }
  .blob, .float-tile, .exhibit__halo::before, .hero__title .accent, .cta-band h2 em { animation: none !important; }
  *, *::before, *::after { transition-duration: 0ms !important; }
  html { scroll-behavior: auto; }
}

[hidden] { display: none !important; }

/* ── Mobile fixes ─────────────────────────────────────────────────────
   Tighten nav, hide hero exhibit, show slider, compress rhythm.
   ─────────────────────────────────────────────────────────────────── */

@media (max-width: 880px) {
  /* Nav */
  .nav { padding: 6px 6px 6px 14px; gap: 6px; height: 56px; }
  :root[dir="rtl"] .nav { padding: 6px 14px 6px 6px; }
  .nav__cta { display: none; }
  .nav__brand { font-size: 16px; }
  .nav__brand img { width: 24px; height: 24px; }
  .nav__lang { padding: 7px 10px; font-size: 12px; margin-inline-start: auto; }
  :root { --nav-h: 56px; }

  /* Hero exhibit: hide the overlapping phone frames, show slider */
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .exhibit:not(.shoppers__media) { display: none; }

  /* CTAs already feel right at this width — keep them inline, just centered */
  .hero__ctas { justify-content: flex-start; }
  .hero__ctas .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }
  .hero__ctas .btn--lg { padding: 14px 20px; font-size: 15px; }

  /* Shoppers phone exhibit on mobile — keep the tuck-under-CTA effect */
  .shoppers__media { height: 420px; max-width: 480px; margin-inline: auto; }
  .shoppers .phone--lead { left: 4%; top: 0; }
  .shoppers .phone--mid  { right: 4%; top: 48px; }
}

@media (max-width: 720px) {
  /* Hero — no exhibit on mobile, so tighten the bottom padding */
  .hero { padding: 96px 0 48px; }
  .hero__copy { max-width: 100%; }
  .hero__title { font-size: clamp(28px, 6.5vw, 42px); letter-spacing: -0.02em; line-height: 1.2; }
  .hero__lede { font-size: 16px; margin: 18px 0 22px; }
  .hero__ctas .btn--lg { padding: 14px 18px; font-size: 14px; }

  /* Shoppers phones */
  .phone { width: 165px; border-radius: 30px; }
  .phone__notch { width: 56px; height: 14px; top: 10px; }
  .phone__screen { border-radius: 24px; }

  /* Section heads */
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }
  .section__title { font-size: clamp(28px, 7vw, 38px); }
  .section__lede { font-size: 16px; margin-top: 16px; }

  /* Layer step */
  .row__step-num { font-size: 32px; }
  .row__copy h3 { font-size: clamp(22px, 5.5vw, 28px); }
  .row__copy p { font-size: 16px; }

  /* Showcase frames */
  .show { padding: 20px; border-radius: 22px; }
  .inv-row { padding: 12px; gap: 10px; }
  .inv-row__name { font-size: 14px; }
  .inv-row__price { font-size: 13px; }
  .routing__path { padding: 12px; gap: 10px; }
  .routing__path .label { font-size: 13px; }

  /* Feature cards */
  .feat { padding: 22px; }
  .feat__icon { width: 38px; height: 38px; margin-bottom: 16px; }
  .feat__title { font-size: 16px; }
  .feat__desc { font-size: 13px; }

  /* Eyebrow */
  .eyebrow { font-size: 11px; padding: 5px 10px; }
  [lang="ar"] .eyebrow { font-size: 12px; }

  /* CTA band */
  .cta-band { padding: 56px 24px; border-radius: 28px; }
  .cta-band h2 { font-size: clamp(28px, 7vw, 40px); }
  .cta-band__row .val { font-size: 17px; }
  .cta-band__row .val[style] { font-size: 15px !important; }

  /* Footer */
  .foot__inner { gap: 16px; flex-direction: column; align-items: flex-start; text-align: start; }

  /* Orbit tiles */
  .orbit__track { gap: 14px; }
  .orbit__tile { height: 44px; min-width: 80px; padding: 0 14px; font-size: 12px; }
  .orbit__tile--logo { min-height: 72px; padding: 10px 14px; }

  /* Blobs */
  .blob { filter: blur(56px); opacity: 0.4; }
  .blob--3 { display: none; }
}

@media (max-width: 400px) {
  .nav__brand span { display: none; }
  .nav { width: calc(100% - 16px); padding: 6px 6px 6px 12px; }
  :root[dir="rtl"] .nav { padding: 6px 12px 6px 6px; }
  .hero__title { font-size: 26px; letter-spacing: -0.015em; line-height: 1.22; }
  .hero__lede { font-size: 15px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__trust { font-size: 12px; }
  .sheet a { padding: 14px 6px; font-size: 18px; }
  .cta-band__cta { flex-direction: column; align-items: stretch; }
  .cta-band__cta .btn { width: 100%; justify-content: center; }
}
