@font-face {
  font-family: 'YekanBakhnum';
  src: url('../assets/fonts/YekanBakhnum-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'YekanBakhnum';
  src: url('../assets/fonts/YekanBakhnum-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'YekanBakhnum';
  src: url('../assets/fonts/YekanBakhnum-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #171023;
  --bg-low: #120b1d;
  --surface: rgba(30, 20, 48, 0.7);
  --surface-high: #2e263b;
  --primary: #d3bcf9;
  --secondary: #ffb59c;
  --lavender: #d1c4e9;
  --text: #eaddf9;
  --text-muted: #cbc4cf;
  --border: rgba(209, 196, 233, 0.15);
  --glow: rgba(255, 181, 156, 0.25);
  --font-body: 'Roboto', system-ui, -apple-system, sans-serif;
  --font-display: var(--font-body);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
}

body.lang-fa {
  --font-body: 'YekanBakhnum', 'Roboto', system-ui, sans-serif;
  --font-display: var(--font-body);
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--surface);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s var(--ease-out), background 0.4s;
}

.nav.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--secondary);
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-actions .btn {
  padding: 0.55rem 0.95rem;
  line-height: 1.2;
  font-weight: 500;
  border: 1px solid transparent;
  box-sizing: border-box;
}

.lang-picker {
  position: relative;
}

.lang-picker-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-sizing: border-box;
  background: rgba(46, 38, 59, 0.85);
  border: 1px solid rgba(232, 180, 184, 0.35);
  color: var(--lavender);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition:
    border-color 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.lang-picker-trigger:hover,
.lang-picker.is-open .lang-picker-trigger {
  border-color: rgba(255, 181, 156, 0.55);
  background: rgba(46, 38, 59, 0.98);
  box-shadow: 0 0 20px rgba(255, 181, 156, 0.12);
}

.lang-picker-icon {
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.9;
}

.lang-picker-chevron {
  font-size: 0.7rem;
  color: var(--secondary);
  transition: transform 0.25s var(--ease-out);
}

.lang-picker.is-open .lang-picker-chevron {
  transform: rotate(180deg);
}

.lang-picker-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 12rem;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: #1e1430;
  border: 1px solid rgba(232, 180, 184, 0.28);
  border-radius: 0.9rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  z-index: 200;
}

body.rtl .lang-picker-menu {
  right: auto;
  left: 0;
}

.lang-picker-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition:
    background 0.2s var(--ease-out),
    color 0.2s var(--ease-out);
}

.lang-picker-option:hover {
  background: rgba(255, 181, 156, 0.1);
  color: var(--text);
}

.lang-picker-option.is-active {
  background: rgba(232, 180, 184, 0.18);
  color: var(--secondary);
  font-weight: 600;
}

.lang-picker-check {
  width: 1rem;
  font-size: 0.75rem;
  color: var(--secondary);
  opacity: 0;
}

.lang-picker-option.is-active .lang-picker-check {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, opacity 0.25s;
}

.btn-primary {
  background: var(--secondary);
  color: #390c00;
  box-shadow: 0 0 24px var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255, 181, 156, 0.45);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Hero banner */
.hero-banner {
  position: relative;
  margin-top: 5rem;
}

.hero-banner-surface {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(4.5rem, 9vw, 6.5rem);
  background: linear-gradient(128deg, #3a2452 0%, #2d1b4d 38%, #1a0f2e 68%, #241636 100%);
}

.hero-banner-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-blob-1 {
  width: 55%;
  height: 70%;
  top: -15%;
  left: -12%;
  background: radial-gradient(circle, rgba(232, 180, 184, 0.35), rgba(155, 89, 182, 0.12) 55%, transparent 72%);
}

.hero-blob-2 {
  width: 45%;
  height: 65%;
  top: 10%;
  right: -8%;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.4), rgba(45, 27, 61, 0.2) 60%, transparent 75%);
}

.hero-blob-3 {
  width: 35%;
  height: 45%;
  bottom: -5%;
  left: 35%;
  background: radial-gradient(circle, rgba(255, 181, 156, 0.22), transparent 70%);
}

.hero-curve {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-curve-1 {
  width: 520px;
  height: 520px;
  top: -180px;
  right: 8%;
  border-color: rgba(232, 180, 184, 0.2);
}

.hero-curve-2 {
  width: 380px;
  height: 380px;
  bottom: -120px;
  left: 5%;
  border-color: rgba(155, 89, 182, 0.25);
}

.hero-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  text-align: center;
}

.hero-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.hero-brand-line {
  width: min(5rem, 12vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 180, 184, 0.65), transparent);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-brand img {
  border-radius: 12px;
  box-shadow: 0 0 20px var(--glow);
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(209, 196, 233, 0.85);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-copy h1 em {
  display: block;
  font-style: normal;
  color: var(--secondary);
  margin-top: 0.12em;
}

.hero-subtitle {
  color: var(--lavender);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.7;
  max-width: 32rem;
  margin: 0 auto 2rem;
  opacity: 0.92;
}

.hero-copy .store-buttons {
  justify-content: center;
  margin-bottom: 0;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
  min-height: min(680px, 82vh);
}

.hero-phone-glow {
  position: absolute;
  width: min(340px, 78vw);
  aspect-ratio: 9 / 20;
  border-radius: 1.25rem;
  background: radial-gradient(circle, rgba(255, 181, 156, 0.4), transparent 68%);
  filter: blur(32px);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-phone-frame {
  position: relative;
  width: min(340px, 78vw);
  aspect-ratio: 9 / 20;
  border-radius: 1.25rem;
  overflow: hidden;
  border: none;
  box-shadow:
    0 0 0 1px rgba(232, 180, 184, 0.15),
    0 28px 72px rgba(0, 0, 0, 0.5),
    0 0 56px rgba(155, 89, 182, 0.25);
  background: transparent;
  isolation: isolate;
}

.hero-phone-frame::before {
  content: none;
}

.hero-phone-frame video,
.hero-phone-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  background: #120b1d;
}

.hero-phone-frame video {
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.hero-phone-frame img {
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.hero-banner-wave {
  position: relative;
  margin-top: -1px;
  line-height: 0;
  color: var(--bg);
}

.hero-banner-wave svg {
  display: block;
  width: 100%;
  height: clamp(3rem, 8vw, 5rem);
}

.hero-banner-wave path {
  fill: currentColor;
}

.hero-banner .store-btn {
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  min-width: 220px;
}

.hero-banner .store-btn-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.hero-banner .store-btn.primary {
  background: linear-gradient(135deg, #e8b4b8, #ffb59c);
  color: #2a1020;
  box-shadow: 0 8px 28px rgba(255, 181, 156, 0.35);
}

.hero-banner .store-btn.secondary {
  border: 1.5px solid rgba(232, 180, 184, 0.55);
  color: var(--text);
  background: rgba(26, 15, 30, 0.35);
  backdrop-filter: blur(6px);
}

@media (min-width: 900px) {
  .hero-banner-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

  .hero-copy {
    text-align: start;
  }

  body.rtl .hero-copy {
    text-align: end;
  }

  .hero-subtitle {
    margin-inline: 0;
  }

  .hero-copy .store-buttons {
    justify-content: flex-start;
  }

  body.rtl .hero-copy .store-buttons {
    justify-content: flex-end;
  }

  .hero-media {
    justify-content: flex-end;
  }

  .hero-phone-glow,
  .hero-phone-frame {
    width: min(360px, 42vw);
  }

  body.rtl .hero-media {
    justify-content: flex-start;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.85rem;
  min-width: 210px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.store-btn-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
}

.store-btn-icon svg {
  width: 100%;
  height: 100%;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.store-btn.primary {
  background: var(--secondary);
  color: #390c00;
  box-shadow: 0 0 28px var(--glow);
}

.store-btn.secondary {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background: rgba(255, 181, 156, 0.05);
}

.store-btn:hover {
  transform: translateY(-3px);
}

.store-btn.disabled {
  opacity: 0.55;
  pointer-events: none;
}

.store-btn small {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.store-btn strong {
  font-size: 1.15rem;
}

.footer-store-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-store-buttons .store-btn {
  min-width: auto;
  width: 100%;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2rem);
  margin: 0 0 0.75rem;
}

.section-header p {
  color: var(--lavender);
  max-width: 36rem;
  margin: 0 auto;
}

.ritual {
  background: var(--bg-low);
}

.stages {
  display: grid;
  gap: 2.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .stages {
    grid-template-columns: repeat(3, 1fr);
  }

  .stages::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
  }
}

.stage {
  text-align: center;
  position: relative;
}

.stage-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 181, 156, 0.3);
  box-shadow: 0 0 24px var(--glow);
}

.stage-icon .material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.stage-path .stage-icon {
  color: #9b59b6;
  background: rgba(155, 89, 182, 0.15);
  border-color: rgba(155, 89, 182, 0.5);
  box-shadow: 0 0 24px rgba(155, 89, 182, 0.28);
}

.stage-path h3 {
  color: #9b59b6;
}

.stage-score .stage-icon {
  color: #ffc107;
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 24px rgba(255, 193, 7, 0.28);
}

.stage-score h3 {
  color: #ffc107;
}

.stage-love .stage-icon {
  color: #e8b4b8;
  background: rgba(232, 180, 184, 0.15);
  border-color: rgba(232, 180, 184, 0.5);
  box-shadow: 0 0 24px rgba(232, 180, 184, 0.28);
}

.stage-love h3 {
  color: #e8b4b8;
}

.stage h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.stage p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Bento */
.bento {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
  }

  .bento-ai {
    grid-column: span 8;
  }

  .bento-lang {
    grid-column: span 4;
  }

  .bento-inclusive {
    grid-column: span 4;
  }

  .bento-ui {
    grid-column: span 8;
  }
}

.glass-card {
  background: rgba(30, 20, 48, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 181, 156, 0.12);
}

.glass-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.glass-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.glass-card p {
  color: var(--lavender);
  margin: 0;
}

.lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.lang-chips span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid var(--border);
  color: var(--secondary);
  background: rgba(35, 28, 48, 0.8);
}

.bento-ui-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  .bento-ui-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.phone-mock {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

.phone-shell {
  width: min(220px, 70%);
  aspect-ratio: 9 / 16;
  border-radius: 1rem;
  border: none;
  background: transparent;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.phone-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

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

/* Gallery */
.gallery {
  background: #1f182c;
  overflow: hidden;
}

.gallery-swiper {
  position: relative;
  padding-bottom: 2rem;
}

.gallery-viewport {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 calc((100% - 3rem) / 4);
  scroll-snap-align: none;
}

.gallery-item.gallery-page-start {
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .gallery-item {
    flex: 0 0 calc((100% - 1rem) / 2);
  }
}

@media (max-width: 560px) {
  .gallery-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}

.gallery-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 0 1rem;
}

.gallery-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(209, 196, 233, 0.25);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s;
}

.gallery-dot.active {
  background: var(--secondary);
  transform: scale(1.25);
}

@media (max-width: 560px) {
  .gallery-swiper {
    padding-bottom: 1.5rem;
  }
}

.phone-card {
  position: relative;
  border-radius: 1rem;
  border: none;
  aspect-ratio: 9 / 16;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.phone-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 0.75rem 0.75rem;
  font-size: 0.75rem;
  color: var(--lavender);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(transparent, rgba(18, 11, 29, 0.92));
}

/* Footer */
footer {
  background: var(--bg-low);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-grid h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.75rem;
}

.footer-grid a {
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer-grid a:hover {
  color: var(--primary);
}

.disclaimer {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  border: 1px dashed var(--border);
  border-radius: 1rem;
  color: var(--lavender);
  font-style: italic;
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reviews */
.reviews {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(26, 15, 30, 0.6));
}

.reviews-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: var(--lavender);
}

.reviews-rating-badge strong {
  color: var(--rose-gold);
  font-size: 1.1rem;
}

.reviews-stars,
.review-stars {
  color: var(--rose-gold);
  letter-spacing: 0.08em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.review-card-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.review-card p {
  flex: 1 1 auto;
  margin: 0.75rem 0 1.25rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

.review-card footer {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: auto;
  padding: 0.25rem 0.75rem 0;
}

.review-card footer strong {
  color: var(--rose-gold);
}

.review-card footer span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Legal / terms page */
.legal-page .legal-content {
  padding: 7rem 1.5rem 4rem;
  max-width: 720px;
}

.legal-content h1 {
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.legal-notice {
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 1rem;
  background: rgba(212, 165, 116, 0.08);
}

.legal-notice p {
  margin: 0;
  color: var(--lavender);
  line-height: 1.7;
}

.legal-content section {
  margin-bottom: 1.75rem;
}

.legal-content h2 {
  color: var(--amethyst);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: var(--text);
  line-height: 1.7;
}

.legal-content a {
  color: var(--rose-gold);
}

.legal-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* Particles */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.35;
  animation: drift linear infinite;
}

@keyframes drift {
  from {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  to {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}
