@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,900;1,900&display=swap');

/* =========================================
   1. CSS VARIABLES & BRAND PALETTE
   ========================================= */
:root {
  --primary: #9333ea;
  --accent: #ec4899;
  --bg: #120b1e;
  --surface: #1e1433;
  --text: #f5f0ff;
  --muted: #a89bc2;
  
  --border-width: 4px;
  --border-heavy: 6px;
  --radius: 4px;
  
  --glow-accent: 0 0 40px rgba(236, 72, 153, 0.3);
  --glow-primary: 0 0 40px rgba(147, 51, 234, 0.3);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* =========================================
   2. RESET & BASE STYLES
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

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

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

ul,
ol {
  list-style: none;
}

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--muted);
  max-width: 65ch;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 700;
}

/* =========================================
   4. LAYOUT & UTILITIES
   ========================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
  border-left: var(--border-heavy) solid var(--accent);
  padding-left: 1.5rem;
}

.section-header p {
  margin-top: 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.flex {
  display: flex;
  gap: 1rem;
}

/* =========================================
   5. HEADER & NAVIGATION
   ========================================= */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 11, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-width) solid transparent;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(18, 11, 30, 0.98);
  border-bottom-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

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

/* CRITICAL: Hamburger Menu Rules */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--text);
  border-radius: var(--radius);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text);
  z-index: 1001;
}

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

.nav-menu a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

@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);
    border-bottom: var(--border-width) solid var(--primary);
  }
  
  .nav-menu.open a {
    padding: 1rem;
    border-bottom: 1px solid var(--surface);
    width: 100%;
  }
}

/* =========================================
   6. BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: var(--border-width) solid var(--text);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--text);
  border-color: var(--accent);
  box-shadow: var(--glow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(236, 72, 153, 0.5);
  color: var(--text);
}

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

.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.cta-button {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--text);
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(147, 51, 234, 0.5);
  color: var(--text);
}

.form-submit {
  background: var(--primary);
  color: var(--text);
  border-color: var(--primary);
  width: 100%;
}

.form-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--glow-accent);
}

/* =========================================
   7. TEXT OVER PHOTO RULE (CRITICAL)
   ========================================= */
.has-photo-bg {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
}

.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;
}

/* =========================================
   8. HERO SECTION
   ========================================= */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1920&q=80');
  border-bottom: var(--border-heavy) solid var(--primary);
}

.hero-content {
  max-width: 800px;
}

.hero-content .mono {
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-block;
  border: 2px solid var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

/* =========================================
   9. FEATURES SECTION
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background: var(--surface);
  border: var(--border-width) solid var(--muted);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all var(--transition-base);
  box-shadow: none;
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow-accent);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border: 2px solid var(--text);
}

.feature-card h3 {
  margin-bottom: 1rem;
}

/* =========================================
   10. SERVICES SECTION
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: var(--border-width) solid var(--text);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-item {
  padding: 2.5rem;
  border-bottom: var(--border-width) solid var(--text);
  background: var(--surface);
  transition: background var(--transition-fast);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  background: var(--bg);
}

.service-item .mono {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.service-item h3 {
  margin-bottom: 1rem;
}

/* =========================================
   11. ABOUT SECTION
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border: var(--border-heavy) solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.about-content .btn {
  margin-top: 1rem;
}

/* =========================================
   12. STATS SECTION
   ========================================= */
.stats-section {
  background: var(--surface);
  border-top: var(--border-heavy) solid var(--accent);
  border-bottom: var(--border-heavy) solid var(--accent);
}

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

.stat-item {
  padding: 2rem 1rem;
  border: var(--border-width) solid var(--muted);
  border-radius: var(--radius);
  background: var(--bg);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* =========================================
   13. TESTIMONIALS SECTION
   ========================================= */
.testimonial-section {
  background-image: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1920&q=80');
  border-bottom: var(--border-heavy) solid var(--primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: var(--surface);
  border: var(--border-width) solid var(--text);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
}

.testimonial-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--muted);
}

/* =========================================
   14. CTA SECTION
   ========================================= */
.cta-section {
  padding: 6rem 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: var(--border-heavy) solid var(--text);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-box h2 {
  margin-bottom: 1rem;
  color: var(--text);
}

.cta-box p {
  color: rgba(245, 240, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

.cta-box .btn-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}

.cta-box .btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
}

/* =========================================
   15. CONTACT SECTION & FORMS
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.contact-info > p {
  margin-bottom: 2rem;
}

/* CRITICAL: Contact Rows */
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-row .icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.2rem;
}

.contact-row p {
  margin-bottom: 0;
  color: var(--text);
}

.contact-form {
  background: var(--surface);
  border: var(--border-width) solid var(--muted);
  border-radius: var(--radius);
  padding: 2.5rem;
}

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

.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

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

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* =========================================
   16. FOOTER
   ========================================= */
.footer {
  background: #0a0512;
  border-top: var(--border-heavy) solid var(--primary);
  padding: 4rem 0 2rem;
  color: var(--muted);
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--surface);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--muted);
}

/* =========================================
   17. COOKIE POPUP
   ========================================= */
.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 400px;
  background: var(--surface);
  border: var(--border-width) solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: auto;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-popup p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-buttons .btn {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  flex: 1;
}

/* =========================================
   18. POLICY PAGES
   ========================================= */
.policy-section {
  padding: 4rem 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  border: var(--border-width) solid var(--muted);
  border-radius: var(--radius);
  padding: 3rem;
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: var(--border-width) solid var(--primary);
  padding-bottom: 1rem;
}

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

.policy-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.policy-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-meta {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* =========================================
   19. MEDIA QUERIES (TABLET - 768px)
   ========================================= */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    border-right: var(--border-width) solid var(--text);
    border-bottom: var(--border-width) solid var(--text);
  }

  .service-item:nth-child(2n) {
    border-right: none;
  }

  .service-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-popup {
    left: auto;
  }
}

/* =========================================
   20. MEDIA QUERIES (DESKTOP - 1024px)
   ========================================= */
@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-item {
    border-right: var(--border-width) solid var(--text);
  }

  .service-item:nth-child(2n) {
    border-right: var(--border-width) solid var(--text);
  }

  .service-item:nth-child(3n) {
    border-right: none;
  }

  .service-item:nth-last-child(-n+2) {
    border-bottom: var(--border-width) solid var(--text);
  }

  .service-item:nth-last-child(-n+3) {
    border-bottom: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 5.5rem;
  }
}

/* =========================================
   21. ACCESSIBILITY & REDUCED MOTION
   ========================================= */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.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;
}

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

/* =========================================
   22. BRUTALIST ACCENTS & DECORATIONS
   ========================================= */
.brutalist-block {
  border: var(--border-heavy) solid var(--text);
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
}

.brutalist-block::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: var(--border-width) solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.15));
  border-left: var(--border-heavy) solid var(--accent);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.highlight-box p {
  color: var(--text);
  margin-bottom: 0;
  font-weight: 500;
}

/* Hard dividers */
.divider {
  height: var(--border-heavy);
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  width: 100%;
  border: none;
  margin: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
  border-left: 2px solid var(--surface);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), var(--accent));
  border: 2px solid var(--bg);
  border-radius: 4px;
}

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

/* Selection */
::selection {
  background: var(--accent);
  color: var(--bg);
}