/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ===== Tokens ===== */
:root {
  --bg: #0D0B0A;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text-primary: #F5F0EB;
  --text-secondary: #9B9590;
  --text-muted: #5A5550;
  --accent: #A78BFA;
  --accent-dim: rgba(167, 139, 250, 0.12);
  --accent-border: rgba(167, 139, 250, 0.2);
  --accent-glow: rgba(167, 139, 250, 0.15);
  --gold: #D4A853;
  --gold-dim: rgba(212, 168, 83, 0.12);
  --gold-border: rgba(212, 168, 83, 0.2);
  --glass-blur: 24px;
  --glass-saturate: 180%;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

/* ===== Base ===== */
body {
  background-color: var(--bg);
  color: var(--text-secondary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Container ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 56px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p {
  line-height: 1.7;
}

.text-accent {
  background: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 30%, #D4A853 60%, #A78BFA 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== Ambient Orbs ===== */
.orb-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: orb-drift 20s ease-in-out infinite alternate;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  animation-duration: 25s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  bottom: 20%;
  left: -15%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
  top: 50%;
  right: 20%;
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes orb-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

/* ===== Film Grain Overlay ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

/* ===== Floating Particles ===== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-duration: 15s; animation-delay: -3s; }
.particle:nth-child(3) { left: 40%; animation-duration: 11s; animation-delay: -7s; }
.particle:nth-child(4) { left: 55%; animation-duration: 14s; animation-delay: -2s; }
.particle:nth-child(5) { left: 70%; animation-duration: 13s; animation-delay: -5s; }
.particle:nth-child(6) { left: 85%; animation-duration: 16s; animation-delay: -9s; }
.particle:nth-child(7) { left: 15%; animation-duration: 10s; animation-delay: -4s; width: 3px; height: 3px; }
.particle:nth-child(8) { left: 60%; animation-duration: 17s; animation-delay: -8s; width: 1px; height: 1px; }

@keyframes float-up {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) scale(0.5);
    opacity: 0;
  }
}

/* ===== Glow Dividers ===== */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-glow) 50%, transparent 100%);
  border: none;
  margin: 0;
  position: relative;
  overflow: visible;
}

.glow-divider::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 30%;
  right: 30%;
  height: 9px;
  background: radial-gradient(ellipse, rgba(167, 139, 250, 0.2) 0%, transparent 70%);
  filter: blur(4px);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== Glass System ===== */
.glass-panel {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-panel-strong {
  background: var(--surface-strong);
  border-color: var(--border-strong);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-badge {
  display: inline-block;
  background: var(--accent-dim);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.glass-input {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.glass-input::placeholder {
  color: var(--text-muted);
}

.glass-input:focus {
  outline: none;
  border-color: var(--accent-border);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px var(--accent-glow), 0 0 24px var(--accent-glow);
}

/* ===== Liquid Glass Buttons ===== */
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  border-radius: 14px 14px 0 0;
  pointer-events: none;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-glass:active {
  transform: translateY(0);
}

.btn-glass-accent {
  background: rgba(212, 168, 83, 0.1);
  border-color: var(--gold-border);
  color: var(--gold);
  box-shadow:
    0 4px 16px rgba(212, 168, 83, 0.1),
    inset 0 1px 0 rgba(212, 168, 83, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-glass-accent::before {
  background: linear-gradient(180deg, rgba(212, 168, 83, 0.08) 0%, transparent 100%);
}

.btn-glass-accent:hover {
  background: rgba(212, 168, 83, 0.16);
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow:
    0 8px 40px rgba(212, 168, 83, 0.2),
    0 0 60px rgba(212, 168, 83, 0.08),
    inset 0 1px 0 rgba(212, 168, 83, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-full {
  width: 100%;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: 12px 24px;
  max-width: 720px;
  width: calc(100% - 32px);
  border-radius: var(--radius-pill);
  animation: nav-slide-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

@keyframes nav-slide-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.375rem;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 180px 0 120px;
  text-align: center;
}

.hero .badge {
  margin-bottom: 32px;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.125rem;
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* ===== Hero CTAs ===== */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== About ===== */
.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-lead {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat {
  padding: 28px 20px;
  text-align: center;
}

.stat-value {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .about-section {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
  }
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  padding: 36px 28px;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  perspective: 800px;
}

.feature-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-6px) rotateX(2deg) rotateY(-1deg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 50px var(--accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 20px;
}

/* ===== Brand Match ===== */
.brand-match-section h2 {
  text-align: left;
}

.brand-match-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.brand-match-info > p {
  font-size: 1.0625rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.brand-match-info .badge {
  margin-bottom: 24px;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.price-amount {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 3.5rem;
  color: var(--text-primary);
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  opacity: 0.5;
}

.price-detail {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== Checkout Form ===== */
.brand-match-form-wrap {
  max-width: 480px;
}

.checkout-form {
  padding: 40px 32px;
}

.checkout-form h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.step:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}

.step h3 {
  margin-bottom: 6px;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.footer-company {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-company a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-company a:hover {
  color: var(--text-primary);
}

/* ===== Responsive: Tablet ===== */
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ===== Responsive: Desktop ===== */
@media (min-width: 900px) {
  .container {
    padding: 0 40px;
  }

  .hero {
    padding: 220px 0 140px;
  }

  .hero-sub {
    font-size: 1.25rem;
  }

  .brand-match-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .brand-match-form-wrap {
    max-width: none;
  }
}

/* ===== Responsive: Large ===== */
@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Mobile ===== */
@media (max-width: 639px) {
  .nav-links {
    display: none;
  }

  .nav {
    top: 12px;
    padding: 10px 20px;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .checkout-form {
    padding: 32px 24px;
  }

  .brand-match-section h2 {
    text-align: center;
  }

  .price-block {
    justify-content: center;
  }
}

/* ===== Scrollbar (Le Filon style) ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(167, 139, 250, 0.18) transparent;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(167, 139, 250, 0.15);
  border-radius: 9999px;
  transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(167, 139, 250, 0.35);
}

/* ===== Scroll Reveal Animations ===== */
.hero .badge,
.hero h1,
.hero-sub,
.hero .btn-glass {
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero .badge { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.35s; }
.hero-ctas {
  animation: scale-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both;
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stat value pop animation */
.stat-value {
  animation: stat-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

@keyframes stat-pop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stat:nth-child(1) .stat-value { animation-delay: 0s; }
.stat:nth-child(2) .stat-value { animation-delay: 0.1s; }
.stat:nth-child(3) .stat-value { animation-delay: 0.2s; }

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.step,
.brand-match-info,
.brand-match-form-wrap,
.section h2 {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-timeline: view();
  animation-range: entry 0% entry 40%;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger feature cards */
.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.06s; }
.feature-card:nth-child(3) { animation-delay: 0.12s; }
.feature-card:nth-child(4) { animation-delay: 0.18s; }
.feature-card:nth-child(5) { animation-delay: 0.24s; }
.feature-card:nth-child(6) { animation-delay: 0.3s; }

/* Stagger steps */
.step:nth-child(1) { animation-delay: 0s; }
.step:nth-child(2) { animation-delay: 0.1s; }
.step:nth-child(3) { animation-delay: 0.2s; }

/* Shimmer on glass panels */
.glass-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

.glass-panel:hover::after {
  animation: shimmer 0.8s ease-out;
}

@keyframes shimmer {
  to { left: 100%; }
}

/* Pulse glow on CTA hover */
.btn-glass-accent:hover {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow:
      0 8px 40px rgba(212, 168, 83, 0.2),
      0 0 60px rgba(212, 168, 83, 0.08),
      inset 0 1px 0 rgba(212, 168, 83, 0.15),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow:
      0 8px 40px rgba(212, 168, 83, 0.3),
      0 0 80px rgba(212, 168, 83, 0.12),
      inset 0 1px 0 rgba(212, 168, 83, 0.2),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  }
}

/* ===== Focus & Accessibility ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== Selection ===== */
::selection {
  background-color: rgba(167, 139, 250, 0.2);
  color: var(--text-primary);
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .orb,
  .particle {
    display: none;
  }

  .text-accent {
    background: none;
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
  }
}
