/* ===== WEBIVIZE — DARK LUXURY ===== */
:root {
  --bg: #08080a;
  --bg-2: #0e0e12;
  --ink: #f4efe6;
  --ink-dim: #a6a29a;
  --ink-muted: #6b6860;
  --line: rgba(244, 239, 230, 0.08);
  --line-strong: rgba(244, 239, 230, 0.16);
  --gold: #d4a95a;
  --gold-bright: #f1c773;
  --gold-deep: #8a6a30;
  --amber-glow: rgba(212, 169, 90, 0.35);
  --danger: #c74c3a;
  --ok: #5ba85c;

  --font-head: 'Rubik', system-ui, sans-serif;
  --font-body: 'Heebo', system-ui, sans-serif;

  --fs-h1: clamp(52px, 7.6vw, 112px);
  --fs-h2: clamp(36px, 5vw, 76px);
  --fs-h3: clamp(24px, 3vw, 42px);
  --fs-question: clamp(19px, 1.7vw, 23px);
  --fs-body: clamp(18px, 1.55vw, 22px);
  --fs-body-sm: clamp(16px, 1.05vw, 18px);
  --fs-eyebrow: clamp(15px, 1.08vw, 18px);
  --fs-button: clamp(16px, 1.08vw, 18px);
  --fs-button-lg: clamp(18px, 1.3vw, 20px);
  --fs-avatar: clamp(18px, 1.2vw, 20px);
  --fs-quote-mark: clamp(44px, 3.2vw, 48px);
  --fs-label: clamp(12px, 0.82vw, 13px);
  --fs-nav: clamp(12px, 0.78vw, 13px);
  --fs-footer: clamp(12px, 0.85vw, 13px);
  --fs-display: clamp(44px, 9vw, 140px);
  --fs-display-xl: clamp(140px, 22vw, 280px);
  --fs-marquee: clamp(28px, 4vw, 56px);
  --fs-countdown-title: clamp(24px, 2.2vw, 30px);
  --fs-countdown-slide-title: clamp(30px, 4vw, 56px);
  --fs-testimonial-mobile: clamp(25px, 8vw, 34px);
  --fs-mock-title: clamp(18px, 2.2vw, 28px);
  --fs-mock-body: clamp(9px, 0.9vw, 11px);
  --fs-mock-stat: clamp(14px, 1.8vw, 22px);
}


* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

body[data-lang="en"] { direction: ltr; }
body[data-lang="he"] { direction: rtl; }

/* Film grain — always on, never moves */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: overlay;
}
/* Base global vignette — soft top + bottom halo */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(212, 169, 90, 0.06) 0%, transparent 55%),
              radial-gradient(ellipse 70% 40% at 50% 100%, rgba(212, 169, 90, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Section atmosphere — drifting gold glows on feature sections */
.atmo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.atmo::before,
.atmo::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: var(--atmo-opacity, 0.55);
  will-change: transform;
}
.atmo::before {
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  left: -15vw;
  top: -10vw;
  background: radial-gradient(circle, rgba(212,169,90,0.35) 0%, rgba(138,106,48,0.15) 40%, transparent 70%);
  animation: atmoDriftA 28s ease-in-out infinite alternate;
}
.atmo::after {
  width: 50vw;
  height: 50vw;
  max-width: 760px;
  max-height: 760px;
  right: -10vw;
  bottom: -15vw;
  background: radial-gradient(circle, rgba(241,199,115,0.20) 0%, rgba(212,169,90,0.08) 40%, transparent 70%);
  animation: atmoDriftB 36s ease-in-out infinite alternate;
}
@keyframes atmoDriftA {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(6vw,4vw,0) scale(1.08); }
  100% { transform: translate3d(-3vw,6vw,0) scale(1.04); }
}
@keyframes atmoDriftB {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-5vw,-3vw,0) scale(1.06); }
  100% { transform: translate3d(4vw,-6vw,0) scale(1.1); }
}

/* Architectural hairline divider with gold bloom */
.atmo-divider {
  position: relative;
  height: 1px;
  margin: 0 auto;
  max-width: 1200px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,169,90,0.55) 50%, transparent 100%);
}
.atmo-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 260px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(241,199,115,0.25) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(6px);
}
.atmo-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(241,199,115,0.9), 0 0 30px rgba(212,169,90,0.6);
}

/* Subtle grid on mid-content sections */
.atmo-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(244,239,230,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,239,230,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 75%);
}

/* Tweak switches */
body[data-atmo="off"] .atmo,
body[data-atmo="off"] .atmo-grid,
body[data-atmo="off"] .atmo-divider { display: none; }
body[data-grain="off"]::before { display: none; }

/* Ensure sections can host absolute atmo */
main > section { position: relative; }
main > section > .container,
main > section > .section-head,
main > section > .testimonial,
main > section > .faq,
main > section > .final-cta-inner,
main > section > .countdown-section,
main > section > .hero-inner { position: relative; z-index: 2; }

/* ===== TWEAKS PANEL ===== */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 280px;
  background: rgba(14,14,18,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  z-index: 9998;
  font-family: var(--font-body);
  color: var(--ink);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(212,169,90,0.1);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s ease-out, transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.tweaks-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.tweaks-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.tweaks-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.tweaks-close {
  background: none;
  border: 0;
  color: var(--ink-dim);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
}
.tweaks-close:hover { color: var(--ink); }
.tweaks-body { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 14px; }
.tweak-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: var(--fs-label);
  color: var(--ink-dim);
  cursor: pointer;
}
.tweak-row.tweak-col { flex-direction: column; align-items: stretch; gap: 8px; }
.tweak-label b { color: var(--gold-bright); font-weight: 600; font-variant-numeric: tabular-nums; }
.tweak-row input[type="checkbox"] {
  appearance: none;
  width: 36px;
  height: 20px;
  background: rgba(244,239,230,0.1);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid var(--line-strong);
}
.tweak-row input[type="checkbox"]::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: var(--ink-dim);
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), background 0.2s;
}
.tweak-row input[type="checkbox"]:checked {
  background: linear-gradient(180deg, var(--gold-deep) 0%, var(--gold) 100%);
  border-color: var(--gold);
}
.tweak-row input[type="checkbox"]:checked::after {
  transform: translateX(16px);
  background: #0a0a0a;
}
.tweak-row input[type="range"] {
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(244,239,230,0.1);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.tweak-row input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 0 1px var(--gold), 0 0 8px rgba(212,169,90,0.5);
  cursor: pointer;
}
.tweak-row input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-bright);
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 0 1px var(--gold);
  cursor: pointer;
}

main { position: relative; z-index: 3; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
  will-change: transform;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(244,239,230,0.5);
  border-radius: 50%;
  will-change: transform;
  transition: width 0.25s, height 0.25s, border-color 0.25s, opacity 0.2s;
}
.cursor-ring.hover { width: 64px; height: 64px; border-color: var(--gold); }
.cursor-dot.hover { width: 0; height: 0; }

@media (hover: none), (pointer: coarse), (max-width: 767px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.07em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.gold { color: var(--gold-bright); }
.gold-gradient {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 40%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
  padding: 140px 0;
}

@media (max-width: 720px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(8, 8, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
  padding: 14px 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  width: 132px;
  height: auto;
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.lang-toggle {
  display: inline-flex;
  background: var(--line);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-nav);
  letter-spacing: 0;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  color: var(--ink-dim);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: none;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  transition: all 0.3s;
}
.lang-toggle button.active {
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-button);
  letter-spacing: -0.005em;
  border: 0;
  border-radius: 999px;
  cursor: none;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  color: #0a0a0a;
  box-shadow: 0 20px 40px -20px var(--amber-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff 0%, var(--gold-bright) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover::before { opacity: 1; }
  .btn-primary:hover .arrow { transform: translateX(-4px); }
  body[data-lang="en"] .btn-primary:hover .arrow { transform: translateX(4px); }
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary .arrow { position: relative; z-index: 1; transition: transform 0.3s; }
@media (hover: none), (pointer: coarse), (max-width: 767px) {
  [data-magnetic] { transform: none !important; }
  .btn-primary::before { opacity: 0 !important; }
  .btn-primary .arrow { transform: none !important; }
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 16px 28px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

@media (max-width: 640px) {
  .nav {
    padding: 12px 14px;
    gap: 10px;
    justify-content: center;
  }
  .nav.scrolled {
    padding: 10px 14px;
  }
  .nav-logo {
    width: 104px;
  }
  .nav-right {
    flex: 0 1 auto;
    min-width: 0;
    gap: 8px;
  }
  .lang-toggle {
    flex: 0 0 auto;
    padding: 2px;
    font-size: var(--fs-nav);
  }
  .lang-toggle button {
    padding: 5px 9px;
  }
  .nav-cta {
    display: none;
  }
}

@media (max-width: 380px) {
  .nav {
    padding-inline: 10px;
    gap: 7px;
  }
  .nav.scrolled {
    padding-inline: 10px;
  }
  .nav-logo {
    width: 96px;
  }
  .nav-right {
    gap: 6px;
  }
  .lang-toggle button {
    padding: 5px 8px;
  }
}

/* Countdown detail panel */
#countdown h2 .line { display: block; }
.countdown-detail {
  grid-area: detail;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  min-height: 92px;
  padding: 0 10px;
  direction: rtl;
}
body[data-lang="en"] .countdown-detail { direction: ltr; }
.countdown-detail-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-countdown-title);
  color: var(--gold-bright);
  margin-bottom: 8px;
  transition: opacity .3s;
}
.countdown-detail-body {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  line-height: 1.5;
  color: var(--ink-dim);
  text-wrap: pretty;
  transition: opacity .3s;
}
.day-cell {
  cursor: none;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
}

/* Final CTA — force 2 lines + balance subhead wrapping */
.final-cta-h2 .line { display: block; }
.final-cta-lede { text-wrap: balance; max-width: 42ch; margin-inline: auto; }

/* Hero CTA — visually dominant primary action */
.hero-actions .btn-primary {
  font-size: var(--fs-button-lg);
  font-weight: 700;
  padding: 22px 40px;
  letter-spacing: -0.01em;
  box-shadow: 0 24px 60px -16px var(--amber-glow), 0 0 0 1px rgba(241,199,115,0.25), inset 0 1px 0 rgba(255,255,255,0.35);
}
.hero-actions .btn-primary .arrow { width: 22px; height: 16px; }
@media (max-width: 640px) {
  .btn-primary {
    justify-content: center;
  }
  .btn-primary .arrow {
    display: none;
  }
  .hero-actions .btn-primary { font-size: var(--fs-button); padding: 20px 42px; }
}

.btn-sub {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

.cta-wrap { display: inline-flex; flex-direction: column; align-items: flex-start; }
body[data-lang="en"] .cta-wrap { align-items: flex-start; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-lines .line {
  display: block;
  overflow: hidden;
}
.reveal-lines .line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.2,.85,.2,1);
}
.reveal-lines.in .line > span { transform: translateY(0); }
.reveal-lines.in .line:nth-child(2) > span { transition-delay: 0.1s; }
.reveal-lines.in .line:nth-child(3) > span { transition-delay: 0.2s; }
.reveal-lines.in .line:nth-child(4) > span { transition-delay: 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Hero grid backdrop */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 10%, transparent 80%);
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-title {
  font-size: var(--fs-h1);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 24px 0 32px;
}
.hero-title .strike {
  position: relative;
  display: inline-block;
  color: var(--ink-dim);
}
.hero-title .strike::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%;
  top: 52%;
  height: 5px;
  background: var(--danger);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1) 0.8s;
}
body[data-lang="en"] .hero-title .strike::after { transform-origin: left; }
.hero-title.in .strike::after { transform: scaleX(1); }

.hero-lede {
  font-size: var(--fs-body);
  color: var(--ink-dim);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-lede strong { color: var(--gold-bright); font-weight: 600; }

.hero-actions { display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; }

/* Hero visual — showroom */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  perspective: 1800px;
}
.showroom {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}
.showroom-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #14141a 0%, #0a0a0e 100%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.7),
              0 40px 80px -20px var(--amber-glow),
              inset 0 1px 0 rgba(255,255,255,0.05);
}
.showroom-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, var(--amber-glow) 0%, transparent 40%);
  filter: blur(40px);
  z-index: -1;
}

/* Mock landing page inside card */
.mock-page {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  direction: rtl;
  text-align: right;
}
.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.mock-logo {
  width: 56px; height: 10px;
  background: var(--gold);
  border-radius: 2px;
}
.mock-nav-links { display: flex; gap: 10px; }
.mock-nav-links span {
  width: 28px; height: 5px;
  background: var(--ink-dim);
  opacity: 0.3;
  border-radius: 2px;
}
.mock-h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--fs-mock-title);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.mock-h1-gold { color: var(--gold-bright); }
.mock-p {
  font-size: var(--fs-mock-body);
  color: var(--ink-dim);
  margin-bottom: 16px;
  line-height: 1.5;
}
.mock-btn {
  display: inline-block;
  padding: 10px 16px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-label);
  width: fit-content;
  margin-bottom: 20px;
}
.mock-stats {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.mock-stat-n {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-mock-stat);
  color: var(--gold-bright);
}
.mock-stat-l {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* Floating chips around hero card */
.float-chip {
  position: absolute;
  background: rgba(20,20,24,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}
.float-chip .dot {
  width: 6px; height: 6px;
  background: var(--ok);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--ok);
}
.float-chip.chip-1 { top: 8%; left: -10%; animation-delay: 0s; }
.float-chip.chip-2 { bottom: 22%; right: -8%; animation-delay: -2s; }
.float-chip.chip-3 { bottom: -3%; left: 10%; animation-delay: -4s; }
body[data-lang="en"] .float-chip.chip-1 { left: auto; right: -10%; }
body[data-lang="en"] .float-chip.chip-2 { right: auto; left: -8%; }
body[data-lang="en"] .float-chip.chip-3 { left: auto; right: 10%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero kinetic type (variant B) */
.kinetic-hero {
  position: relative;
  text-align: center;
  padding: 60px 0;
}
.kinetic-line {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: var(--fs-display);
  line-height: 0.9;
  letter-spacing: -0.04em;
  overflow: hidden;
  display: block;
}
.kinetic-line .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50%) rotateX(-60deg);
  transform-origin: 50% 50% -40px;
  transition: opacity 0.9s, transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.kinetic-hero.in .word { opacity: 1; transform: translateY(0) rotateX(0); }
.kinetic-line.outline .word {
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Hero particles (variant C) */
.particle-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-showcase-orbit {
  position: absolute;
  inset: -8% -10%;
  z-index: 1;
  pointer-events: none;
  perspective: 1600px;
  opacity: 0.92;
}
.hero-showcase-orbit::before {
  content: '';
  position: absolute;
  inset: 7% 18%;
  background:
    radial-gradient(circle at 50% 46%, rgba(8,8,10,0.86), rgba(8,8,10,0.55) 34%, transparent 68%),
    radial-gradient(circle at 50% 50%, rgba(241,199,115,0.16), transparent 58%);
  filter: blur(18px);
}
.hero-site-card {
  position: absolute;
  width: clamp(210px, 24vw, 390px);
  aspect-ratio: 16 / 9.4;
  padding-top: 22px;
  border-radius: 16px;
  overflow: hidden;
  background: #070709;
  border: 1px solid rgba(241,199,115,0.18);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.58),
    0 0 38px rgba(241,199,115,0.09),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transform-style: preserve-3d;
  animation: heroSiteFloat 11s ease-in-out infinite;
}
.hero-site-card::after {
  content: '';
  position: absolute;
  inset: 22px 0 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0) 38%, rgba(8,8,10,0.46) 100%),
    radial-gradient(circle at 50% 0%, rgba(241,199,115,0.15), transparent 54%);
  pointer-events: none;
}
.hero-site-card span {
  position: absolute;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(241,199,115,0.72);
}
.hero-site-card span:nth-child(1) { right: 12px; }
.hero-site-card span:nth-child(2) { right: 23px; opacity: 0.72; }
.hero-site-card span:nth-child(3) { right: 34px; opacity: 0.52; }
.hero-site-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.96) contrast(1.04);
}
.hero-site-card-a {
  top: 8%;
  right: -3%;
  width: clamp(250px, 29vw, 500px);
  opacity: 0.44;
  filter: blur(1.6px);
  transform: rotate(-8deg) translateZ(-120px);
  animation-duration: 13s;
}
.hero-site-card-b {
  bottom: 7%;
  left: -1%;
  width: clamp(240px, 28vw, 480px);
  opacity: 0.46;
  filter: blur(1.2px);
  transform: rotate(7deg) translateZ(-90px);
  animation-delay: -3s;
  animation-duration: 15s;
}
.hero-site-card-c {
  top: 20%;
  left: 3%;
  width: clamp(170px, 19vw, 310px);
  opacity: 0.28;
  filter: blur(2.4px);
  transform: rotate(-11deg) translateZ(-220px);
  animation-delay: -6s;
}
.hero-site-card-d {
  right: 6%;
  bottom: 21%;
  width: clamp(170px, 18vw, 300px);
  opacity: 0.24;
  filter: blur(2.8px);
  transform: rotate(10deg) translateZ(-260px);
  animation-delay: -8s;
  animation-duration: 16s;
}
.hero-site-card-e {
  top: 0;
  left: 24%;
  width: clamp(180px, 20vw, 340px);
  opacity: 0.20;
  filter: blur(3px);
  transform: rotate(4deg) translateZ(-300px);
  animation-delay: -4s;
  animation-duration: 17s;
}
.hero-site-card-f {
  right: 22%;
  bottom: -1%;
  width: clamp(170px, 19vw, 320px);
  opacity: 0.23;
  filter: blur(2.6px);
  transform: rotate(-6deg) translateZ(-250px);
  animation-delay: -10s;
}
.particle-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
}
.particle-hero .hero-content::before {
  content: '';
  position: absolute;
  inset: -44px -56px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(8,8,10,0.72), rgba(8,8,10,0.42) 48%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}
@keyframes heroSiteFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}

@media (max-width: 760px) {
  .hero {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    min-height: auto;
    align-items: flex-start;
    padding-top: 96px;
    padding-bottom: 86px;
  }
  .hero-inner {
    width: 100%;
    max-width: 100%;
  }
  .particle-hero {
    width: 100vw;
    max-width: 100vw;
    min-height: 760px;
    margin-inline: calc(50% - 50vw);
    align-items: flex-start;
    overflow: visible;
    padding-top: 54px;
  }
  .hero-showcase-orbit {
    inset: -4% 0 -6%;
    opacity: 0.9;
    overflow: visible;
  }
  .hero-showcase-orbit::before {
    inset: 16% 4%;
    background:
      radial-gradient(circle at 50% 46%, rgba(8,8,10,0.64), rgba(8,8,10,0.42) 36%, transparent 70%),
      radial-gradient(circle at 50% 50%, rgba(241,199,115,0.13), transparent 58%);
    filter: blur(14px);
  }
  .hero-site-card {
    border-radius: 12px;
    padding-top: 18px;
  }
  .hero-site-card span { top: 7px; width: 5px; height: 5px; }
  .hero-site-card-a,
  .hero-site-card-b {
    width: min(70vw, 300px);
    opacity: 0.42;
    filter: blur(1.25px);
  }
  .hero-site-card-a {
    top: 4%;
    right: 0;
    transform: rotate(-11deg) translateZ(-110px);
    translate: 50% 0;
  }
  .hero-site-card-b {
    bottom: 4%;
    left: 0;
    transform: rotate(9deg) translateZ(-110px);
    translate: -50% 0;
  }
  .hero-site-card-c {
    display: block;
    top: 20%;
    left: 0;
    width: min(52vw, 220px);
    opacity: 0.25;
    filter: blur(2.4px);
    transform: rotate(8deg) translateZ(-260px);
    translate: -48% 0;
  }
  .hero-site-card-d {
    display: block;
    bottom: 23%;
    right: 0;
    width: min(54vw, 225px);
    opacity: 0.24;
    filter: blur(2.5px);
    transform: rotate(-9deg) translateZ(-260px);
    translate: 50% 0;
  }
  .hero-site-card-e {
    display: block;
    top: 50%;
    right: 0;
    width: min(60vw, 250px);
    opacity: 0.27;
    filter: blur(2.1px);
    transform: rotate(-5deg) translateZ(-220px);
    translate: 48% 0;
  }
  .hero-site-card-f {
    display: block;
    top: 66%;
    left: 0;
    width: min(56vw, 235px);
    opacity: 0.23;
    filter: blur(2.5px);
    transform: rotate(7deg) translateZ(-250px);
    translate: -50% 0;
  }
  .particle-hero .hero-content::before {
    inset: -34px -10px;
    background: radial-gradient(ellipse at center, rgba(8,8,10,0.62), rgba(8,8,10,0.38) 48%, rgba(8,8,10,0.12) 70%, transparent 84%);
  }
  .particle-hero .hero-content {
    width: min(100%, 440px);
    max-width: 440px;
    margin-inline: auto;
    padding-inline: 26px;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(48px, 14.5vw, 68px);
    line-height: 1.08;
    margin-top: 30px !important;
    margin-bottom: 32px !important;
  }
  .hero-title .line + .line {
    margin-top: 0.06em;
  }
  .hero-lede {
    margin-bottom: 38px !important;
  }
  .hero-title,
  .hero-lede,
  .hero-actions {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-actions {
    justify-content: center !important;
  }
}

/* ===== AUTHORITY STATEMENT ===== */
.authority {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.authority h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

/* ===== PROBLEM / SOLUTION ===== */
.pain-gain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 80px;
}
@media (max-width: 860px) {
  .pain-gain { grid-template-columns: 1fr; }
}
.pg-card {
  position: relative;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  overflow: hidden;
}
.pg-card.pain { border-color: rgba(199,76,58,0.25); }
.pg-card.gain { border-color: rgba(212,169,90,0.3); }
.pg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, currentColor 0%, transparent 50%);
  opacity: 0.08;
  pointer-events: none;
}
.pg-card.pain::before { color: var(--danger); }
.pg-card.gain::before { color: var(--gold); }

.pg-label {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pg-card.pain .pg-label { color: var(--danger); }
.pg-card.gain .pg-label { color: var(--gold); }
.pg-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 28px;
  line-height: 1.2;
}
.pg-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.pg-item:first-of-type { border-top: 0; }
.pg-item h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-body-sm);
  margin-bottom: 6px;
}
.pg-card.pain .pg-item h4 { color: #e98070; }
.pg-card.gain .pg-item h4 { color: var(--gold-bright); }
.pg-item p {
  font-size: var(--fs-body-sm);
  color: var(--ink-dim);
  line-height: 1.65;
}

/* ===== ABOUT FOUNDER ===== */
.about-founder {
  overflow: hidden;
  isolation: isolate;
}
.about-founder::before {
  content: '';
  position: absolute;
  inset: 7% 0 0;
  background:
    radial-gradient(circle at 22% 48%, rgba(241,199,115,0.13), transparent 30%),
    radial-gradient(circle at 78% 34%, rgba(241,199,115,0.08), transparent 28%),
    linear-gradient(90deg, rgba(241,199,115,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(241,199,115,0.025) 1px, transparent 1px);
  background-size: auto, auto, 86px 86px, 86px 86px;
  mask-image: radial-gradient(ellipse 78% 68% at 50% 50%, #000 0%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse 78% 68% at 50% 50%, #000 0%, transparent 82%);
  pointer-events: none;
  z-index: 0;
}
.about-founder-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-founder-copy h2 {
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 22px 0 28px;
}
.about-founder-copy h2 span {
  display: block;
}
.about-founder-copy p {
  max-width: 680px;
  color: var(--ink-dim);
  font-size: var(--fs-body);
  line-height: 1.82;
}
.about-founder-copy p + p {
  margin-top: 14px;
}
.about-photo-stage {
  position: relative;
  min-height: 620px;
  order: -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}
.about-photo-stage::before {
  content: '';
  position: absolute;
  inset: 8% -5% 8% -4%;
  border: 1px solid rgba(241,199,115,0.14);
  border-radius: 30px;
  background: radial-gradient(circle at 60% 36%, rgba(241,199,115,0.18), transparent 42%);
  transform: rotate(1.5deg);
  pointer-events: none;
}
.about-photo-main,
.about-photo-secondary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241,199,115,0.18);
  background: #070709;
  box-shadow:
    0 44px 100px rgba(0,0,0,0.52),
    0 0 50px rgba(241,199,115,0.10);
}
.about-photo-main {
  border-radius: 30px;
  z-index: 2;
}
.about-photo-secondary {
  border-radius: 22px;
  opacity: 0.86;
  z-index: 1;
  margin-top: 56px;
  margin-bottom: 56px;
}
.about-photo-main::after,
.about-photo-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0.04), rgba(8,8,10,0.52)),
    radial-gradient(circle at 50% 0%, rgba(241,199,115,0.12), transparent 52%);
  pointer-events: none;
}
.about-photo-main img,
.about-photo-secondary img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}
.about-photo-main img {
  object-position: center 32%;
}
.about-photo-secondary img {
  object-position: center 30%;
}
@media (max-width: 920px) {
  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-photo-stage {
    min-height: 560px;
    order: 0;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.52fr);
  }
}
@media (max-width: 640px) {
  .about-founder-copy h2 {
    font-size: var(--fs-h2);
  }
  .about-founder-copy p {
    font-size: var(--fs-body-sm);
    line-height: 1.78;
  }
  .about-photo-stage {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-photo-stage::before { display: none; }
  .about-photo-main {
    min-height: 440px;
    border-radius: 24px;
  }
  .about-photo-main img {
    content: url('../images/about-photo-2-web.avif');
    object-position: center 28%;
  }
  .about-photo-secondary {
    display: none;
  }
}

/* ===== RECENT WORK ===== */
.recent-work {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
}
.work-head {
  max-width: 980px;
  margin: 0 auto 70px;
  text-align: center;
}
.work-head .section-head {
  padding: 0;
  margin: 0 auto;
}
.work-head p {
  color: var(--ink-dim);
  font-size: var(--fs-body);
  line-height: 1.75;
  margin: 22px auto 0;
  max-width: 760px;
}
.work-stage {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  direction: ltr;
}
.work-stage::before {
  content: '';
  position: absolute;
  inset: -36px;
  border: 1px solid rgba(212,169,90,0.08);
  background:
    linear-gradient(90deg, rgba(212,169,90,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(212,169,90,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 78% 62% at 50% 48%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 48%, #000 0%, transparent 78%);
  pointer-events: none;
}
.work-stage::after {
  content: '';
  position: absolute;
  inset: 34% auto auto 50%;
  width: 220px;
  height: 260px;
  background:
    url("data:image/svg+xml,%3Csvg width='220' height='260' viewBox='0 0 220 260' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 24 C96 68 126 118 116 180 C111 212 132 235 198 244' stroke='%23F1C773' stroke-opacity='.3' stroke-width='1.2' stroke-dasharray='8 11'/%3E%3Cpath d='M34 164 C76 146 126 144 180 162' stroke='%23F1C773' stroke-opacity='.16' stroke-width='1' stroke-dasharray='5 9'/%3E%3Ccircle cx='20' cy='24' r='4' fill='%23F1C773' fill-opacity='.36'/%3E%3Ccircle cx='198' cy='244' r='4' fill='%23F1C773' fill-opacity='.28'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.work-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  z-index: 1;
  direction: rtl;
  min-height: 430px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(241,199,115,0.16), transparent 34%),
    linear-gradient(145deg, rgba(20,20,25,0.92), rgba(8,8,10,0.98));
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.56s cubic-bezier(.2,.8,.2,1),
    transform 0.56s cubic-bezier(.2,.8,.2,1),
    border-color 0.35s,
    background 0.35s;
  display: flex;
  flex-direction: column;
}
.work-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.work-card[data-work-reveal="1"].is-visible { transition-delay: 0.06s; }
.work-card[data-work-reveal="2"].is-visible { transition-delay: 0.12s; }
.work-card[data-work-reveal="3"].is-visible { transition-delay: 0.06s; }
.work-card[data-work-reveal="4"].is-visible { transition-delay: 0.12s; }
@media (max-width: 640px) {
  .work-stage.reveal {
    opacity: 1;
    transform: none;
    transition-delay: 0s !important;
  }
  .work-card.is-visible {
    transition-delay: 0s !important;
  }
}
@media (min-width: 641px) {
  .work-card {
    transition:
      opacity 0.68s cubic-bezier(.2,.8,.2,1),
      transform 0.68s cubic-bezier(.2,.8,.2,1),
      border-color 0.35s,
      background 0.35s;
  }
  .work-card[data-work-reveal="1"].is-visible { transition-delay: 0.14s; }
  .work-card[data-work-reveal="2"].is-visible { transition-delay: 0.28s; }
  .work-card[data-work-reveal="3"].is-visible { transition-delay: 0.14s; }
  .work-card[data-work-reveal="4"].is-visible { transition-delay: 0.28s; }
}
.work-column {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
  direction: rtl;
}
.work-column-left {
  margin-top: 150px;
}
.work-column-right .work-card:nth-child(1) { border-radius: 28px 28px 12px 28px; }
.work-column-right .work-card:nth-child(2) { border-radius: 28px 12px 28px 28px; }
.work-column-left .work-card:nth-child(1) { border-radius: 12px 28px 28px 12px; }
.work-column-left .work-card:nth-child(2) { border-radius: 28px 12px 28px 28px; }
.work-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(241,199,115,0.14), transparent),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,169,90,0.16), transparent 62%);
  opacity: 0;
  transform: translateX(34%);
  transition: opacity 0.35s;
  animation: work-scan 5.6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.work-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(241,199,115,0.08);
  border-radius: inherit;
  pointer-events: none;
}
.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241,199,115,0.38);
}
.work-card.is-visible:hover {
  transform: translateY(-8px);
  transition-delay: 0s;
}
.work-card:hover::before { opacity: 1; }
.work-card-featured { min-height: 560px; }
.work-card-featured .work-copy { padding-bottom: 6px; }
.work-card-tall { min-height: auto; }
.work-meta,
.work-stats {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: var(--fs-label);
  color: var(--ink-muted);
  position: relative;
  z-index: 2;
}
.work-index {
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.work-browser {
  position: relative;
  height: 260px;
  margin: 26px 0 28px;
  border: 1px solid rgba(241,199,115,0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 18%, rgba(241,199,115,0.18), transparent 30%),
    linear-gradient(155deg, rgba(244,239,230,0.08), rgba(244,239,230,0.015));
  box-shadow:
    inset 0 1px 0 rgba(244,239,230,0.08),
    0 30px 70px -44px rgba(241,199,115,0.75);
  overflow: hidden;
  transform: perspective(900px) rotateX(0deg) rotateY(-5deg);
  transition: transform 0.55s cubic-bezier(.2,.8,.2,1);
}
body[data-lang="he"] .work-browser { transform: perspective(900px) rotateX(0deg) rotateY(5deg); }
.work-card:hover .work-browser { transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(-4px); }
.work-card-tall .work-browser { height: 460px; }
.work-browser-shot {
  background: rgba(8,8,10,0.84);
}
.work-browser-shot img {
  display: block;
  width: 100%;
  height: calc(100% - 34px);
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.96) contrast(1.04);
}
.work-browser-contain {
  background: #060607;
  border-color: rgba(241,199,115,0.16);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.82),
    0 24px 54px -44px rgba(241,199,115,0.42);
}
.work-card-tall .work-browser-contain {
  height: auto;
}
.work-browser-fit {
  height: auto;
}
.work-browser-contain .browser-top {
  background: #060607;
  border-bottom-color: rgba(244,239,230,0.06);
}
.work-browser-contain img {
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  background: #faf7f2;
}
.work-card-featured .work-browser-shot {
  height: 340px;
}
.work-card-featured .work-browser-shot img {
  object-fit: cover;
  object-position: center top;
}
.work-browser-shot::after {
  content: '';
  position: absolute;
  inset: 34px 0 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(8,8,10,0.30)),
    radial-gradient(circle at 50% 0%, rgba(241,199,115,0.12), transparent 52%);
  pointer-events: none;
}
.work-browser-contain::after {
  display: none;
}
.browser-top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(244,239,230,0.06);
  background: #060607;
}
.browser-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-deep);
}
.browser-top span:nth-child(2) { background: var(--gold); opacity: 0.8; }
.browser-top span:nth-child(3) { background: var(--gold-bright); opacity: 0.7; }
.work-copy {
  position: relative;
  z-index: 2;
}
.work-copy h3 {
  font-size: var(--fs-h3);
  line-height: 1;
  margin-bottom: 14px;
}
.work-copy p {
  color: var(--ink-dim);
  font-size: var(--fs-body-sm);
  line-height: 1.65;
  max-width: 620px;
}
.work-live-link {
  width: fit-content;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid rgba(241,199,115,0.42);
  border-radius: 0;
  background: transparent;
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-label);
  text-decoration: none;
  cursor: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.work-live-link svg {
  transition: transform 0.25s ease;
}
.work-live-link:hover {
  color: var(--ink);
  border-color: rgba(244,239,230,0.75);
}
.work-live-link:hover svg {
  transform: translate(-3px, 3px);
}
body[data-lang="en"] .work-live-link:hover svg {
  transform: translate(3px, -3px);
}
.work-live-link:active {
  color: var(--gold);
}
.work-live-link.is-disabled,
.work-live-link:disabled {
  opacity: 0.45;
  color: var(--ink-muted);
  cursor: default;
  border-color: var(--line);
  background: transparent;
}
.work-live-link.is-disabled:hover,
.work-live-link:disabled:hover {
  color: var(--ink-muted);
  border-color: var(--line);
  background: transparent;
}
.work-live-link.is-disabled:hover svg,
.work-live-link:disabled:hover svg {
  transform: none;
}
.work-stats {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.mock-hero,
.mock-dashboard,
.mock-split,
.mock-course {
  position: absolute;
  inset: 54px 22px 22px;
}
.mock-copy {
  width: 52%;
  padding-top: 24px;
}
.mock-copy i,
.mock-copy b,
.mock-copy em,
.mock-lines span,
.mock-bars span,
.mock-timeline i {
  display: block;
  border-radius: 999px;
  background: rgba(241,199,115,0.72);
}
.mock-copy i { width: 72px; height: 8px; margin-bottom: 22px; background: var(--gold-deep); }
.mock-copy b { width: 100%; height: 16px; margin-bottom: 10px; }
.mock-copy b:nth-of-type(2) { width: 72%; background: rgba(241,199,115,0.36); }
.mock-copy em { width: 116px; height: 30px; margin-top: 28px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); }
.mock-orbit {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(241,199,115,0.18);
  border-radius: 50%;
  animation: work-orbit 18s linear infinite;
}
body[data-lang="he"] .mock-orbit { right: auto; left: 32px; }
.mock-orbit span {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright), var(--gold-deep));
}
.mock-orbit span:nth-child(1) { top: -12px; left: 48px; }
.mock-orbit span:nth-child(2) { right: 4px; bottom: 18px; opacity: 0.65; }
.mock-orbit span:nth-child(3) { left: 6px; bottom: 28px; opacity: 0.45; }
.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
}
.mock-grid span {
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(241,199,115,0.15);
  background: rgba(244,239,230,0.035);
}
.work-card-niro {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,92,163,0.16), transparent 34%),
    linear-gradient(145deg, rgba(20,20,25,0.94), rgba(8,8,10,0.98));
}
.work-card-niro:hover {
  border-color: rgba(255,184,78,0.42);
}
.work-browser-niro {
  background:
    radial-gradient(circle at 70% 24%, rgba(255,92,163,0.22), transparent 28%),
    radial-gradient(circle at 28% 72%, rgba(255,184,78,0.18), transparent 30%),
    linear-gradient(155deg, rgba(38,18,34,0.82), rgba(14,10,14,0.94));
}
.niro-stage {
  position: absolute;
  inset: 34px 0 0;
  overflow: hidden;
}
.niro-curtain {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,92,163,0.16) 0 18px, rgba(255,184,78,0.08) 18px 36px),
    radial-gradient(ellipse 80% 52% at 50% 100%, rgba(255,184,78,0.16), transparent 58%);
  clip-path: polygon(0 0, 100% 0, 100% 64%, 86% 55%, 72% 66%, 58% 54%, 44% 66%, 30% 56%, 14% 66%, 0 56%);
  opacity: 0.86;
}
.niro-copy {
  position: absolute;
  top: 42px;
  right: 32px;
  width: 42%;
}
body[data-lang="en"] .niro-copy {
  right: auto;
  left: 32px;
}
.niro-copy i,
.niro-copy b,
.niro-copy em {
  display: block;
  border-radius: 999px;
}
.niro-copy i {
  width: 88px;
  height: 8px;
  margin-bottom: 20px;
  background: rgba(255,184,78,0.72);
}
.niro-copy b {
  height: 17px;
  margin-bottom: 10px;
  background: rgba(244,239,230,0.82);
}
.niro-copy b:nth-of-type(2) {
  width: 72%;
  background: rgba(255,184,78,0.50);
}
.niro-copy em {
  width: 126px;
  height: 30px;
  margin-top: 24px;
  background: linear-gradient(90deg, #ff5ca3, #ffb84e);
}
.niro-performer {
  position: absolute;
  left: 66px;
  bottom: 64px;
  width: 116px;
  height: 150px;
  animation: niro-bounce 2.8s ease-in-out infinite;
}
body[data-lang="en"] .niro-performer {
  left: auto;
  right: 66px;
}
.niro-head,
.niro-body,
.niro-arm,
.niro-fire {
  position: absolute;
  display: block;
}
.niro-head {
  top: 10px;
  left: 43px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffb84e;
  box-shadow: 0 0 34px rgba(255,184,78,0.45);
}
.niro-body {
  top: 46px;
  left: 48px;
  width: 20px;
  height: 68px;
  border-radius: 999px;
  background: rgba(244,239,230,0.84);
}
.niro-arm {
  top: 58px;
  left: 54px;
  width: 70px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,184,78,0.76);
  transform-origin: left center;
}
.niro-arm-a { transform: rotate(-28deg); }
.niro-arm-b { transform: rotate(34deg); }
.niro-fire {
  top: 20px;
  left: -18px;
  width: 42px;
  height: 58px;
  background: radial-gradient(circle at 70% 70%, #fff3ba 0 10%, #ffb84e 28%, #ff5c40 64%, transparent 68%);
  clip-path: polygon(55% 0, 84% 36%, 68% 100%, 28% 100%, 10% 45%);
  filter: drop-shadow(0 0 18px rgba(255,92,64,0.7));
  animation: niro-flame 0.28s ease-in-out infinite alternate;
}
.niro-juggle {
  position: absolute;
  left: 52px;
  top: 42px;
  width: 160px;
  height: 84px;
}
body[data-lang="en"] .niro-juggle {
  left: auto;
  right: 52px;
}
.niro-juggle span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff5ca3;
  box-shadow: 0 0 24px rgba(255,92,163,0.5);
  animation: niro-juggle 2.2s ease-in-out infinite;
}
.niro-juggle span:nth-child(1) { left: 18px; bottom: 8px; }
.niro-juggle span:nth-child(2) { left: 72px; top: 0; background: #ffb84e; animation-delay: 0.2s; }
.niro-juggle span:nth-child(3) { right: 14px; bottom: 12px; background: rgba(244,239,230,0.9); animation-delay: 0.4s; }
.niro-program {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.niro-program span {
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255,184,78,0.22);
  color: rgba(244,239,230,0.9);
  background: rgba(8,8,10,0.42);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
@keyframes niro-bounce {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes niro-flame {
  0% { transform: scale(0.9) rotate(-5deg); opacity: 0.82; }
  100% { transform: scale(1.08) rotate(4deg); opacity: 1; }
}
@keyframes niro-juggle {
  0%, 100% { transform: translateY(18px); }
  50% { transform: translateY(-18px); }
}
.mock-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 80px 1fr;
  gap: 12px;
}
.mock-dashboard strong {
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(241,199,115,0.26), rgba(241,199,115,0.04));
  border: 1px solid rgba(241,199,115,0.12);
}
.mock-dashboard div {
  grid-column: 1 / -1;
  border-radius: 16px;
  background:
    linear-gradient(135deg, transparent 30%, rgba(241,199,115,0.24) 30% 32%, transparent 32%),
    linear-gradient(160deg, rgba(244,239,230,0.07), rgba(244,239,230,0.02));
  border: 1px solid rgba(241,199,115,0.12);
}
.mock-bars {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 26px;
  display: grid;
  gap: 9px;
}
.mock-bars span {
  height: 8px;
  transform-origin: left center;
  animation: work-bars 2.4s ease-in-out infinite;
}
body[data-lang="he"] .mock-bars span { transform-origin: right center; }
.mock-bars span:nth-child(1) { width: 92%; }
.mock-bars span:nth-child(2) { width: 64%; animation-delay: 0.15s; }
.mock-bars span:nth-child(3) { width: 78%; animation-delay: 0.3s; }
.mock-bars span:nth-child(4) { width: 48%; animation-delay: 0.45s; }
.mock-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
}
.mock-split div {
  border-radius: 16px;
  border: 1px solid rgba(241,199,115,0.13);
  background: linear-gradient(160deg, rgba(241,199,115,0.20), rgba(244,239,230,0.03));
}
.mock-split div:first-child { border-radius: 50% 50% 18px 18px; }
.mock-lines {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 28px;
  display: grid;
  gap: 8px;
}
.mock-lines span { height: 7px; opacity: 0.65; }
.mock-lines span:nth-child(2) { width: 78%; }
.mock-lines span:nth-child(3) { width: 54%; }
.mock-course {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mock-course span {
  border-radius: 14px;
  border: 1px solid rgba(241,199,115,0.14);
  background:
    radial-gradient(circle at 70% 25%, rgba(241,199,115,0.24), transparent 35%),
    rgba(244,239,230,0.035);
}
.mock-timeline {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
}
.mock-timeline i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(241,199,115,0.22);
  border: 1px solid rgba(241,199,115,0.28);
}
@keyframes work-scan {
  0%, 100% { transform: translateX(42%); }
  50% { transform: translateX(-42%); }
}
@keyframes work-orbit {
  to { transform: rotate(360deg); }
}
@keyframes work-bars {
  0%, 100% { transform: scaleX(0.72); opacity: 0.45; }
  50% { transform: scaleX(1); opacity: 1; }
}
@media (max-width: 980px) {
  .work-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .work-stage {
    display: grid;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .work-stage::after {
    display: none;
  }
  .work-column,
  .work-column-left,
  .work-column-right {
    display: contents;
    width: 100%;
    margin-top: 0;
  }
  .work-column-right .work-card:nth-child(1) { order: 1; }
  .work-column-left .work-card:nth-child(1) { order: 2; }
  .work-column-right .work-card:nth-child(2) { order: 3; }
  .work-column-left .work-card:nth-child(2) { order: 4; }
  .work-card,
  .work-card-featured,
  .work-card-tall {
    min-height: auto;
    border-radius: 22px;
  }
  .work-card-tall .work-browser,
  .work-browser {
    height: 260px;
  }
}
@media (max-width: 640px) {
  .recent-work { padding: 80px 0 90px; }
  .work-stage { gap: 14px; }
  .work-card { padding: 18px; }
  .work-browser,
  .work-card-tall .work-browser,
  .work-card-featured .work-browser-shot {
    height: auto;
    min-height: 0;
    margin: 22px 0 26px;
    transform: none;
  }
  body[data-lang="he"] .work-browser { transform: none; }
  .work-browser-shot img,
  .work-browser-contain img,
  .work-card-featured .work-browser-shot img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center top;
  }
  .work-browser-shot::after { display: none; }
  .work-copy h3 { font-size: var(--fs-h3); }
  .work-meta { flex-direction: column; gap: 6px; }
}

/* ===== PROCESS (horizontal pin) ===== */
.process {
  position: relative;
}
.process-track {
  position: relative;
  height: 500vh; /* 5 steps = 5x viewport */
}
.process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.process-rail {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 8vw;
  gap: 6vw;
  will-change: transform;
}
.process-step {
  flex: 0 0 min(600px, 80vw);
  position: relative;
}
.process-step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--fs-display-xl);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-deep);
  margin-bottom: -40px;
  user-select: none;
  position: relative;
}
.process-step-num::before {
  content: attr(data-num);
  position: absolute;
  inset: 0;
  color: var(--gold);
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: var(--gold);
  opacity: 0;
  transition: opacity 0.6s;
}
.process-step.active .process-step-num::before { opacity: 1; }

.process-step h3 {
  font-size: var(--fs-h3);
  margin-bottom: 20px;
  max-width: 500px;
}
.process-step p {
  font-size: var(--fs-body-sm);
  color: var(--ink-dim);
  max-width: 500px;
  line-height: 1.7;
}
.process-progress {
  position: absolute;
  bottom: 40px;
  left: 8vw; right: 8vw;
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.process-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transform-origin: left;
  transform: scaleX(0);
}
body[data-lang="he"] .process-progress-fill { transform-origin: right; }
.process-counter {
  position: absolute;
  top: 120px;
  right: 8vw;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}
body[data-lang="en"] .process-counter { right: auto; left: 8vw; }
.process-counter .cur { color: var(--gold); }

@media (max-width: 860px) {
  .process-track { height: auto; }
  .process-sticky { position: relative; height: auto; padding: 60px 0; }
  .process-rail { flex-direction: column; height: auto; padding: 0 20px; gap: 60px; transform: none !important; }
  .process-step { flex: 0 0 auto; width: 100%; }
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  --tx: 50%;
  --ty: 35%;
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  isolation: isolate;
}
.testimonial::before {
  content: '';
  position: absolute;
  top: -96px;
  bottom: -96px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(217,174,91,0.035) 18%, rgba(244,239,230,0.026) 50%, rgba(217,174,91,0.032) 82%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(244,239,230,0.035) 119px, transparent 120px);
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
}
.testimonial::after {
  content: '';
  position: absolute;
  top: -48px;
  bottom: -48px;
  left: 50%;
  width: min(1px, 1px);
  transform: translateX(-50%);
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(217,174,91,0.34), transparent);
  opacity: 0.55;
}
.testi-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(58px, 7vw, 92px);
}
.testi-mini {
  position: relative;
  display: grid;
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
  justify-content: center;
  width: min(100%, 980px);
  margin-inline: auto;
}
.testi-mini:nth-child(odd) { grid-template-columns: minmax(260px, 340px) minmax(360px, 520px); }
.testi-mini:nth-child(even) { grid-template-columns: minmax(360px, 520px) minmax(260px, 340px); }
.testi-mini:nth-child(odd) .testi-video { grid-column: 1; }
.testi-mini:nth-child(odd) .testi-mini-body { grid-column: 2; grid-row: 1; }
.testi-mini:nth-child(even) .testi-video { grid-column: 2; }
.testi-mini:nth-child(even) .testi-mini-body { grid-column: 1; grid-row: 1; }
.testi-mini:nth-child(odd) .testi-video { --phone-enter-x: -64px; }
.testi-mini:nth-child(even) .testi-video { --phone-enter-x: 64px; }
.testi-mini:nth-child(1) .testi-video { --phone-rotate: -2.4deg; --phone-bob: -10px; --phone-delay: 0s; }
.testi-mini:nth-child(2) .testi-video { --phone-rotate: 2deg; --phone-bob: 9px; --phone-delay: -1.1s; }
.testi-mini:nth-child(3) .testi-video { --phone-rotate: -1.2deg; --phone-bob: -8px; --phone-delay: -0.45s; }
.testi-mini::after {
  content: '';
  position: absolute;
  inset-inline: 18%;
  bottom: -32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,174,91,0.14), transparent);
}
.testi-mini:last-child::after { display: none; }
.testi-mini .testi-video {
  aspect-ratio: 9 / 18.6;
  width: min(100%, 275px);
  margin: 0 auto;
  padding: 28px 10px 12px;
  border-radius: 34px;
  border: 1px solid rgba(244,239,230,0.14);
  background: linear-gradient(145deg, rgba(244,239,230,0.13), rgba(13,13,16,0.98) 22%, #050506 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.035),
    inset 0 -18px 34px rgba(0,0,0,0.34),
    0 18px 46px rgba(0,0,0,0.36);
  transform: translate3d(var(--phone-enter-x, 0), 34px, 0) rotate(var(--phone-rotate, 0deg));
  opacity: 0;
  will-change: transform;
}
.testi-mini.in .testi-video {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(var(--phone-rotate, 0deg));
  transition: opacity 0.78s ease, transform 0.9s cubic-bezier(.16,1,.24,1);
  animation: phoneFloat 5.8s ease-in-out calc(1s + var(--phone-delay, 0s)) infinite;
}
.testi-mini .testi-video::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 50%;
  width: 58px;
  height: 7px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(244,239,230,0.13);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.46);
  z-index: 2;
}
.testi-mini .testi-video::after {
  content: '';
  position: absolute;
  inset: 28px 10px 12px;
  border-radius: 25px;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,0.11), transparent 25%, transparent 75%, rgba(217,174,91,0.055));
  mix-blend-mode: screen;
  opacity: 0.3;
  transition: opacity 0.35s ease;
}
.testi-video.is-loaded::after { opacity: 0; }
.testi-mini .testi-video-media {
  border-radius: 25px;
}
.testi-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  transform: translate(-50%, -50%);
  color: rgba(244,239,230,0.92);
  background: rgba(35,31,24,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.32);
  display: grid;
  place-items: center;
  cursor: none;
  pointer-events: none;
  z-index: 4;
  transition: transform 0.24s ease, opacity 0.24s ease, background 0.24s ease;
}
.testi-video:hover .testi-play,
.testi-video:focus-visible .testi-play {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(50,43,31,0.78);
}
.testi-play svg {
  width: 50px;
  height: 50px;
  margin-inline-start: 2px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.24));
}
.testi-video.is-loaded {
  cursor: default;
}
.testi-video.is-loaded .testi-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}
.testi-mini-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  width: 100%;
  justify-self: center;
  padding: 0;
  opacity: 0;
  transform: translate3d(var(--text-enter-x, 46px), 22px, 0);
}
.testi-mini.in .testi-mini-body {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.82s ease 0.12s, transform 0.9s cubic-bezier(.16,1,.24,1) 0.12s;
}
.testi-mini:nth-child(odd) .testi-mini-body { --text-enter-x: 54px; }
.testi-mini:nth-child(even) .testi-mini-body { --text-enter-x: -54px; }
@keyframes phoneFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--phone-rotate, 0deg)); }
  50% { transform: translate3d(0, var(--phone-bob, -10px), 0) rotate(var(--phone-rotate, 0deg)); }
}
.testi-mini .play-btn {
  width: 72px; height: 72px;
}
.testi-mini .play-btn svg { width: 26px; height: 26px; }
.testi-mini .testi-video-label { font-size: var(--fs-label); text-align: center; padding: 0 16px; }
.testi-mini-quote {
  max-width: 560px;
  font-family: var(--font-head);
  font-weight: 650;
  font-size: var(--fs-h3);
  line-height: 1.08;
  letter-spacing: -0.032em;
  color: var(--ink);
  position: relative;
  flex: 1;
}
.testi-mini-quote::before {
  content: '"';
  display: block;
  font-family: var(--font-head);
  font-size: var(--fs-quote-mark);
  line-height: 0.35;
  color: var(--gold);
  opacity: 0.32;
  margin-bottom: 8px;
}
.testi-mini .testi-attrib {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.testi-mini .testi-avatar {
  width: 40px; height: 40px;
  font-size: var(--fs-label);
  flex-shrink: 0;
  aspect-ratio: 1;
}
.testi-attrib { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: #0a0a0a;
  font-size: var(--fs-avatar);
  overflow: hidden;
}
.testi-avatar-photo {
  background: #0a0a0a;
  border: 1px solid rgba(217,174,91,0.45);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
}
.testi-name { font-weight: 700; font-size: var(--fs-body-sm); }
.testi-role { font-size: var(--fs-label); color: var(--ink-muted); font-family: var(--font-body); letter-spacing: 0.03em; line-height: 1.35; }
@media (max-width: 900px) {
  .testimonial { padding: 0 22px; }
  .testi-grid { gap: 68px; }
  .testi-mini,
  .testi-mini:nth-child(odd),
  .testi-mini:nth-child(even) {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .testi-mini:nth-child(even) { flex-direction: column; }
  .testi-mini .testi-video { width: min(100%, 285px); }
  .testi-mini-body { --text-enter-x: 0px; }
  .testi-mini-quote { font-size: var(--fs-testimonial-mobile); }
}
@media (max-width: 460px) {
  .testi-mini .testi-video { width: min(100%, 270px); }
}

.testi-video {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line-strong);
  cursor: none;
}
.testi-video-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050506;
}
.testi-video-media:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}
.testi-video-placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(212,169,90,0.08) 14px, rgba(212,169,90,0.08) 15px),
    linear-gradient(135deg, #1a1a20 0%, #0a0a0e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.play-btn {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 var(--amber-glow);
  animation: pulse 2.4s ease-in-out infinite;
  transition: transform 0.3s;
}
.testi-video:hover .play-btn { transform: scale(1.1); }
.play-btn svg { width: 32px; height: 32px; color: #0a0a0a; margin-left: 4px; }
body[data-lang="he"] .play-btn svg { margin-left: 0; margin-right: 4px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,169,90,0.5); }
  50% { box-shadow: 0 0 0 30px rgba(212,169,90,0); }
}
.testi-video-label {
  font-family: var(--font-body);
  font-size: var(--fs-footer);
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}

/* ===== FAQ ===== */
.faq { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-question);
  transition: color 0.3s;
  user-select: none;
}
@media (hover: hover) and (pointer: fine) {
  .faq-q:hover { color: var(--gold-bright); }
}
@media (hover: none), (pointer: coarse), (max-width: 767px) {
  .faq-q {
    cursor: pointer;
    transition: none;
  }
  .faq-q:hover { color: inherit; }
}
.faq-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.4s;
}
.faq-icon::before { width: 14px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-icon { background: var(--gold); color: #0a0a0a; border-color: var(--gold); transform: rotate(180deg); }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.72s cubic-bezier(.16,1,.24,1);
  will-change: max-height;
}
.faq-a-inner {
  padding: 0 0 28px;
  color: var(--ink-dim);
  font-size: var(--fs-body);
  line-height: 1.75;
  max-width: 700px;
}
.faq-item.open .faq-a { max-height: var(--faq-open-height, 400px); }

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-marquee);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 60px;
  color: var(--ink-dim);
}
.marquee-item.gold { color: var(--gold-bright); }
.marquee-item .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
body[data-lang="he"] .marquee-track { animation-direction: reverse; }

/* ===== COUNTDOWN / 7 DAYS ===== */
.countdown-block {
  padding: 70px 0 52px;
}
.countdown-block .section-head {
  padding-bottom: 0;
  margin-bottom: 0;
}
.countdown-block .section-head h2 {
  font-size: var(--fs-h2);
  line-height: 0.98;
}
.countdown-section {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "rail"
    "hint";
  gap: 18px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 30px auto 0;
  padding: 0 0 8px;
  text-align: center;
  direction: ltr;
  overflow: hidden;
}
.countdown-rail {
  grid-area: rail;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.countdown-track {
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 2.5vw, 34px);
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  scroll-padding-inline: calc((100vw - min(72vw, 860px)) / 2);
  padding: 8px calc((100vw - min(72vw, 860px)) / 2) 34px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-y;
  scroll-behavior: auto;
}
body[data-lang="he"] .countdown-track {
  direction: ltr;
  flex-direction: row-reverse;
}
body[data-lang="he"] .countdown-slide {
  direction: rtl;
}
body[data-lang="en"] .countdown-track,
body[data-lang="en"] .countdown-slide {
  direction: ltr;
}
.countdown-track::-webkit-scrollbar { display: none; }
.countdown-track.is-dragging { cursor: grabbing; }
.countdown-slide {
  flex: 0 0 min(72vw, 860px);
  min-height: 560px;
  scroll-snap-align: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 0 28px 34px;
  opacity: calc(1 - (var(--slide-distance, 1) * 0.32));
  transform: translateY(calc(var(--slide-distance, 1) * 58px)) scale(calc(1 - (var(--slide-distance, 1) * 0.085)));
  transition: opacity 0.62s ease, transform 0.86s cubic-bezier(.16,1,.22,1);
  user-select: none;
  will-change: transform, opacity;
}
.slide-scene.phase-scene {
  grid-area: auto;
  width: min(76vw, 760px);
  height: 320px;
  max-width: none;
  margin: 0 auto 10px;
  opacity: 1;
  transition: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-scene.phase-scene svg {
  width: 100%;
  height: 100%;
  max-width: none;
}
.slide-detail.countdown-detail {
  width: min(100%, 760px);
  max-width: 760px;
  min-height: 0;
  margin: 0 auto;
}
.slide-detail .countdown-detail-title {
  font-size: var(--fs-h3);
  margin-bottom: 14px;
}
.slide-detail .countdown-detail-body {
  font-size: var(--fs-body);
  line-height: 1.62;
}
.countdown-hint {
  grid-area: hint;
  position: relative;
  width: 176px;
  height: 54px;
  margin: -2px auto 0;
  color: rgba(244,239,230,0.82);
  font-family: var(--font-body);
  font-size: var(--fs-label);
  pointer-events: none;
}
.countdown-hint::before {
  content: '';
  position: absolute;
  inset: 50% 12px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,174,91,0.42), transparent);
  opacity: 0.7;
}
.countdown-hint span,
.countdown-hint b {
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  font-weight: 600;
}
.countdown-hint span {
  border: 1px solid rgba(217,174,91,0.2);
  background: rgba(217,174,91,0.03);
  box-shadow: 0 0 22px rgba(217,174,91,0.07);
  animation: dragHintGhost 2.8s linear infinite;
}
.countdown-hint span:first-child { animation-delay: -0.08s; opacity: 0.34; }
.countdown-hint span:last-child { animation-delay: -0.16s; opacity: 0.18; }
.countdown-hint b {
  border: 1px solid rgba(217,174,91,0.5);
  background: radial-gradient(circle at 62% 28%, rgba(244,239,230,0.16), rgba(217,174,91,0.08) 42%, rgba(8,8,8,0.48));
  box-shadow: 0 10px 30px rgba(0,0,0,0.28), 0 0 28px rgba(217,174,91,0.14);
  animation: dragHintLead 2.8s linear infinite;
  z-index: 2;
}
@keyframes dragHintLead {
  0% { transform: translate3d(0, -50%, 0); opacity: 0; }
  10% { opacity: 1; }
  72% { transform: translate3d(calc(var(--drag-hint-dir, -1) * 130px), -50%, 0); opacity: 1; }
  86%, 100% { transform: translate3d(calc(var(--drag-hint-dir, -1) * 130px), -50%, 0); opacity: 0; }
}
@keyframes dragHintGhost {
  0% { transform: translate3d(0, -50%, 0) scale(0.98); opacity: 0; }
  12% { opacity: var(--ghost-opacity, 0.28); }
  72% { transform: translate3d(calc(var(--drag-hint-dir, -1) * 130px), -50%, 0) scale(0.98); opacity: var(--ghost-opacity, 0.28); }
  86%, 100% { transform: translate3d(calc(var(--drag-hint-dir, -1) * 130px), -50%, 0) scale(0.98); opacity: 0; }
}
body[data-lang="en"] .countdown-hint { --drag-hint-dir: 1; }
.countdown-hint span:first-child { --ghost-opacity: 0.34; }
.countdown-hint span:last-child { --ghost-opacity: 0.18; }
#phaseScene,
#countdownDetail:not(.slide-detail) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.countdown-label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 20px;
}

.phase-scene {
  grid-area: scene;
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 194px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}
.phase-scene.scene-in { opacity: 1; }
.phase-scene.scene-out { opacity: 0; }
.phase-scene svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  direction: ltr;
}
.phase-scene svg * { transform-box: fill-box; }
.phase-scene svg text { direction: ltr; unicode-bidi: isolate; }

/* ===== PHASE SCENE: FIT CHECK ===== */
.scene-fit * { transform-box: fill-box; }
.scene-fit .fit-halo { animation: halo-pulse 3.6s ease-in-out infinite; transform-origin: center; }
.scene-fit .fit-ring { transform-origin: center; transform-box: fill-box; }
.scene-fit .fit-ring-1 { animation: ring-in 0.7s ease-out both, spin-slow 40s linear infinite; }
.scene-fit .fit-ring-2 { animation: ring-in 0.7s 0.1s ease-out both, spin-slow 28s linear infinite reverse; }
.scene-fit .fit-ring-3 { animation: ring-in 0.7s 0.2s ease-out both, ring-breathe 2.8s ease-in-out infinite; }
.scene-fit .fit-crosshair { stroke-dasharray: 74; stroke-dashoffset: 74; animation: dash-in 0.6s 0.3s ease-out forwards; }
.scene-fit .fit-dot { animation: pop-in 0.4s 0.5s cubic-bezier(.6,-.3,.4,1.6) both, fit-dot-breathe 2s ease-in-out infinite 1s; transform-origin: center; }
.scene-fit .fit-pulse { animation: fit-pulse-r 2.4s 0.6s ease-out infinite; }
.scene-fit .scene-hud { opacity: 0; animation: fade-in 0.6s 0.6s forwards; }
@keyframes halo-pulse { 0%, 100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 0.9; transform: scale(1.05); } }
@keyframes ring-in { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes ring-breathe { 0%, 100% { stroke-width: 1; opacity: 1; } 50% { stroke-width: 2; opacity: 0.65; } }
@keyframes dash-in { to { stroke-dashoffset: 0; } }
@keyframes pop-in { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fit-dot-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); } }
@keyframes fit-pulse-r { 0% { r: 14; opacity: 0.9; } 100% { r: 60; opacity: 0; } }
@keyframes fade-in { to { opacity: 0.6; } }

/* ===== PHASE SCENE: KICKOFF (video call) ===== */
.scene-kickoff .vc-win { opacity: 0; animation: vc-fade-in 0.4s ease-out forwards; }
.scene-kickoff .vc-bar { opacity: 0; animation: vc-fade-in 0.4s 0.05s ease-out forwards; }
.scene-kickoff .vc-rec { opacity: 0; animation: vc-rec-blink 1.2s 0.6s ease-in-out infinite; }
.scene-kickoff .vc-tile { opacity: 0; transform: translateY(6px); animation: vc-tile-in 0.45s ease-out forwards; }
.scene-kickoff .vc-active { animation: vc-active-glow 2.2s ease-in-out infinite 0.8s; }
.scene-kickoff .vc-wave { transform-origin: center; animation: vc-wave-bounce 0.6s ease-in-out infinite; }
.scene-kickoff .vc-controls { opacity: 0; transform: translateY(10px); animation: vc-tile-in 0.45s 0.4s ease-out forwards; }
@keyframes vc-fade-in { to { opacity: 1; } }
@keyframes vc-tile-in { to { opacity: 1; transform: translateY(0); } }
@keyframes vc-active-glow { 0%, 100% { stroke-width: 2; filter: drop-shadow(0 0 0 rgba(241,199,115,0)); } 50% { stroke-width: 2.5; filter: drop-shadow(0 0 6px rgba(241,199,115,0.55)); } }
@keyframes vc-wave-bounce { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1.2); } }
@keyframes vc-rec-blink { 0%, 100% { opacity: 0.7; } 50% { opacity: 0.25; } }

/* ===== PHASE SCENE: RESEARCH / COPY ===== */
.scene-research .rc-line { transform-origin: left center; transform: scaleX(0); animation: typewriter 0.5s ease-out forwards; }
[dir="rtl"] .scene-research .rc-line { transform-origin: right center; }
.scene-research .rc-highlight { animation: highlight-sweep 0.6s ease-out forwards; }
.scene-research .rc-top { stroke-dasharray: 420; stroke-dashoffset: 420; animation: dash-in 0.6s ease-out forwards; }
.scene-research .scene-hud { opacity: 0; animation: fade-in 0.6s 0.4s forwards; }
@keyframes typewriter { to { transform: scaleX(1); } }
@keyframes highlight-sweep { 0% { transform: scaleX(0); opacity: 0; transform-origin: left center; } 100% { transform: scaleX(1); opacity: 1; transform-origin: left center; } }

/* ===== PHASE SCENE: DESIGN ===== */
.scene-design .wf-box { stroke-dasharray: 200%; stroke-dashoffset: 200%; animation: wf-draw 0.7s ease-out forwards; }
.scene-design .wf-fill { transform-origin: left center; transform: scaleX(0); animation: typewriter 0.5s ease-out forwards; }
[dir="rtl"] .scene-design .wf-fill { transform-origin: right center; }
.scene-design .wf-swatch { transform-origin: center; opacity: 0; animation: pop-in 0.4s cubic-bezier(.6,-.3,.4,1.6) forwards; }
@keyframes wf-draw { to { stroke-dashoffset: 0; } }

/* ===== PHASE SCENE: BUILD ===== */
.scene-build .bd-bar { transform-origin: left center; transform: scaleX(0); animation: typewriter 0.35s ease-out forwards; }
[dir="rtl"] .scene-build .bd-bar { transform-origin: right center; }

/* ===== PHASE SCENE: DELIVERY (handshake) ===== */
.scene-delivery .hs-anim {
  transform-origin: 300px 140px;
  transform-box: view-box;
  animation: hs-pop-in 0.7s cubic-bezier(.2,.8,.3,1.2) both, hs-shake 0.7s ease-in-out infinite 0.8s;
}
.scene-delivery .hs-halo {
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0;
  animation: hs-halo-in 0.7s 0.2s ease-out forwards, hs-halo-breathe 2.2s ease-in-out infinite 1s;
}
@keyframes hs-pop-in {
  0%   { opacity: 0; transform: scale(0.4) rotate(-8deg); }
  60%  { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes hs-shake {
  0%, 100% { transform: translateY(0)   rotate(-2.5deg); }
  50%      { transform: translateY(-5px) rotate(2.5deg); }
}
@keyframes hs-halo-in { to { opacity: 1; } }
@keyframes hs-halo-breathe {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50%      { opacity: 1;   transform: scale(1.12); }
}

/* ===== PHASE SCENE: LAUNCH (rocket horizontal) ===== */
.scene-launch .rk-anim {
  transform-origin: 300px 140px;
  transform-box: view-box;
  opacity: 0;
  animation: rk-fly-in 0.85s cubic-bezier(.18,.7,.3,1) forwards;
}
.scene-launch .rk-bob {
  transform-origin: 300px 140px;
  transform-box: view-box;
  animation: rk-bob 1.4s ease-in-out infinite 0.9s;
}
.scene-launch .rk-flame {
  transform-box: fill-box;
  transform-origin: right center;
  animation: rk-flame-flicker 0.14s ease-in-out infinite alternate;
}
.scene-launch .rk-flame-inner {
  transform-box: fill-box;
  transform-origin: right center;
  animation: rk-flame-flicker 0.1s ease-in-out infinite alternate-reverse;
}
.scene-launch .rk-halo {
  transform-box: fill-box;
  transform-origin: center;
  animation: rk-halo-pulse 1.4s ease-in-out infinite;
}
.scene-launch .rk-line { transform-origin: center; opacity: 0; animation: rk-whoosh 0.7s linear infinite 0.3s; }
.scene-launch .rk-spark { transform-origin: center; opacity: 0; animation: rk-spark-fly 1.2s linear infinite 0.5s; }
@keyframes rk-fly-in {
  0%   { opacity: 0; transform: translateX(-220px) scale(0.85); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes rk-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
@keyframes rk-flame-flicker {
  0%   { transform: scaleX(0.75) scaleY(1.05); opacity: 0.85; }
  100% { transform: scaleX(1.25) scaleY(0.85); opacity: 1; }
}
@keyframes rk-halo-pulse {
  0%, 100% { transform: scale(0.95); opacity: 0.7; }
  50%      { transform: scale(1.18); opacity: 1; }
}
@keyframes rk-whoosh {
  0%   { transform: translateX(160px) scaleX(0.4); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateX(-220px) scaleX(1.1); opacity: 0; }
}
@keyframes rk-spark-fly {
  0%   { transform: translateX(40px); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateX(-440px); opacity: 0; }
}

/* Responsive */
@media (max-width: 720px) {
  .countdown-block {
    padding: 76px 0 46px !important;
  }
  #countdown .section-head {
    padding-inline: 18px;
  }
  .countdown-section {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "rail"
      "hint";
    gap: 14px;
    width: 100%;
    max-width: none;
    margin-top: 28px;
    padding: 0;
    overflow: hidden;
  }
  .countdown-track {
    gap: 14px;
    scroll-padding-inline: 22px;
    padding: 4px 22px 30px;
    perspective: 900px;
  }
  .countdown-slide {
    flex-basis: min(86vw, 480px);
    min-height: 520px;
    padding: 0 10px 26px;
  }
  .slide-scene.phase-scene {
    width: min(92vw, 500px);
    height: 260px;
    max-width: none;
  }
  .slide-detail .countdown-detail-title {
    font-size: var(--fs-countdown-slide-title);
  }
  .slide-detail .countdown-detail-body {
    font-size: var(--fs-body);
    line-height: 1.58;
  }
  .countdown-rail::before,
  .countdown-rail::after { width: 32px; }
  .countdown-hint {
    width: 148px;
    height: 48px;
    font-size: var(--fs-label);
  }
  .countdown-hint span,
  .countdown-hint b {
    width: 40px;
    height: 40px;
  }
  @keyframes dragHintLead {
    0% { transform: translate3d(0, -50%, 0); opacity: 0; }
    10% { opacity: 1; }
    72% { transform: translate3d(calc(var(--drag-hint-dir, -1) * 108px), -50%, 0); opacity: 1; }
    86%, 100% { transform: translate3d(calc(var(--drag-hint-dir, -1) * 108px), -50%, 0); opacity: 0; }
  }
  @keyframes dragHintGhost {
    0% { transform: translate3d(0, -50%, 0) scale(0.98); opacity: 0; }
    12% { opacity: var(--ghost-opacity, 0.28); }
    72% { transform: translate3d(calc(var(--drag-hint-dir, -1) * 108px), -50%, 0) scale(0.98); opacity: var(--ghost-opacity, 0.28); }
    86%, 100% { transform: translate3d(calc(var(--drag-hint-dir, -1) * 108px), -50%, 0) scale(0.98); opacity: 0; }
  }

  .phase-scene {
    height: 172px;
    max-width: min(86vw, 430px);
  }
  .countdown-detail {
    max-width: min(88vw, 430px);
    min-height: 154px;
    padding: 0;
  }
}

/* ===== CTA FORM ===== */
.final-cta {
  padding: 140px 0 180px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--amber-glow) 0%, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}
.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.final-cta h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  line-height: 1;
}
.final-cta p {
  font-size: var(--fs-body);
  color: var(--ink-dim);
  margin-bottom: 48px;
}

.form-card {
  background: rgba(14,14,18,0.6);
  backdrop-filter: blur(30px);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 40px;
  text-align: start;
}
.form-row {
  position: relative;
  margin-bottom: 20px;
}
.form-row input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 20px 0 14px;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  outline: 0;
  cursor: none;
  transition: border-color 0.3s;
  text-align: start;
}
/* Phone field: LTR number glyphs but align to the page's start edge (right in RTL) */
.form-row input[type="tel"] {
  direction: ltr;
  text-align: end;
}
body[data-lang="en"] .form-row input[type="tel"] {
  text-align: start;
}
/* Kill browser autofill's yellow/white background + dark text */
.form-row input:-webkit-autofill,
.form-row input:-webkit-autofill:hover,
.form-row input:-webkit-autofill:focus,
.form-row input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  box-shadow: inset 0 0 0 1000px transparent;
  -webkit-box-shadow: inset 0 0 0 1000px transparent;
  transition: background-color 9999s ease-out, color 9999s ease-out;
}
.form-row input::placeholder { color: transparent; }
.form-row label {
  position: absolute;
  top: 22px;
  inset-inline-start: 0;
  color: var(--ink-muted);
  font-size: var(--fs-label);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  font-family: var(--font-head);
}
.form-row input:focus ~ label,
.form-row input:not(:placeholder-shown) ~ label {
  top: -4px;
  font-size: var(--fs-label);
  color: var(--gold);
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}
.form-row input:focus { border-color: var(--gold); }
.form-row .underline-pulse {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.form-row input:focus ~ .underline-pulse { transform: scaleX(1); }
.form-row.valid input { border-color: var(--ok); }
.form-row.invalid input { border-color: var(--danger); }
.form-status {
  position: absolute;
  inset-inline-end: 4px;
  top: 22px;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.3s;
}
.form-row.valid .form-status { opacity: 1; color: var(--ok); }
.form-row.invalid .form-status { opacity: 1; color: var(--danger); }

.form-submit-wrap {
  display: flex;
  width: min(100%, 386px);
  justify-content: center;
  margin: 12px auto 0;
  margin-inline: auto;
  color: #0a0a0a;
  isolation: isolate;
}
.form-submit-wrap .wpcf7-submit,
.form-submit-wrap .form-submit {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: transparent;
  cursor: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-submit-wrap .wpcf7-submit:focus,
.form-submit-wrap .form-submit:focus {
  outline: none;
}
.form-submit-wrap .form-submit-label {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.form-submit-wrap .arrow {
  pointer-events: none;
}
.form-submit-wrap:has(.wpcf7-submit[disabled]) {
  opacity: 0.5;
  pointer-events: none;
}
.form-card .wpcf7,
.form-card .wpcf7-form { margin: 0; direction: rtl; }
.form-card .wpcf7-form-control-wrap { display: block; }
.form-card .wpcf7-form .form-row label {
  top: -4px;
  font-size: var(--fs-label);
  color: var(--gold);
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}
.form-card .wpcf7-form .form-row:focus-within input { border-color: var(--gold); }
.form-card .wpcf7-form .form-row:has(.wpcf7-not-valid-tip) input { border-color: var(--danger); }
.form-card .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  color: var(--danger);
  font-family: var(--font-body);
  font-size: var(--fs-label);
  line-height: 1.5;
  text-align: start;
}
.form-card .wpcf7 form .wpcf7-response-output,
.form-card .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  text-align: center;
}
.form-card .wpcf7 form.invalid .wpcf7-response-output,
.form-card .wpcf7 form.unaccepted .wpcf7-response-output,
.form-card .wpcf7 form.spam .wpcf7-response-output,
.form-card .wpcf7 form.failed .wpcf7-response-output {
  border-color: rgba(255, 100, 100, 0.55);
  background: rgba(255, 64, 64, 0.08);
  color: #ffd6d6;
}
.form-card .wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(60, 220, 150, 0.55);
  background: rgba(60, 220, 150, 0.08);
  color: #d8ffeb;
}
.form-card .wpcf7-spinner { display: none !important; }
.wpcf7-missing {
  color: var(--ink);
  text-align: center;
  font-family: var(--font-body);
  line-height: 1.7;
}
.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success .check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 24px;
  position: relative;
  animation: checkpop 0.6s cubic-bezier(.2,2,.4,1) both;
}
.form-success .check::after {
  content: '';
  position: absolute;
  left: 22px; top: 40px;
  width: 14px; height: 24px;
  border: solid #0a0a0a;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  animation: checkdraw 0.4s 0.3s both;
}
@keyframes checkpop {
  0% { transform: scale(0) rotate(-180deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes checkdraw {
  0% { width: 0; height: 0; opacity: 0; }
  100% { width: 14px; height: 24px; opacity: 1; }
}
.form-success h3 { font-size: var(--fs-h3); margin-bottom: 12px; }
.form-success p { color: var(--ink-dim); }

/* ===== FOOTER ===== */
footer {
  padding: 40px 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--fs-footer);
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  display: block;
  width: 118px;
  height: auto;
}

@media (max-width: 640px) {
  .final-cta {
    padding: 82px 0 72px;
  }
  .final-cta-inner {
    padding: 0 22px;
  }
  .final-cta p {
    margin-bottom: 30px;
    font-size: var(--fs-body-sm);
  }
  .form-card {
    padding: 28px 26px;
    border-radius: 24px;
  }
  footer {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }
  .footer-brand {
    flex-direction: column;
    gap: 8px;
  }
  .footer-brand img {
    width: 110px;
  }
}

/* ===== TWEAKS PANEL ===== */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  background: rgba(14,14,18,0.9);
  backdrop-filter: blur(30px);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 20px;
  z-index: 500;
  min-width: 240px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8);
  display: none;
}
.tweaks-panel.on { display: block; animation: tweakIn 0.4s cubic-bezier(.2,.8,.2,1); }
@keyframes tweakIn { from { opacity: 0; transform: translateY(20px); } }
.tweaks-title {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 14px;
}
.tweak-row { margin-bottom: 14px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-label {
  font-size: var(--fs-label);
  color: var(--ink-dim);
  margin-bottom: 8px;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}
.tweak-options { display: flex; gap: 6px; }
.tweak-btn {
  flex: 1;
  padding: 10px;
  background: var(--line);
  border: 1px solid transparent;
  color: var(--ink-dim);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  cursor: none;
  transition: all 0.2s;
}
.tweak-btn.active { background: var(--gold); color: #0a0a0a; font-weight: 600; }

/* section headers */
.section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 0 32px;
}
.section-head h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-top: 18px;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  z-index: 101;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s;
}
body[data-lang="he"] .scroll-progress { transform-origin: right; }

/* ===== PRIVACY POLICY ===== */
.privacy-page {
  background: var(--bg);
}
.privacy-page .nav {
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.privacy-hero {
  min-height: auto;
  padding: 170px 0 72px;
  overflow: hidden;
  text-align: center;
}
.privacy-wrap {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}
.privacy-wrap .eyebrow {
  justify-content: center;
}
.privacy-wrap h1 {
  margin-top: 22px;
  font-size: var(--fs-h1);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.privacy-updated,
.privacy-intro {
  color: var(--ink-dim);
  font-size: var(--fs-body-sm);
  line-height: 1.85;
}
.privacy-updated {
  margin-top: 26px;
}
.privacy-intro {
  max-width: 760px;
  margin: 14px auto 0;
}
.privacy-card {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(244,239,230,0.035), rgba(244,239,230,0.012)),
    rgba(14,14,18,0.72);
  box-shadow: 0 36px 110px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.045);
}
.privacy-card section {
  padding: 0;
}
.privacy-card section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.privacy-card h2 {
  margin-bottom: 14px;
  color: var(--gold-bright);
  font-size: var(--fs-h3);
  line-height: 1.16;
}
.privacy-card p {
  color: var(--ink-dim);
  font-size: var(--fs-body-sm);
  line-height: 1.85;
}
.privacy-card p + p {
  margin-top: 8px;
}
.privacy-card a,
.footer-links a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(241,199,115,0.38);
  cursor: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.privacy-card a:hover,
.footer-links a:hover {
  color: var(--ink);
  border-color: rgba(244,239,230,0.72);
}
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--ink-muted);
}
.footer-links a {
  color: inherit;
  border-bottom: 0;
}
.footer-links a:visited {
  color: inherit;
}
.footer-links .footer-dot {
  color: var(--ink-muted);
  opacity: 0.72;
}
@media (max-width: 640px) {
  .privacy-hero {
    padding: 132px 0 54px;
  }
  .privacy-wrap h1 {
    font-size: clamp(48px, 14vw, 68px);
  }
  .privacy-card {
    width: min(100% - 28px, 920px);
    padding: 26px 22px;
    border-radius: 22px;
    margin-bottom: 54px;
  }
  .footer-links {
    justify-content: center;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: min(620px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 22px 22px 24px;
  border: 1px solid rgba(241,199,115,0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(244,239,230,0.06), rgba(244,239,230,0.018)),
    rgba(10,10,12,0.92);
  box-shadow: 0 26px 70px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.42s cubic-bezier(.16,1,.24,1);
}
body[data-lang="en"] .cookie-banner {
  right: auto;
  left: 24px;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.cookie-copy {
  display: grid;
  gap: 5px;
  text-align: start;
}
.cookie-copy strong {
  font-family: var(--font-head);
  font-size: clamp(18px, 1.18vw, 20px);
  color: var(--ink);
  line-height: 1.2;
}
.cookie-copy span {
  color: var(--ink-dim);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.6;
}
.cookie-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--font-head);
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 700;
  white-space: nowrap;
  cursor: none;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.cookie-btn:hover {
  transform: translateY(-1px);
}
.cookie-btn-primary {
  color: #09090a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 62%, var(--gold-deep));
}
.cookie-btn-ghost {
  color: var(--ink-dim);
  background: transparent;
  border: 1px solid var(--line-strong);
}
.cookie-btn-ghost:hover {
  color: var(--ink);
  border-color: rgba(244,239,230,0.32);
}
@media (max-width: 640px) {
  .cookie-banner,
  body[data-lang="en"] .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 17px;
    border-radius: 20px;
  }
  .cookie-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cookie-btn {
    width: 100%;
    padding: 12px 10px;
  }
}

/* Countdown illustrations animate when their own slide starts entering the viewport. */
.countdown-slide:not(.scene-entered) .scene * {
  animation-play-state: paused !important;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-page {
  background: var(--bg);
}
.thank-you-main {
  min-height: 100vh;
  overflow: hidden;
}
.thank-you-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  padding: 170px 20px 90px;
  text-align: center;
  overflow: hidden;
}
.thank-you-wrap {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  margin: 0 auto;
}
.thank-you-wrap .eyebrow {
  justify-content: center;
}
.thank-you-wrap h1 {
  margin-top: 22px;
  display: grid;
  gap: 8px;
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.06em;
}
.thank-you-wrap p {
  width: min(720px, 100%);
  margin: 28px auto 0;
  color: var(--ink-dim);
  font-size: var(--fs-body);
  line-height: 1.8;
}
.thank-you-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.thank-you-hero::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 50% 42%, rgba(241,199,115,0.13), transparent 18%),
    radial-gradient(circle at 30% 36%, rgba(217,174,91,0.12), transparent 22%),
    radial-gradient(circle at 74% 62%, rgba(241,199,115,0.10), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 42%, rgba(217,174,91,0.035));
  filter: blur(2px);
  opacity: 0.95;
  pointer-events: none;
}
.thank-you-space {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.thank-you-space .star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 18px rgba(241,199,115,0.72), 0 0 44px rgba(217,174,91,0.22);
  opacity: 0.78;
  animation: starTwinkle 3.8s ease-in-out infinite;
}
.thank-you-space .star-1 { top: 24%; right: 18%; animation-delay: -0.7s; }
.thank-you-space .star-2 { top: 35%; left: 23%; width: 3px; height: 3px; animation-delay: -1.8s; }
.thank-you-space .star-3 { bottom: 24%; right: 31%; width: 5px; height: 5px; animation-delay: -2.6s; }
.thank-you-space .star-4 { bottom: 31%; left: 18%; width: 2px; height: 2px; animation-delay: -1.1s; }
.thank-you-space .star-5 { top: 18%; left: 42%; width: 2px; height: 2px; animation-delay: -3.1s; }
.thank-you-space .constellation {
  position: absolute;
  width: 280px;
  height: 220px;
  opacity: 0.42;
  background: url("data:image/svg+xml,%3Csvg width='280' height='220' viewBox='0 0 280 220' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23F1C773' stroke-opacity='.38' stroke-width='1'%3E%3Cpath d='M32 140 74 96 122 112 164 54 222 74 246 34'/%3E%3Cpath d='M74 96 88 170 164 54'/%3E%3Cpath d='M122 112 206 176 222 74'/%3E%3C/g%3E%3Cg fill='%23F1C773' fill-opacity='.72'%3E%3Ccircle cx='32' cy='140' r='2.5'/%3E%3Ccircle cx='74' cy='96' r='2.5'/%3E%3Ccircle cx='122' cy='112' r='2.5'/%3E%3Ccircle cx='164' cy='54' r='2.5'/%3E%3Ccircle cx='222' cy='74' r='2.5'/%3E%3Ccircle cx='246' cy='34' r='2.5'/%3E%3Ccircle cx='88' cy='170' r='2'/%3E%3Ccircle cx='206' cy='176' r='2'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
  animation: constellationDrift 12s ease-in-out infinite;
}
.thank-you-space .constellation-a { top: 18%; right: 8%; }
.thank-you-space .constellation-b { bottom: 16%; left: 6%; transform: scale(.82) rotate(18deg); animation-delay: -4s; }
.thank-you-space .nebula {
  position: absolute;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.34;
  filter: blur(34px);
  background: radial-gradient(circle, rgba(217,174,91,0.22), rgba(217,174,91,0.08) 34%, transparent 66%);
}
.thank-you-space .nebula-a { top: 10%; left: -8%; }
.thank-you-space .nebula-b { right: -10%; bottom: -18%; }
@keyframes starTwinkle {
  0%, 100% { transform: scale(0.72); opacity: 0.34; }
  50% { transform: scale(1.22); opacity: 0.95; }
}
@keyframes constellationDrift {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(10px,-12px,0) rotate(2deg); }
}
@media (max-width: 820px) {
  .thank-you-hero {
    min-height: 76vh;
    padding: 135px 18px 70px;
  }
  .thank-you-wrap h1 {
    font-size: clamp(48px, 14vw, 76px);
  }
}
