@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700;9..144,800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #FF006E;
  --accent: #CCFF00;
  --bg: #240046;
  --surface: #3C096C;
  --text: #FFFFFF;
  --muted: #E0AAFF;

  --font-heading: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --radius-pill: 999px;
  --radius-card: 22px;
  --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 8px 24px rgba(0, 0, 0, 0.12);

  --container-max: 1200px;
  --grid-gap: 1.5rem;
  --section-padding: 4rem 1.5rem;
  --header-height: 72px;

  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   HEADER
   ======================================== */

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(36, 0, 70, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-subtle);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(36, 0, 70, 0.97);
  box-shadow: var(--shadow-elevated);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.925rem;
  font-weight: 500;
  transition: color var(--transition-base);
}

.nav-menu a:hover {
  color: var(--text);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: inline-block;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem;
    border-top: 1px solid var(--muted);
  }

  .nav-menu.open a {
    padding: 0.75rem 0;
    display: block;
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary,
.btn-secondary,
.cta-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary);
  color: var(--text);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 110, 0.35);
  color: var(--text);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--muted);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.cta-button {
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 255, 0, 0.3);
  color: var(--bg);
}

.form-submit {
  background: var(--primary);
  color: var(--text);
  width: 100%;
  padding: 1rem 2rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 110, 0.35);
}

/* ========================================
   TEXT-OVER-PHOTO OVERLAY
   ======================================== */

.has-photo-bg {
  position: relative;
  isolation: isolate;
}

.has-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
  z-index: 0;
}

.has-photo-bg > * {
  position: relative;
  z-index: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: var(--section-padding);
}

.hero-section .container {
  display: grid;
  gap: 2rem;
  max-width: 800px;
}

.hero-section h1 {
  margin-bottom: 1rem;
}

.hero-section h1 .highlight {
  color: var(--accent);
}

.hero-section p {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 2rem;
  }
}

/* ========================================
   SECTIONS - GENERAL
   ======================================== */

.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 2rem;
  }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

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

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

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.feature-icon.pink { background: rgba(255, 0, 110, 0.15); color: var(--primary); }
.feature-icon.lime { background: rgba(204, 255, 0, 0.15); color: var(--accent); }
.feature-icon.purple { background: rgba(224, 170, 255, 0.15); color: var(--muted); }

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature-card p {
  font-size: 0.925rem;
  margin-bottom: 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

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

.service-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(224, 170, 255, 0.08);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.service-card .service-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.about-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

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

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonial-section {
  background-size: cover;
  background-position: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

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

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

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card .quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.testimonial-card .quote::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 0.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-section .cta-button {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 6rem 2rem;
  }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-row .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.4;
  color: var(--primary);
}

.contact-row .details {
  display: flex;
  flex-direction: column;
}

.contact-row .details strong {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.contact-row .details span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  width: 100%;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--muted);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.15);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  border-radius: var(--radius-card);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(224, 170, 255, 0.5);
}

/* ========================================
   POLICY PAGES
   ======================================== */

.policy-page {
  padding: var(--section-padding);
  max-width: 800px;
  margin: 0 auto;
}

.policy-page h1 {
  margin-bottom: 0.5rem;
}

.policy-page .last-updated {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.policy-page h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.policy-page h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-page p,
.policy-page li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

.policy-page ul,
.policy-page ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.policy-page li {
  margin-bottom: 0.5rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: #10002B;
  padding: 4rem 1.5rem 2rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.65rem;
}

.footer-column ul a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color var(--transition-base);
}

.footer-column ul a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid rgba(224, 170, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.825rem;
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--muted);
  font-size: 1.25rem;
  transition: color var(--transition-base);
}

.footer-social a:hover {
  color: var(--accent);
}

/* ========================================
   COOKIE POPUP
   ======================================== */

.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-elevated);
  z-index: 9999;
  border: 1px solid rgba(224, 170, 255, 0.1);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

@media (min-width: 768px) {
  .cookie-popup {
    left: auto;
  }
}

.cookie-popup.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.cookie-popup p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cookie-popup .cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-popup .cookie-actions button {
  padding: 0.6rem 1.25rem;
  font-size: 0.825rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform var(--transition-base);
}

.cookie-popup .cookie-actions button:hover {
  transform: translateY(-1px);
}

.cookie-popup .cookie-accept {
  background: var(--accent);
  color: var(--bg);
}

.cookie-popup .cookie-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--muted);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   SWISS GRID DECORATIVE ELEMENTS
   ======================================== */

.grid-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--muted) 1px, transparent 1px),
    linear-gradient(90deg, var(--muted) 1px, transparent 1px);
  background-size: 60px 60px;
}

.accent-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.accent-dot.pink { background: var(--primary); }
.accent-dot.lime { background: var(--accent); }
.accent-dot.purple { background: var(--muted); }

.divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   PAGE HERO (INNER PAGES)
   ======================================== */

.page-hero {
  padding: 5rem 1.5rem 3rem;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 6rem 2rem 4rem;
  }
}

/* ========================================
   PRICING / ADDITIONAL CARDS
   ======================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
  align-items: start;
}

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

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

.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-subtle);
  text-align: center;
  border: 2px solid transparent;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.02);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  margin: 1rem 0;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(224, 170, 255, 0.08);
}

.pricing-card ul li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 0.3s; }

/* ========================================
   SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--surface);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* ========================================
   SELECTION
   ======================================== */

::selection {
  background: var(--primary);
  color: var(--text);
}