:root {
  --bg: #100817;
  --bg-2: #1a1025;
  --bg-3: #251437;
  --panel: rgba(26, 16, 37, 0.72);
  --ink: #f7f3ff;
  --mute: #c4b8d6;
  --soft: #e8ddf6;
  --line: rgba(255, 255, 255, 0.1);
  --pink: #ff2d95;
  --magenta: #e11d8a;
  --purple: #8b3dff;
  --lav: #d8c6ff;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  --glow: 0 0 28px rgba(255, 45, 149, 0.35);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 80% -10%, rgba(139, 61, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(255, 45, 149, 0.16), transparent 50%),
    linear-gradient(180deg, #251437 0%, #100817 42%, #07040c 100%);
  animation: bgShift 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  z-index: 100;
  background: #fff;
  color: #100817;
  padding: 8px 12px;
  border-radius: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(16, 8, 23, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(16, 8, 23, 0.82);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(255, 45, 149, 0.4);
}
.brand span {
  font-size: 15px;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 26px;
}
.nav-desktop a {
  color: var(--soft);
  font-size: 14px;
  font-weight: 500;
}
.nav-desktop a:hover {
  color: #fff;
}
.header-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 0 16px;
  font-size: 12px;
  flex: none;
}
.nav-toggle,
.nav-overlay,
.nav-drawer {
  display: none !important;
}
.nav-toggle i {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s var(--ease);
}
.nav-open .nav-toggle i:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-open .nav-toggle i:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-toggle i:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 70;
  transition: opacity 0.3s;
}
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100dvh;
  background: #1a1025;
  border-left: 1px solid var(--line);
  z-index: 75;
  padding: 88px 24px 32px;
  transform: translateX(110%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}
.nav-open .nav-drawer {
  transform: none;
}
.nav-drawer a {
  font-size: 18px;
  font-weight: 600;
}

.offer-bar {
  position: sticky;
  top: 68px;
  z-index: 70;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  padding: 10px 16px;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #ff2d95 0%, #c2187a 45%, #8b3dff 100%);
  box-shadow: 0 8px 28px rgba(255, 45, 149, 0.35);
  animation: offerPulse 2.4s ease-in-out infinite;
}
.offer-bar strong {
  font-size: 14px;
  letter-spacing: 0.02em;
}
.offer-bar em {
  font-style: normal;
  font-size: 12px;
  opacity: 0.92;
}
.offer-bar-tag {
  background: #fff;
  color: #c2187a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
}
@keyframes offerPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(255, 45, 149, 0.35); }
  50% { box-shadow: 0 8px 36px rgba(255, 45, 149, 0.6), 0 0 0 4px rgba(255, 45, 149, 0.18); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff2d95 0%, #c2187a 45%, #8b3dff 100%);
  box-shadow: var(--glow), 0 10px 24px rgba(139, 61, 255, 0.28);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 34px rgba(255, 45, 149, 0.5), 0 12px 28px rgba(139, 61, 255, 0.35);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.btn-ghost:hover {
  border-color: rgba(255, 45, 149, 0.5);
}
.btn-full {
  width: 100%;
}
.btn-sm {
  min-height: 42px;
  padding: 0 14px;
  font-size: 11px;
}
body.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  padding: 20px 0 28px;
}
.hero-gift {
  text-align: center;
  margin-bottom: 36px;
}
.hero-gift-copy {
  max-width: 420px;
  margin: 0 auto 8px;
}
.hero-gift h1 {
  font-family: var(--display);
  font-size: clamp(40px, 11vw, 64px);
  line-height: 0.92;
  margin: 12px 0 8px;
}
.hero-gift-sub {
  color: var(--lav);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-gift .ar-line {
  margin-bottom: 16px;
}
.hero-gift-art {
  margin: 8px auto 18px;
  width: min(280px, 70vw);
  padding: 12px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 60%, rgba(255, 45, 149, 0.28), transparent 62%),
    #0c0712;
}
.hero-gift-art img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(255, 45, 149, 0.3));
}
.hero-gift .btn {
  max-width: 420px;
}
.hero-grid {
  display: grid;
  gap: 32px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lav);
  border: 1px solid rgba(216, 198, 255, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 11vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, #ff8ac8, #d8c6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  color: var(--mute);
  font-size: 16px;
  max-width: 42ch;
  margin-bottom: 20px;
}
.checks {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}
.checks li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--soft);
}
.checks svg {
  flex: none;
}
.hero-actions {
  display: grid;
  gap: 10px;
}
.jo-note {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lav);
}

.stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.phone {
  width: 230px;
  height: 470px;
  border-radius: 36px;
  background: #0b0612;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(139, 61, 255, 0.25);
  padding: 10px;
  position: relative;
  z-index: 2;
  animation: floatY 5.5s ease-in-out infinite;
}
.phone-screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #1d1230, #100817);
  display: flex;
  flex-direction: column;
}
.phone-bar {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  padding: 10px 14px 6px;
  color: var(--lav);
}
.phone-app {
  padding: 4px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.phone-app h3 {
  font-size: 13px;
  letter-spacing: 0.12em;
}
.phone-shot {
  height: 168px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-shot--product {
  background: #0c0712;
}
.phone-shot--product img {
  object-fit: contain;
}
.phone-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.phone-meta b {
  font-size: 13px;
}
.phone-meta span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
}
.phone-desc {
  font-size: 11px;
  color: var(--mute);
}
.phone-cta {
  margin-top: auto;
  display: grid;
  gap: 6px;
}
.phone-cta span {
  display: block;
  text-align: center;
  border-radius: 999px;
  padding: 9px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.phone-cta .add {
  background: linear-gradient(135deg, #ff2d95, #8b3dff);
}
.phone-cta .check {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.float-card {
  position: absolute;
  width: 128px;
  background: rgba(26, 16, 37, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 8px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  z-index: 3;
  animation: floatY 6s ease-in-out infinite;
}
.float-card img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  border-radius: 10px;
}
.float-card--product img {
  object-fit: contain;
  background: #0c0712;
}
.float-card p {
  font-size: 11px;
  margin-top: 6px;
  font-weight: 600;
}
.float-card small {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
}
.float-a {
  top: 18px;
  left: 0;
  animation-delay: -1s;
}
.float-b {
  right: 0;
  bottom: 70px;
  animation-delay: -2.2s;
}
.float-c {
  left: 8px;
  bottom: 18px;
  width: 112px;
  animation-delay: -3.4s;
}

/* Promo */
.promo {
  padding: 8px 0 40px;
}
.promo-card--hero {
  margin-bottom: 28px;
  border-width: 2px;
  box-shadow: 0 0 48px rgba(255, 45, 149, 0.28), 0 16px 40px rgba(0, 0, 0, 0.28);
}
.promo-card--hero .gift-visual {
  min-height: 220px;
}
.promo-card--hero .gift-visual img {
  max-height: 220px;
}
.promo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}
.ar-line {
  font-family: "Cairo", "Segoe UI", sans-serif;
  direction: rtl;
  font-size: 16px;
  font-weight: 700;
  color: var(--lav);
  margin: 4px 0 10px;
}
.gift-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.gift-specs span {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 149, 0.35);
  color: var(--soft);
  background: rgba(255, 45, 149, 0.08);
}
.gift-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 16px 16px 12px;
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 45, 149, 0.28), transparent 58%),
    radial-gradient(circle at 80% 10%, rgba(139, 61, 255, 0.22), transparent 45%),
    #0c0712;
}
.gift-visual img {
  width: min(78%, 280px);
  height: auto;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(255, 45, 149, 0.28));
}
.gift-visual-cap {
  margin-top: 8px;
  font-size: 12px;
  color: var(--mute);
  text-align: center;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
}
.promo-card h2 {
  font-family: var(--display);
  font-size: clamp(32px, 8vw, 52px);
  line-height: 0.95;
  margin: 8px 0 10px;
}
.gift-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 45, 149, 0.15);
  border: 1px solid rgba(255, 45, 149, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* How it works */
.section {
  padding: 28px 0 48px;
}
.section-head {
  text-align: center;
  margin-bottom: 28px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(30px, 7vw, 48px);
  line-height: 1;
  margin: 8px 0 10px;
}
.section-head p {
  color: var(--mute);
  max-width: 46ch;
  margin: 0 auto;
}
.app-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff2d95, #8b3dff);
  box-shadow: var(--glow);
}
.steps {
  display: grid;
  gap: 14px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.step .num {
  font-family: var(--display);
  font-size: 34px;
  color: var(--pink);
  line-height: 1;
}
.step h3 {
  margin: 8px 0 6px;
  letter-spacing: 0.08em;
  font-size: 14px;
}

/* Products */
.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 18px;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar {
  display: none;
}
.chip {
  flex: none;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
  font-weight: 600;
}
.chip.is-active {
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.2), rgba(139, 61, 255, 0.25));
  border-color: rgba(255, 45, 149, 0.5);
  color: #fff;
}
.product-viewport {
  overflow: hidden;
  margin: 0 -4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
}
.product-rail {
  display: flex;
  width: max-content;
  gap: 14px;
  will-change: transform;
  animation: productMarquee 48s linear infinite;
}
.product-viewport:hover .product-rail,
.product-viewport:focus-within .product-rail {
  animation-play-state: paused;
}
@keyframes productMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.product-card {
  flex: 0 0 250px;
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  background: #17101f;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(139, 61, 255, 0.05);
}
.product-card.is-hidden {
  display: none;
}
.product-card:hover {
  box-shadow: 0 16px 40px rgba(139, 61, 255, 0.22);
}
.product-card .thumb {
  height: 210px;
  position: relative;
  overflow: hidden;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb--product {
  background: #0c0712;
}
.thumb--product img {
  object-fit: contain;
  padding: 8px;
}
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(16, 8, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 8px;
  border-radius: 999px;
}
.product-card .body {
  padding: 14px 14px 16px;
}
.product-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}
.product-card p {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 12px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.price {
  font-weight: 700;
  color: var(--lav);
}

/* Features */
.features {
  display: grid;
  gap: 12px;
}
.feature {
  background: rgba(26, 16, 37, 0.7);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}
.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.18), rgba(139, 61, 255, 0.18));
  margin-bottom: 12px;
}
.feature h3 {
  letter-spacing: 0.12em;
  font-size: 14px;
  margin-bottom: 6px;
}
.feature p {
  color: var(--mute);
  font-size: 14px;
}

/* Mid CTA */
.cta-band {
  margin: 10px 0 40px;
  text-align: center;
  padding: 36px 20px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 45, 149, 0.22), transparent 60%),
    #1a1025;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(32px, 8vw, 50px);
  line-height: 1;
  margin-bottom: 10px;
}
.cta-band p {
  color: var(--mute);
  margin-bottom: 20px;
}
.dots {
  margin-top: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--lav);
}

/* Gift again */
.gift-final {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(160deg, #2a1544, #140b1d);
  border: 1px solid rgba(255, 45, 149, 0.25);
}
.gift-final h2 {
  font-family: var(--display);
  font-size: clamp(30px, 7vw, 46px);
  line-height: 0.98;
}
.fine {
  font-size: 12px;
  color: var(--mute);
  margin-top: 10px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}
.faq-item .plus {
  color: var(--pink);
  font-size: 22px;
  line-height: 1;
}
.faq-item .answer {
  display: none;
  color: var(--mute);
  padding: 0 0 16px;
  font-size: 14px;
}
.faq-item.is-open .answer {
  display: block;
}
.faq-item.is-open .plus {
  transform: rotate(45deg);
}

/* Footer */
.site-footer {
  padding: 36px 0 24px;
  border-top: 1px solid var(--line);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.site-footer p {
  color: var(--mute);
  font-size: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 18px 0;
  font-size: 13px;
}
.legal {
  font-size: 12px;
  color: var(--mute);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.age {
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(16, 8, 23, 0.92) 30%);
}
.sticky-cta .btn {
  width: 100%;
}

.legal-page {
  padding: 40px 0 80px;
}
.legal-page h1 {
  font-family: var(--display);
  font-size: 40px;
  margin-bottom: 12px;
}
.legal-page p,
.legal-page li {
  color: var(--mute);
  margin-bottom: 12px;
}
.legal-page ul {
  padding-left: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes bgShift {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(12deg);
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }
  .nav-desktop {
    display: flex;
  }
  .header-cta {
    min-height: 52px;
    padding: 0 22px;
    font-size: 13px;
  }
  .hero-gift {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    text-align: left;
    gap: 24px;
    margin-bottom: 48px;
  }
  .hero-gift-copy {
    margin: 0;
    max-width: none;
  }
  .hero-gift-art {
    width: 100%;
    max-width: 360px;
    margin: 0;
  }
  .hero-gift .btn {
    width: auto;
    max-width: none;
  }
  .hero {
    padding: 24px 0 36px;
  }
  .sticky-cta {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
  .hero-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }
  .btn-full-desktop {
    width: auto;
  }
  .promo-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 28px;
  }
  .gift-visual {
    min-height: 340px;
  }
  .gift-visual img {
    max-height: 360px;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-card {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
  }
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
  .gift-final {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .product-card {
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
  }
  .stage {
    min-height: 540px;
  }
  .phone {
    width: 250px;
    height: 510px;
  }
}

@media (max-width: 430px) {
  .float-a,
  .float-c {
    left: 4px;
    width: 104px;
  }
  .float-b {
    right: 4px;
    width: 104px;
  }
  .float-card img {
    height: 62px;
  }
  .phone {
    width: 210px;
    height: 430px;
  }
  .stage {
    min-height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .product-rail {
    animation: productMarquee 48s linear infinite !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

