/* ─────────────────────────────────────────────────────────────
   بكنك / Picnic — Landing Styles
   Color strategy: Committed (green dominant + warm cream surface
   + orange accents + signature orange→yellow→green gradient).
   Theme: Light, warm, sun-touched.
   Typography: Reem Kufi (display) · Tajawal (body).
   ───────────────────────────────────────────────────────────── */

:root {
  /* Brand */
  --green:        oklch(0.72 0.182 148);     /* #13BE57 */
  --green-2:      oklch(0.78 0.176 148);
  --green-deep:   oklch(0.575 0.166 148);    /* #0F9846 */
  --green-ink:    oklch(0.40 0.110 150);
  --orange:       oklch(0.71 0.196 47);      /* #FB7100 */
  --orange-soft:  oklch(0.84 0.130 60);
  --yellow:       oklch(0.86 0.150 88);

  /* Tinted neutrals (slight green warmth) */
  --ivory:        oklch(0.985 0.006 95);     /* surface */
  --cream:        oklch(0.965 0.012 92);     /* alt surface */
  --line:         oklch(0.90 0.012 140);
  --line-soft:    oklch(0.94 0.010 140);
  --ink:          oklch(0.20 0.018 150);     /* text primary */
  --ink-2:        oklch(0.42 0.020 150);     /* text secondary */
  --ink-3:        oklch(0.60 0.014 150);     /* text muted */

  /* Effects */
  --shadow-sm:  0 1px 2px oklch(0.20 0.02 150 / .06);
  --shadow-md:  0 8px 24px oklch(0.20 0.02 150 / .08);
  --shadow-lg:  0 24px 60px oklch(0.20 0.04 150 / .14);

  /* Geometry */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Type */
  --font-body:    "Tajawal", "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Reem Kufi", "Tajawal", system-ui, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-out-quart: cubic-bezier(.25,1,.5,1);
}

/* ───────── reset + base ───────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .18s var(--ease-out); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; line-height: 1.15; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute; inset-inline-start: -9999px; top: 8px;
  background: var(--ink); color: var(--ivory); padding: 10px 16px; border-radius: 8px; z-index: 100;
}
.skip:focus { inset-inline-start: 8px; }

::selection { background: oklch(0.86 0.150 88 / .55); color: var(--ink); }

/* ───────── nav ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: oklch(0.985 0.006 95 / .82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease-out), background-color .25s var(--ease-out);
}
.nav > * { flex: 0 0 auto; }
.nav.is-scrolled { border-bottom-color: var(--line-soft); }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { color: var(--green); display: inline-flex; }
.brand-mark svg { border-radius: 8px; }
.brand-word {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
}

.nav-links {
  display: flex; gap: 28px; justify-content: center;
  font-size: 15px; font-weight: 500;
  color: var(--ink-2);
  margin: 0 auto;
}
.nav-links a { position: relative; padding: 6px 2px; }
.nav-links a:hover { color: var(--green-deep); }
.nav-links a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -2px; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: right;
  transition: transform .25s var(--ease-out);
  border-radius: 2px;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { padding: 10px 18px; font-size: 14px; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav { grid-template-columns: auto 1fr auto; }
}

/* ───────── buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.005em;
  transition: transform .2s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--ivory);
  box-shadow: 0 6px 20px oklch(0.72 0.182 148 / .35);
}
.btn-primary:hover { transform: translateY(-1px); background: var(--green-deep); box-shadow: 0 10px 28px oklch(0.575 0.166 148 / .45); }
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }
.btn-secondary {
  background: var(--orange); color: var(--ivory);
  box-shadow: 0 6px 20px oklch(0.71 0.196 47 / .35);
}
.btn-secondary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px oklch(0.71 0.196 47 / .5); }

/* ───────── reveal animation ───────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease-out-quart), transform .9s var(--ease-out-quart);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ───────── HERO ───────── */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 80px) clamp(16px, 4vw, 56px) 0;
  overflow: hidden;
}

.orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: .85;
  will-change: transform;
}
.orb-1 {
  width: 460px; height: 460px;
  inset-inline-start: -120px; top: -100px;
  background: radial-gradient(circle, oklch(0.86 0.150 88), transparent 65%);
  animation: float-1 18s ease-in-out infinite;
}
.orb-2 {
  width: 520px; height: 520px;
  inset-inline-end: -160px; top: 80px;
  background: radial-gradient(circle, oklch(0.85 0.150 50 / .85), transparent 65%);
  animation: float-2 22s ease-in-out infinite;
}
.orb-3 {
  width: 380px; height: 380px;
  inset-inline-start: 30%; top: 40%;
  background: radial-gradient(circle, oklch(0.86 0.130 148 / .8), transparent 65%);
  animation: float-3 26s ease-in-out infinite;
}
@keyframes float-1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(40px,30px) scale(1.08)} }
@keyframes float-2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-50px,40px) scale(.95)} }
@keyframes float-3 { 0%,100%{transform:translate(-50%,0) scale(1)} 50%{transform:translate(calc(-50% + 40px),-30px) scale(1.06)} }

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(20px, 5vw, 60px);
}

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--green-deep);
  background: oklch(0.97 0.04 148);
  padding: 6px 14px; border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px oklch(0.72 0.182 148 / .25);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px oklch(0.72 0.182 148 / .25)} 50%{box-shadow:0 0 0 8px oklch(0.72 0.182 148 / 0)} }

.hero-title {
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  word-wrap: break-word;
}
.hero-title span { display: block; overflow: hidden; }
.hero-title .punct { color: var(--green); }

.hero-sub {
  max-width: 56ch;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--line-soft);
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  font-feature-settings: "tnum";
}
.hero-stats span { font-size: 13px; color: var(--ink-3); }

/* ─── Hero art / scene ─── */
.hero-art {
  position: relative;
  aspect-ratio: 480 / 540;
  max-width: 540px;
  margin-inline-start: auto;
  width: 100%;
  margin-bottom: clamp(40px, 6vw, 0px);
}
@media (max-width: 980px) {
  .hero-art { max-width: 420px; margin: 0 auto clamp(56px, 8vw, 80px); }
}
.scene {
  position: relative;
  width: 100%; height: 100%;
}
.scene-bg {
  width: 100%; height: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.sun { animation: sun-bob 8s ease-in-out infinite; transform-origin: 370px 150px; }
@keyframes sun-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.palm-1 { transform-origin: 122px 410px; animation: sway 6s ease-in-out infinite; }
.palm-2 { transform-origin: 433px 410px; animation: sway 7s ease-in-out infinite -1.5s; }
@keyframes sway { 0%,100%{transform:rotate(-1.5deg)} 50%{transform:rotate(1.5deg)} }
.ripples { animation: shimmer 4s ease-in-out infinite; }
@keyframes shimmer { 0%,100%{opacity:.5} 50%{opacity:.2} }

/* phone mockup */
.phone {
  position: absolute;
  width: 64%;
  aspect-ratio: 9 / 19.5;
  left: 50%; transform: translateX(-50%);
  bottom: -36px;
  background: oklch(0.18 0.012 150);
  border-radius: 38px;
  padding: 8px;
  box-shadow:
    0 30px 80px oklch(0.20 0.04 150 / .35),
    0 0 0 6px oklch(0.18 0.012 150),
    inset 0 0 0 2px oklch(0.30 0.012 150);
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* notch */
.phone::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 22px; background: oklch(0.18 0.012 150); border-radius: 14px; z-index: 2;
}

.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, oklch(0.97 0.012 95), oklch(0.99 0.006 95));
  border-radius: 30px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}

.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 6px;
  font-size: 11px; font-weight: 600; color: var(--ink);
  font-feature-settings: "tnum";
}
.phone-bars { display: inline-flex; gap: 2px; align-items: end; }
.phone-bars i {
  display: inline-block; width: 3px; background: var(--ink); border-radius: 1px;
}
.phone-bars i:nth-child(1) { height: 4px; }
.phone-bars i:nth-child(2) { height: 6px; }
.phone-bars i:nth-child(3) { height: 8px; }
.phone-bars i:nth-child(4) { height: 10px; }

.card {
  margin: 14px 14px 0;
  background: var(--ivory);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex: 0 0 auto;
}
.card-image {
  height: 120px;
  background:
    linear-gradient(135deg, oklch(0.71 0.196 47 / .9), oklch(0.86 0.150 88 / .85), oklch(0.72 0.182 148 / .9));
  position: relative;
}
.card-image::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, oklch(1 0 0 / .35), transparent 50%);
}
.badge {
  position: absolute; top: 10px; padding: 4px 10px;
  background: oklch(0.99 0 0 / .9); color: var(--ink);
  border-radius: var(--r-pill); font-size: 10px; font-weight: 600;
}
.badge { inset-inline-end: 10px; }
.badge-sec { inset-inline-end: auto; inset-inline-start: 10px; background: var(--ink); color: var(--ivory); }
.card-body { padding: 12px 14px 14px; }
.card-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.card-row h3 { font-size: 14px; font-weight: 700; }
.price {
  font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--green-deep);
  font-feature-settings: "tnum";
}
.price em { font-style: normal; font-size: 10px; color: var(--ink-3); margin-inline-start: 2px; }
.card-meta { font-size: 11px; color: var(--ink-3); margin-top: 4px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }
.card-tags span {
  font-size: 10px; padding: 3px 8px; border-radius: var(--r-pill);
  background: var(--cream); color: var(--ink-2);
}
.card-cta {
  margin-top: 12px; width: 100%;
  background: var(--green); color: var(--ivory);
  padding: 10px; border-radius: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
}

.phone-tabbar {
  margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
  padding: 14px 18px 22px;
  background: oklch(0.98 0.008 95);
  border-top: 1px solid var(--line-soft);
}
.tab { color: var(--ink-3); }
.tab.is-active { color: var(--green); }

.float-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--ivory);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.float-chip svg { color: var(--green); }
.chip-pool   { top: 14%; inset-inline-start: -18px; animation: float-chip-a 6s ease-in-out infinite; }
.chip-bbq    { top: 48%; inset-inline-end: -8px; animation: float-chip-b 7s ease-in-out infinite -1s; }
.chip-time   { top: 78%; inset-inline-start: -22px; animation: float-chip-a 5.5s ease-in-out infinite -2s; }
.chip-bbq svg { color: var(--orange); }
.chip-time svg { color: var(--orange); }

@keyframes float-chip-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float-chip-b { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

@media (max-width: 540px) {
  .float-chip { display: none; }
}

/* ───────── cities marquee ───────── */
.cities {
  margin-top: clamp(40px, 6vw, 80px);
  border-block: 1px solid var(--line-soft);
  background: var(--cream);
  overflow: hidden;
}
.marquee { padding: 22px 0; }
.marquee-track {
  display: inline-flex; gap: 28px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  color: var(--ink-2);
  animation: marquee 60s linear infinite;
}
.marquee-track i { color: var(--orange); font-style: normal; }
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  /* RTL: scroll content from start to inside */
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ───────── section heads ───────── */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--green-deep);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.kicker.on-warm { color: var(--orange); }
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -.025em;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--ink-2);
  font-size: clamp(15px, 1.6vw, 18px);
}

/* ───────── HOW ───────── */
.how {
  padding: clamp(72px, 10vw, 120px) clamp(16px, 4vw, 56px);
}
.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 64px;
  inset-inline: 12%;
  height: 2px;
  background: repeating-linear-gradient(to left, var(--line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding: 36px 28px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  text-align: center;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--green);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  margin-bottom: 18px;
  font-feature-settings: "tnum";
}
.step h3 { font-size: 24px; margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 15px; line-height: 1.7; }
.step-icon { width: 80px; height: 80px; margin: 22px auto 0; }

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

/* ───────── FEATURES ───────── */
.features {
  padding: clamp(72px, 10vw, 120px) clamp(16px, 4vw, 56px);
  background: var(--cream);
}
.feature-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}
.tile {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tile h3 { font-size: 22px; margin-bottom: 10px; letter-spacing: -.015em; }
.tile p { color: var(--ink-2); font-size: 15px; line-height: 1.7; }

.tile-wide      { grid-column: span 4; }
.tile-shifts    { grid-column: span 2; background: linear-gradient(165deg, oklch(0.95 0.045 148), oklch(0.98 0.018 148)); border-color: transparent; }
.tile-360       { grid-column: span 2; }
.tile-pay       { grid-column: span 2; }
.tile-reels     { grid-column: span 2; background: linear-gradient(165deg, oklch(0.96 0.045 60), oklch(0.985 0.012 90)); border-color: transparent; }
.tile-wishlist  { grid-column: span 2; }

@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile-wide { grid-column: span 2; }
  .tile-shifts, .tile-360, .tile-pay, .tile-reels, .tile-wishlist { grid-column: span 1; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .tile, .tile-shifts, .tile-360, .tile-pay, .tile-reels, .tile-wishlist, .tile-wide { grid-column: span 1; }
}

.tile-map { background: linear-gradient(135deg, oklch(0.99 0.006 95), oklch(0.96 0.04 148)); border-color: transparent; }
.tile-map { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 24px; }
.tile-map .tile-text { padding: 0; }
.map-art svg { border-radius: var(--r-md); }

@media (max-width: 700px) {
  .tile-map { grid-template-columns: 1fr; }
}

.shifts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-block: 18px;
}
.shifts li {
  display: flex; align-items: center; gap: 8px;
  background: oklch(1 0 0 / .65);
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 14px;
}
.shifts li span { font-size: 18px; }
.tile-foot { color: var(--ink-3); font-size: 13px; margin-top: auto; }

.tile-360 .ring {
  width: 96px; height: 96px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: oklch(0.96 0.04 148);
  color: var(--green-deep);
  margin-top: auto;
  align-self: end;
  animation: spin 16s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pays {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px;
}
.pays li {
  padding: 12px;
  background: var(--cream);
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  text-align: center;
  color: var(--ink-2);
}

.reel-mock {
  margin-top: auto;
  display: grid; place-items: center;
}
.reel-frame {
  width: 90px; aspect-ratio: 9/16;
  background: linear-gradient(180deg, oklch(0.71 0.196 47), oklch(0.40 0.110 150));
  border-radius: 10px;
  position: relative;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.reel-play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: oklch(0.99 0 0 / .92);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-size: 12px;
  padding-inline-start: 3px;
}
.reel-bar {
  position: absolute; bottom: 8px; inset-inline: 8px; height: 2px;
  background: oklch(1 0 0 / .35); border-radius: 2px; overflow: hidden;
}
.reel-bar::after {
  content: ""; display: block; width: 60%; height: 100%; background: var(--ivory);
  animation: progress 4s linear infinite;
}
@keyframes progress { 0%{width:0} 100%{width:100%} }

.tile-wishlist svg { margin-top: auto; align-self: end; }

/* ───────── OWNERS ───────── */
.owners {
  padding: clamp(72px, 10vw, 120px) clamp(16px, 4vw, 56px);
  background: linear-gradient(165deg, oklch(0.97 0.05 60) 0%, oklch(0.985 0.018 90) 60%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}
.owners::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 0%, oklch(0.71 0.196 47 / .12), transparent 40%),
    radial-gradient(circle at 0% 100%, oklch(0.86 0.15 88 / .15), transparent 40%);
  pointer-events: none;
}
.owners-inner {
  position: relative;
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.owners-copy h2 { font-size: clamp(32px, 4.5vw, 52px); letter-spacing: -.025em; margin-block: 12px 18px; }
.owners-copy > p { color: var(--ink-2); font-size: 17px; line-height: 1.7; margin-bottom: 30px; max-width: 52ch; }
.bullet-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink);
}
.bullet-list svg {
  flex-shrink: 0; margin-top: 2px;
  color: var(--orange);
  background: oklch(0.97 0.05 60); border-radius: 50%;
  padding: 4px;
  width: 30px; height: 30px;
}

.owners-art { display: grid; place-items: center; }
.dash {
  width: 100%; max-width: 440px;
  background: var(--ivory);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 14px;
}
.dash-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 8px;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 14px;
  color: var(--ink-2);
}
.dash-row:last-of-type { border-bottom: 0; }
.dash-head, .dash-foot {
  border-bottom: 0;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: var(--r-sm);
  margin-bottom: 4px;
  color: var(--ink);
}
.dash-foot { margin-top: 4px; margin-bottom: 0; background: oklch(0.95 0.06 148); }
.dash-head strong, .dash-foot strong { font-family: var(--font-display); font-size: 18px; color: var(--ink); font-feature-settings: "tnum"; }
.dash-foot strong { color: var(--green-deep); }
.pill {
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--r-pill);
}
.pill-pending { background: oklch(0.96 0.08 88); color: oklch(0.45 0.13 70); }
.pill-ok { background: oklch(0.95 0.06 148); color: var(--green-deep); }

.bars {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px;
  height: 70px; align-items: end; margin-top: 6px;
}
.bars i {
  display: block; width: 100%;
  height: var(--h);
  background: linear-gradient(180deg, var(--green), var(--green-deep));
  border-radius: 4px;
  transform-origin: bottom;
  animation: grow .9s var(--ease-out-quart) both;
}
.bars i:nth-child(1) { animation-delay: .05s; }
.bars i:nth-child(2) { animation-delay: .12s; }
.bars i:nth-child(3) { animation-delay: .19s; }
.bars i:nth-child(4) { animation-delay: .26s; }
.bars i:nth-child(5) { animation-delay: .33s; }
.bars i:nth-child(6) { animation-delay: .40s; }
.bars i:nth-child(7) { animation-delay: .47s; }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

@media (max-width: 880px) {
  .owners-inner { grid-template-columns: 1fr; }
}

/* ───────── DOWNLOAD CTA ───────── */
.cta {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 56px);
}
.cta-card {
  position: relative;
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(135deg, var(--green-deep), var(--green) 50%, oklch(0.78 0.18 130));
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  color: var(--ivory);
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 30px 80px oklch(0.40 0.110 150 / .35);
}
.cta-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, oklch(0.86 0.15 88 / .35), transparent 50%),
    radial-gradient(circle at 0% 100%, oklch(0.71 0.196 47 / .25), transparent 50%);
  pointer-events: none;
}
.cta-text { position: relative; z-index: 1; }
.cta-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 8px;
  letter-spacing: -.025em;
  color: var(--ivory);
}
.cta-text p { color: oklch(1 0 0 / .85); font-size: 17px; }

.store-row {
  position: relative; z-index: 1;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: oklch(0.20 0.018 150);
  color: var(--ivory);
  border-radius: var(--r-md);
  transition: transform .25s var(--ease-out), background .25s var(--ease-out);
}
.store-badge:hover { transform: translateY(-2px); background: oklch(0.10 0.018 150); }
.store-badge span { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge small { font-size: 11px; opacity: .75; font-weight: 400; }
.store-badge strong { font-family: var(--font-display); font-size: 17px; font-weight: 700; }

@media (max-width: 760px) {
  .cta-card { grid-template-columns: 1fr; text-align: start; }
}

/* ───────── FOOTER ───────── */
.footer {
  background: oklch(0.18 0.014 150);
  color: oklch(0.85 0.01 150);
  padding: clamp(60px, 8vw, 80px) clamp(16px, 4vw, 56px) 32px;
}
.foot-grid {
  max-width: 1240px; margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
}
.foot-brand .brand { color: var(--green); margin-bottom: 14px; }
.foot-brand .brand-word { color: var(--ivory); }
.foot-brand p { color: oklch(0.7 0.012 150); font-size: 14px; max-width: 32ch; line-height: 1.7; }
.footer h4 {
  font-size: 13px; font-family: var(--font-display);
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer nav a {
  display: block; padding-block: 6px;
  color: oklch(0.75 0.012 150);
  font-size: 14px;
}
.footer nav a:hover { color: var(--ivory); }

.foot-bottom {
  max-width: 1240px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid oklch(0.30 0.014 150);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: oklch(0.6 0.012 150);
}
.foot-social { display: flex; gap: 18px; }
.foot-social a:hover { color: var(--green-2); }

@media (max-width: 800px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ───────── PRIVACY PAGE ───────── */
.privacy-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 32px);
}
.privacy-shell h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.privacy-shell .lede {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}
.privacy-shell .meta { font-size: 13px; color: var(--ink-3); margin-bottom: 4px; }
.privacy-toc {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.privacy-toc h2 { font-size: 16px; margin-bottom: 14px; color: var(--green-deep); }
.privacy-toc ol {
  list-style: arabic-indic;
  padding-inline-start: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  font-size: 14px;
}
.privacy-toc a { color: var(--ink-2); }
.privacy-toc a:hover { color: var(--green-deep); }

.privacy-shell section { margin-bottom: 40px; scroll-margin-top: 100px; }
.privacy-shell section h2 {
  font-size: 24px;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.privacy-shell section h2::before {
  content: ""; display: inline-block;
  width: 6px; height: 26px; border-radius: 3px;
  background: var(--green);
}
.privacy-shell p, .privacy-shell li {
  color: var(--ink-2); font-size: 16px; line-height: 1.85;
  margin-bottom: 10px;
}
.privacy-shell ul {
  list-style: disc;
  padding-inline-start: 22px;
}
.privacy-shell strong { color: var(--ink); font-weight: 700; }

@media (max-width: 600px) {
  .privacy-toc ol { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────
   MOBILE REFINEMENT — applies on top of base rules
   Tightens spacing, type, and decorative density at small widths.
   ───────────────────────────────────────────────────────────── */

/* Tablet ≤820px */
@media (max-width: 820px) {
  .nav { padding-inline: 16px; gap: 12px; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }

  .hero { padding-inline: 16px; }

  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(28px, 5.5vw, 40px); }

  .how, .features, .owners, .cta { padding-block: clamp(56px, 10vw, 80px); padding-inline: 16px; }

  .feature-grid { gap: 12px; }
  .tile { padding: 24px; }
  .tile h3 { font-size: 20px; }
}

/* Phone ≤640px */
@media (max-width: 640px) {
  .hero-grid { gap: 32px; padding-block: 16px 32px; }
  .hero-title { font-size: clamp(36px, 9vw, 56px); margin-bottom: 18px; }
  .hero-sub { font-size: 16px; line-height: 1.65; margin-bottom: 28px; }
  .hero-cta { gap: 10px; margin-bottom: 32px; }
  .hero-cta .btn { padding: 12px 18px; font-size: 15px; }
  .hero-stats { gap: 18px 28px; padding-top: 22px; }
  .hero-stats strong { font-size: 26px; }
  .hero-stats span { font-size: 12px; }
  .hero-stats li { flex: 1 1 30%; min-width: 90px; }

  .hero-art { max-width: 360px; }
  .scene-bg { border-radius: 24px; }

  .eyebrow { margin-bottom: 18px; font-size: 12px; padding: 5px 12px; }

  .marquee { padding: 16px 0; }
  .marquee-track { font-size: 18px; gap: 22px; }

  .step { padding: 28px 22px; }
  .step h3 { font-size: 20px; }
  .step p { font-size: 14px; }
  .step-icon { width: 64px; height: 64px; margin-top: 18px; }
  .step-num { width: 42px; height: 42px; font-size: 19px; margin-bottom: 14px; }

  .feature-grid { gap: 12px; }
  .tile { padding: 22px; border-radius: 20px; }
  .tile h3 { font-size: 19px; margin-bottom: 8px; }
  .tile p { font-size: 14px; line-height: 1.6; }
  .tile-360 .ring { width: 72px; height: 72px; }
  .reel-frame { width: 78px; }
  .shifts li { padding: 9px 12px; font-size: 13px; }
  .shifts li span { font-size: 16px; }

  .owners-copy h2 { font-size: clamp(28px, 6vw, 36px); }
  .owners-copy > p { font-size: 15px; margin-bottom: 22px; }
  .bullet-list { gap: 12px; margin-bottom: 26px; }
  .bullet-list li { font-size: 14px; }

  .dash { padding: 18px; }
  .dash-row { font-size: 13px; padding-block: 6px; }
  .dash-head, .dash-foot { padding: 10px 12px; }
  .dash-head strong, .dash-foot strong { font-size: 16px; }
  .bars { height: 56px; gap: 6px; }

  .cta-card { padding: 32px 24px; gap: 24px; border-radius: 24px; }
  .cta-text h2 { font-size: clamp(24px, 5.5vw, 32px); }
  .cta-text p { font-size: 15px; }
  .store-row { width: 100%; }
  .store-badge { flex: 1; padding: 12px 16px; justify-content: center; }
  .store-badge strong { font-size: 15px; }
  .store-badge small { font-size: 10px; }

  .foot-grid { gap: 32px; margin-bottom: 32px; }
  .foot-bottom { flex-direction: column-reverse; align-items: flex-start; gap: 16px; text-align: start; }
  .foot-social { gap: 14px; }
}

/* Small phone ≤420px */
@media (max-width: 420px) {
  .nav-cta span { display: none; }
  .nav-cta { padding: 9px 11px; }

  .hero { padding-block: 24px 0; }
  .hero-title { font-size: clamp(34px, 9.5vw, 44px); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 14px 20px; }
  .hero-stats strong { font-size: 22px; }

  .hero-art { max-width: 320px; }
  .phone { width: 70%; bottom: -22px; border-radius: 32px; padding: 6px; }
  .phone::before { width: 70px; height: 18px; top: 12px; }
  .phone-screen { border-radius: 26px; }
  .card { margin: 10px 10px 0; }
  .card-image { height: 100px; }
  .phone-tabbar { padding: 12px 14px 18px; }

  .marquee-track { font-size: 16px; }

  .privacy-shell { padding-inline: 16px; }
  .privacy-toc { padding: 18px 20px; }
  .privacy-shell h1 { font-size: 32px; }
  .privacy-shell .lede { font-size: 15px; }
  .privacy-shell section h2 { font-size: 20px; }
  .privacy-shell p, .privacy-shell li { font-size: 15px; line-height: 1.75; }
}

/* Hide heavy blur on small screens for performance */
@media (max-width: 640px) {
  .orb { filter: blur(50px); opacity: .6; }
  .orb-3 { display: none; }
}
