/* ═══════════════════════════════════════════════════════════
   YUMEDOL — MAIN STYLESHEET
   Color system:
     --yd-deep:    #0a0118   (deepest background)
     --yd-dark:    #150328   (dark purple)
     --yd-mid:     #2a0f52   (mid purple)
     --yd-bright:  #6b21c8   (bright purple)
     --yd-lavender:#c4a8f0   (lavender accent)
     --yd-pink:    #e879b5   (pink accent)
     --yd-glow:    #d4a8ff   (glow color)
     --yd-white:   #f5eeff   (off-white)
═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yd-deep:    #0a0118;
  --yd-dark:    #150328;
  --yd-mid:     #2a0f52;
  --yd-bright:  #6b21c8;
  --yd-lavender:#c4a8f0;
  --yd-pink:    #e879b5;
  --yd-glow:    #d4a8ff;
  --yd-white:   #f5eeff;
  --yd-glass:   rgba(180, 140, 255, 0.08);
  --yd-glass-border: rgba(200, 160, 255, 0.25);
  --yd-shadow:  0 8px 40px rgba(107, 33, 200, 0.35);

  --font-display: 'Cinzel Decorative', serif;
  --font-body:    'Nunito', sans-serif;

  --nav-h: 72px;
  --radius: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; font-size: 16px; }

/* ── Desktop scale-up (150%) ── */
@media (min-width: 1025px) {
  html { zoom: 1.5; }
}

/* ── Desktop scale-up (150%) ── */
@media (min-width: 1025px) {
  html { zoom: 1.5; }
}

body {
  font-family: var(--font-body);
  background: var(--yd-deep);
  color: var(--yd-white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Glass morphism utility ── */
.glass {
  background: var(--yd-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--yd-glass-border);
  border-radius: var(--radius);
}

/* ── Section common ── */
.section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 1, 24, 0.45);
  pointer-events: none;
}
.section-overlay-dark {
  background: rgba(5, 0, 15, 0.70);
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yd-glow);
  margin-bottom: 12px;
  padding: 4px 16px;
  border: 1px solid rgba(212,168,255,.3);
  border-radius: 99px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  background: linear-gradient(135deg, #fff 0%, var(--yd-lavender) 60%, var(--yd-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.section-sub {
  color: rgba(196,168,240,.75);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}


/* ══════════════════════════════════════════
   AGE GATE
══════════════════════════════════════════ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.age-gate-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.age-gate-card {
  position: relative;
  z-index: 2;
  background: rgba(21, 3, 40, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(200, 150, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 48px 36px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow:
    0 0 60px rgba(140, 60, 255, 0.3),
    inset 0 1px 0 rgba(255,255,255,.08);
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.age-gate-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg,
    rgba(180,100,255,.15) 0%,
    rgba(230,120,180,.1) 50%,
    rgba(100,60,255,.15) 100%);
  filter: blur(8px);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% { opacity: .6; }
  50%      { opacity: 1; }
}

.age-gate-logo {
  width: 160px;
  margin: 0 auto 8px;
  filter: drop-shadow(0 0 20px rgba(200,150,255,.6));
}

.age-gate-moon {
  font-size: 1.4rem;
  color: var(--yd-glow);
  margin-bottom: 12px;
  animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.age-gate-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, var(--yd-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-gate-subtitle {
  color: rgba(200,170,255,.75);
  font-size: .875rem;
  margin-bottom: 20px;
}

.age-gate-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,150,255,.4), transparent);
  margin: 0 0 20px;
}

.age-gate-notice {
  color: rgba(230,210,255,.9);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.age-gate-buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

.btn-age-enter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #8b3cf7, #c054e8, #9b3cf7);
  background-size: 200% 200%;
  box-shadow:
    0 0 20px rgba(160,80,255,.5),
    0 4px 20px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.15);
  transition: all .3s ease;
  animation: btnGradient 4s ease infinite;
}

@keyframes btnGradient {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.btn-age-enter:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 40px rgba(160,80,255,.8),
    0 0 80px rgba(160,80,255,.3),
    0 8px 30px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.25);
}

.btn-age-enter:active { transform: translateY(-1px) scale(1.01); }

.btn-sparkle {
  font-size: .8rem;
  color: #ffd4f8;
  animation: sparkle 1.5s ease-in-out infinite;
}
@keyframes sparkle {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}

.btn-age-leave {
  padding: 11px 28px;
  border-radius: 12px;
  font-size: .875rem;
  color: rgba(200,170,255,.65);
  border: 1px solid rgba(200,150,255,.2);
  background: transparent;
  transition: all .25s ease;
}
.btn-age-leave:hover {
  color: rgba(200,170,255,.9);
  border-color: rgba(200,150,255,.4);
  background: rgba(200,150,255,.06);
}

.age-gate-legal {
  font-size: .73rem;
  color: rgba(200,170,255,.4);
  line-height: 1.5;
}

.age-gate-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }


/* ══════════════════════════════════════════
   SITE WRAPPER (initially hidden)
══════════════════════════════════════════ */
.site-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease .2s, visibility .8s ease .2s;
}
.site-wrapper.visible {
  opacity: 1;
  visibility: visible;
}


/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
}

.navbar.scrolled {
  background: rgba(10, 1, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(100,40,200,.25);
  border-bottom: 1px solid rgba(200,150,255,.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}

.navbar-logo img {
  height: 52px;
  filter: drop-shadow(0 0 12px rgba(200,150,255,.5));
  transition: filter .3s ease;
}
.navbar-logo:hover img { filter: drop-shadow(0 0 20px rgba(220,170,255,.8)); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.navbar-links a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(220,200,255,.8);
  padding: 6px 12px;
  border-radius: 8px;
  position: relative;
  transition: color .25s ease, background .25s ease;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--yd-pink), var(--yd-lavender));
  border-radius: 2px;
  transition: width .3s ease;
}

.navbar-links a:hover {
  color: #fff;
  background: rgba(200,150,255,.08);
}
.navbar-links a:hover::after { width: 60%; }

/* Language switcher */
.navbar-actions { display: flex; align-items: center; }

.lang-switcher { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(220,200,255,.8);
  background: rgba(200,150,255,.08);
  border: 1px solid rgba(200,150,255,.2);
  transition: all .25s ease;
}
.lang-btn:hover {
  background: rgba(200,150,255,.16);
  color: #fff;
  border-color: rgba(200,150,255,.4);
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: rgba(15, 3, 32, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200,150,255,.25);
  border-radius: 12px;
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: all .25s ease;
  z-index: 100;
}
.lang-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  font-size: .85rem;
  color: rgba(220,200,255,.8);
  transition: background .2s ease, color .2s ease;
}
.lang-option:hover {
  background: rgba(200,150,255,.12);
  color: #fff;
}

/* Mobile nav toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--yd-lavender);
  border-radius: 2px;
  transition: all .3s ease;
}


/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: background-position 0.08s linear;
  will-change: background-position;
}



/* Dark gradient overlay on left so text is readable */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10,1,24,.75) 0%,
      rgba(10,1,24,.5) 45%,
      rgba(10,1,24,.1) 70%,
      transparent 100%),
    linear-gradient(0deg,
      rgba(10,1,24,.5) 0%,
      transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.meteor-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--nav-h) 24px 60px;
  gap: 40px;
}

/* ── Hero Left ── */
.hero-left { max-width: 560px; }

.hero-badge {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yd-glow);
  border: 1px solid rgba(212,168,255,.35);
  border-radius: 99px;
  padding: 5px 18px;
  margin-bottom: 20px;
  background: rgba(180,140,255,.08);
  backdrop-filter: blur(8px);
  animation: fadeSlideUp .8s ease .1s both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 18px;
  animation: fadeSlideUp .8s ease .2s both;
}

.hero-title-line1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: rgba(240,220,255,.9);
}
.hero-title-line2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  background: linear-gradient(135deg, #ffffff 0%, var(--yd-lavender) 50%, var(--yd-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(200,150,255,.5));
}
.hero-title-line3 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: rgba(240,220,255,.9);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 16px;
  animation: fadeSlideUp .8s ease .3s both;
}
.hero-features li {
  font-size: .82rem;
  color: var(--yd-glow);
  font-weight: 600;
  letter-spacing: .04em;
}

.hero-desc {
  color: rgba(210,190,255,.75);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
  animation: fadeSlideUp .8s ease .4s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp .8s ease .5s both;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #7b2cf7 0%, #c054e0 50%, #8b3cf7 100%);
  background-size: 200% 200%;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow:
    0 0 24px rgba(160,80,255,.5),
    0 4px 20px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.15);
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.8,.3,1);
  position: relative;
  overflow: hidden;
  animation: btnGradient 5s ease infinite;
  text-decoration: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.1) 60%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 40px rgba(160,80,255,.8),
    0 0 80px rgba(160,80,255,.3),
    0 8px 30px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover::before { transform: translateX(200%); }
.btn-primary:active { transform: translateY(-1px) scale(1.01); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--yd-lavender);
  background: rgba(140,80,255,.1);
  border: 1px solid rgba(200,150,255,.35);
  backdrop-filter: blur(8px);
  transition: all .3s cubic-bezier(.2,.8,.3,1);
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(140,80,255,.2);
  border-color: rgba(200,150,255,.6);
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 30px rgba(160,80,255,.3), 0 4px 20px rgba(0,0,0,.3);
}
.btn-secondary:active { transform: translateY(-1px); }

.btn-arrow {
  transition: transform .3s ease;
}
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform: translateX(4px); }

/* ── Hero Right (status panel) ── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
  animation: fadeSlideUp .8s ease .6s both;
}

.hero-status-panel {
  background: rgba(20, 5, 45, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200,150,255,.25);
  border-radius: var(--radius);
  padding: 20px 20px 16px;
  box-shadow: 0 8px 40px rgba(80,20,180,.3), inset 0 1px 0 rgba(255,255,255,.06);
  min-width: 220px;
}

.status-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yd-glow);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,150,255,.15);
}

.status-panel-icon { font-size: 1rem; }

.status-steps { display: flex; flex-direction: column; gap: 12px; }

.status-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-indicator {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  border: 1.5px solid rgba(200,150,255,.3);
  color: rgba(200,150,255,.4);
  background: rgba(200,150,255,.04);
}

.status-step.done .step-indicator {
  background: linear-gradient(135deg, #7b2cf7, #c054e0);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 12px rgba(160,80,255,.4);
}

.status-step.active .step-indicator {
  background: rgba(200,150,255,.1);
  border-color: rgba(220,170,255,.5);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--yd-glow);
  border-radius: 50%;
  display: block;
  animation: pulseDot 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--yd-glow);
}

@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.7); }
}

.step-info { display: flex; flex-direction: column; gap: 2px; }
.step-name { font-size: .82rem; font-weight: 600; color: rgba(230,210,255,.9); }
.step-sub  { font-size: .72rem; color: rgba(180,155,220,.55); }

.status-step.done .step-name { color: var(--yd-lavender); }
.status-step.active .step-name { color: #fff; }

/* Mini doll card */
.hero-doll-card {
  background: rgba(20, 5, 45, 0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,150,255,.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(80,20,180,.2);
}

.hero-doll-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(200,150,255,.5));
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.hero-doll-text {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(220,200,255,.8);
  display: flex;
  align-items: center;
  gap: 6px;
}
.doll-sparkle { animation: sparkle 2s ease-in-out infinite; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(200,170,255,.5);
  animation: fadeSlideUp 1s ease 1s both;
}

.scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(200,170,255,.4);
  border-bottom: 2px solid rgba(200,170,255,.4);
  transform: rotate(45deg);
  animation: chevronBounce 1.5s ease-in-out infinite;
}

@keyframes chevronBounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity: .5; }
  50%      { transform: rotate(45deg) translateY(5px); opacity: 1; }
}


/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: rgba(8, 1, 18, 0.92);
  border-top: 1px solid rgba(200,150,255,.12);
  border-bottom: 1px solid rgba(200,150,255,.12);
  padding: 28px 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  min-width: 120px;
  transition: transform .3s ease;
}

.trust-item:hover { transform: translateY(-4px); }

.trust-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(200,150,255,.4));
  transition: filter .3s ease;
}
.trust-item:hover img { filter: drop-shadow(0 0 16px rgba(200,150,255,.7)); }

.trust-item span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(200,175,240,.65);
  text-align: center;
}


/* ══════════════════════════════════════════
   OFFER SECTION
══════════════════════════════════════════ */
.offer-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  background: rgba(15, 3, 35, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,150,255,.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,150,255,.4);
  box-shadow: 0 20px 60px rgba(100,30,200,.4);
}

.offer-card-featured {
  border-color: rgba(220,120,255,.4);
  box-shadow: 0 0 40px rgba(160,80,255,.2);
  position: relative;
}

.offer-card-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #c054e0, #8b3cf7);
  border-radius: 99px;
  padding: 4px 12px;
  box-shadow: 0 0 16px rgba(180,80,255,.4);
}

.offer-card-img {
  height: 200px;
  overflow: hidden;
}

.offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.offer-card:hover .offer-card-img img { transform: scale(1.06); }

.offer-card-body {
  padding: 24px;
}

.offer-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff, var(--yd-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-card-body p {
  font-size: .875rem;
  color: rgba(200,175,240,.7);
  line-height: 1.65;
  margin-bottom: 20px;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--yd-lavender);
  border: 1px solid rgba(200,150,255,.3);
  border-radius: 8px;
  padding: 8px 16px;
  transition: all .3s ease;
}
.btn-card:hover {
  background: rgba(200,150,255,.1);
  border-color: rgba(200,150,255,.5);
  color: #fff;
  transform: translateX(3px);
}

.btn-card-featured {
  color: #fff;
  background: linear-gradient(135deg, rgba(140,60,255,.3), rgba(200,80,230,.3));
  border-color: rgba(220,120,255,.4);
}
.btn-card-featured:hover {
  background: linear-gradient(135deg, rgba(140,60,255,.5), rgba(200,80,230,.5));
}


/* ══════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════ */
.process-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--yd-deep) 0%, #0e0228 50%, var(--yd-deep) 100%);
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107,33,200,.12) 0%, transparent 70%);
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin-bottom: 56px;
}

.process-step {
  position: relative;
  background: rgba(20, 5, 45, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,150,255,.15);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  transition: transform .3s ease, border-color .3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(200,150,255,.35);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(200,150,255,.2), rgba(200,150,255,.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.step-content h4 {
  font-size: .95rem;
  font-weight: 700;
  color: rgba(230,210,255,.95);
  margin-bottom: 8px;
}

.step-content p {
  font-size: .82rem;
  color: rgba(190,165,230,.65);
  line-height: 1.65;
}

.process-cta { text-align: center; }


/* ══════════════════════════════════════════
   AI ASSISTANT SECTION
══════════════════════════════════════════ */
.assistant-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--yd-deep) 0%, #100228 100%);
  overflow: hidden;
}

.assistant-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.assistant-features {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.assistant-features li {
  font-size: .88rem;
  color: rgba(200,175,240,.75);
}

.assistant-coming-soon {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--yd-pink);
  border: 1px solid rgba(232,121,181,.3);
  border-radius: 99px;
  padding: 6px 20px;
  background: rgba(232,121,181,.06);
}

.assistant-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.assistant-glow-ring {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,80,255,.2) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}

.assistant-img {
  max-width: 340px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(180,100,255,.35));
  animation: characterFloat 6s ease-in-out infinite;
}

@keyframes characterFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-16px); }
}

.assistant-chat-bubble {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: 3;
  background: rgba(20, 5, 45, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,150,255,.25);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;
  box-shadow: 0 8px 30px rgba(80,20,180,.3);
  animation: floatBubble 4s ease-in-out infinite;
}

@keyframes floatBubble {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.chat-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.chat-text { font-size: .78rem; color: rgba(220,200,255,.9); line-height: 1.45; }


/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}

.newsletter-inner { text-align: center; }

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 12px 0 14px;
  background: linear-gradient(135deg, #fff, var(--yd-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-content p {
  color: rgba(200,180,240,.7);
  font-size: .9rem;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto 14px;
}

.newsletter-input {
  flex: 1;
  min-width: 240px;
  padding: 13px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,150,255,.25);
  color: #fff;
  font-size: .9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .3s ease, background .3s ease;
}
.newsletter-input:focus {
  border-color: rgba(200,150,255,.5);
  background: rgba(255,255,255,.09);
}
.newsletter-input::placeholder { color: rgba(200,170,255,.4); }

.newsletter-btn { padding: 13px 24px; font-size: .9rem; }

.newsletter-legal {
  font-size: .73rem;
  color: rgba(200,170,255,.35);
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--yd-deep);
  border-top: 1px solid rgba(200,150,255,.1);
}

.footer-top { padding: 64px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(200,150,255,.3));
}

.footer-tagline {
  font-size: .84rem;
  color: rgba(190,165,230,.6);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200,150,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: rgba(200,170,255,.7);
  transition: all .3s ease;
}
.social-link:hover {
  background: rgba(200,150,255,.12);
  border-color: rgba(200,150,255,.4);
  color: #fff;
  transform: translateY(-2px);
}

.footer-nav h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yd-glow);
  margin-bottom: 16px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  font-size: .84rem;
  color: rgba(190,165,230,.6);
  transition: color .2s ease;
}
.footer-nav a:hover { color: rgba(220,200,255,.9); }

.footer-contact .footer-contact-item {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(200,170,255,.5);
  margin-bottom: 4px;
  margin-top: 14px;
}
.footer-contact .footer-contact-item:first-child { margin-top: 0; }

.footer-email {
  font-size: .9rem;
  color: var(--yd-lavender);
  font-weight: 600;
  transition: color .2s ease;
}
.footer-email:hover { color: #fff; }

.footer-contact-note {
  font-size: .76rem;
  color: rgba(190,165,230,.5);
  margin-top: 6px;
  line-height: 1.5;
}

.footer-icons-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.footer-icons-row img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: .6;
  transition: opacity .2s ease;
}
.footer-icons-row img:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(200,150,255,.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .76rem;
  color: rgba(190,165,230,.4);
}

.footer-bottom-links { display: flex; align-items: center; gap: 8px; }
.footer-bottom-links a {
  color: rgba(190,165,230,.45);
  transition: color .2s ease;
}
.footer-bottom-links a:hover { color: rgba(220,200,255,.7); }
.footer-bottom-links span { color: rgba(190,165,230,.25); }


/* ══════════════════════════════════════════
   AI FLOAT BUTTON
══════════════════════════════════════════ */
.ai-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .3s ease;
  animation: floatIcon 4s ease-in-out infinite;
}

.ai-float-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(200,150,255,.4);
  box-shadow:
    0 0 20px rgba(160,80,255,.4),
    0 4px 20px rgba(0,0,0,.4);
  object-fit: cover;
}

.ai-float-btn:hover { transform: scale(1.1); }

.ai-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 3, 35, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,150,255,.25);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: .78rem;
  color: rgba(220,200,255,.9);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.ai-float-btn:hover .ai-float-tooltip { opacity: 1; }


/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* AOS-like scroll animation */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .offer-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .assistant-inner { grid-template-columns: 1fr; gap: 40px; }
  .assistant-visual { order: -1; }
  .assistant-img { max-width: 260px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .navbar-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 1, 20, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .navbar-links.open { transform: translateX(0); }
  .navbar-links a { font-size: 1.1rem; padding: 12px 20px; border-radius: 12px; }
  .navbar-toggle { display: flex; }

  .hero-content { flex-direction: column; padding-top: calc(var(--nav-h) + 20px); }
  .hero-right { display: none; }
  .hero-title-line2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  .offer-cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .age-gate-card { padding: 32px 24px 24px; }
  .age-gate-title { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .trust-item { min-width: 90px; padding: 12px; }
  .trust-item img { width: 36px; height: 36px; }
}


/* ══════════════════════════════════════════
   MOBILE-SPECIFIC OPTIMIZATIONS
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  html { zoom: 1; }
  .navbar-logo img { height: 38px; }
  .navbar-inner { padding: 0 16px; }
  .hero-section { background-position: 65% 20%; min-height: 100svh; transition: none; }
  .hero-left { max-width: 100%; }
  .hero-title-line2 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-desc { font-size: .9rem; }
  .trust-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
  .trust-item { min-width: unset; padding: 14px 10px; }
  .offer-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .assistant-inner { grid-template-columns: 1fr; gap: 32px; }
  .assistant-img { max-width: 200px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .age-gate-card { padding: 28px 20px 20px; }
  .age-gate-logo { width: 120px; }
  .age-gate-title { font-size: 1.2rem; }
  .ai-float-btn { width: 50px; height: 50px; bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-content { padding: calc(var(--nav-h) + 12px) 16px 40px; }
  .hero-badge { font-size: .65rem; }
  .offer-section, .process-section, .assistant-section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}

/* ══════════════════════════════════════════
   MOBILE-SPECIFIC OPTIMIZATIONS
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  html { zoom: 1; }
  .navbar-logo img { height: 38px; }
  .navbar-inner { padding: 0 16px; }
  .hero-section { background-position: 65% 20%; min-height: 100svh; transition: none; }
  .hero-left { max-width: 100%; }
  .hero-title-line2 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-desc { font-size: .9rem; }
  .trust-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
  .trust-item { min-width: unset; padding: 14px 10px; }
  .offer-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .assistant-inner { grid-template-columns: 1fr; gap: 32px; }
  .assistant-img { max-width: 200px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .age-gate-card { padding: 28px 20px 20px; }
  .age-gate-logo { width: 120px; }
  .age-gate-title { font-size: 1.2rem; }
  .ai-float-btn { width: 50px; height: 50px; bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-content { padding: calc(var(--nav-h) + 12px) 16px 40px; }
  .hero-badge { font-size: .65rem; }
  .offer-section, .process-section, .assistant-section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}