/* ============================================
   X1 Interactive
   Bold & Confident — Dark agency aesthetic
   ============================================ */

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

:root {
  /* Dark theme palette */
  --bg: #0A0A0F;
  --bg-soft: #14141C;
  --bg-elev: #1C1C26;
  --bg-elev-2: #25252F;

  --border: #2A2A36;
  --border-soft: #1F1F2A;
  --border-strong: #3D3D4D;

  --ink: #FAFAFB;
  --ink-soft: #C9C9D1;
  --ink-mute: #7A7A88;
  --ink-dim: #4D4D5A;

  /* Electric accent — vibrant blue matching X1 brand */
  --accent: #4D9FFF;
  --accent-glow: #7AB8FF;
  --accent-dim: #2E7FD9;

  /* Secondary accents */
  --warm: #FF7A45;
  --cool: #B8FF3D;

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', monospace;

  /* Spacing */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  /* Layout */
  --width-max: 1320px;
  --width-content: 800px;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
}

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

html { scroll-behavior: smooth; background: var(--bg); }

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

/* Subtle grid texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 159, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 159, 255, 0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

main, header, footer {
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: var(--s-4);
  color: var(--ink-soft);
}

p:last-child { margin-bottom: 0; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover { color: var(--accent-glow); }

strong { font-weight: 600; color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: var(--s-6);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--width-max);
  margin: 0 auto;
  padding: 0 var(--s-6);
  position: relative;
}

.container-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--s-6);
  position: relative;
}

section { padding: var(--s-24) 0; position: relative; }

@media (max-width: 768px) {
  section { padding: var(--s-16) 0; }
  .container, .container-narrow { padding: 0 var(--s-4); }
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.95rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--accent-glow);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(77, 159, 255, 0.3);
}

.btn-primary::after {
  content: "→";
  font-weight: 500;
  transition: transform 0.2s ease;
}

.btn-primary:hover::after { transform: translateX(3px); }

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

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  padding: 0.5rem 0;
}

.btn-ghost:hover {
  color: var(--accent);
}

/* Header */
.site-header {
  padding: var(--s-5) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand:hover { color: var(--accent); }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.05em;
}

.header-nav {
  display: flex;
  gap: var(--s-8);
  align-items: center;
}

.header-nav-link {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.header-nav-link:hover, .header-nav-link.active {
  color: var(--ink);
}

@media (max-width: 768px) {
  .header-nav { display: none; }
}

/* Hero */
.hero {
  padding: var(--s-32) 0 var(--s-24);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(77, 159, 255, 0.08) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 255, 61, 0.04) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.hero h1 {
  margin-bottom: var(--s-8);
}

.hero h1 .accent-text {
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero h1 .underline-accent {
  position: relative;
  display: inline-block;
}

.hero h1 .underline-accent::after {
  content: "";
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: var(--accent);
  z-index: -1;
  opacity: 0.4;
}

.hero-subhead {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: var(--s-10);
  max-width: 680px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: var(--s-3);
  margin-bottom: var(--s-16);
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: var(--s-10);
  flex-wrap: wrap;
  padding-top: var(--s-8);
  border-top: 1px solid var(--border-soft);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  font-weight: 500;
}

.hero-meta-value {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}

/* Marquee — brand experience */
.experience-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--s-12) 0;
  overflow: hidden;
}

.experience-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-bottom: var(--s-8);
  font-weight: 500;
}

.experience-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-12) var(--s-16);
}

.brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: -0.03em;
  transition: color 0.2s ease;
  cursor: default;
}

.brand-text:hover {
  color: var(--ink);
}

/* Services preview / cards */
.section-header {
  margin-bottom: var(--s-16);
  max-width: 800px;
}

.section-header h2 {
  margin-bottom: var(--s-5);
}

.section-header p {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}

.service-card {
  position: relative;
  padding: var(--s-10) var(--s-8);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-elev-2);
  transform: translateY(-2px);
}

.service-card:hover::before { opacity: 1; }

.service-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: var(--s-5);
  display: block;
}

.service-card h3 {
  margin-bottom: var(--s-3);
  font-size: 1.4rem;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.975rem;
  line-height: 1.65;
  margin-bottom: var(--s-5);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: var(--s-8) var(--s-6); }
}

/* About section */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-16);
  align-items: start;
}

.about-stat-block {
  position: sticky;
  top: 120px;
}

.about-big-stat {
  font-family: var(--font-display);
  font-size: clamp(8rem, 16vw, 14rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

.about-big-stat-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  font-weight: 500;
}

.about-content h2 {
  margin-bottom: var(--s-8);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.about-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--s-5);
}

.about-content p strong {
  color: var(--ink);
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }
  .about-stat-block {
    position: static;
  }
}

/* Process section */
.process {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-8);
}

.process-step {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.process-step-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: var(--s-4);
}

.process-step h4 {
  margin-bottom: var(--s-3);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
}

.process-step p {
  color: var(--ink-mute);
  font-size: 0.925rem;
  line-height: 1.55;
}

@media (max-width: 968px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* CTA section */
.cta-block {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(77, 159, 255, 0.05) 0%, transparent 50%);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: var(--s-12) 0;
}

.cta-inner h2 {
  margin-bottom: var(--s-6);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.cta-inner p {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: var(--s-8);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner .hero-ctas {
  justify-content: center;
}

/* Contact form */
.contact-page-hero {
  padding: var(--s-24) 0 var(--s-12);
}

.contact-page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--s-5);
}

.contact-page-hero p {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: var(--s-8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
  padding-bottom: var(--s-24);
}

.contact-info-block {
  border-top: 1px solid var(--border);
  padding-top: var(--s-8);
}

.contact-info-block h3 {
  font-size: 1.25rem;
  margin-bottom: var(--s-4);
}

.contact-info-block p {
  color: var(--ink-soft);
  margin-bottom: var(--s-6);
}

.contact-detail {
  display: block;
  margin-bottom: var(--s-4);
}

.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: var(--s-1);
}

.contact-detail-value {
  font-size: 1.05rem;
  color: var(--ink);
}

.contact-detail-value a {
  color: var(--accent);
}

.quote-form {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: var(--s-10);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: var(--s-2);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius-sm);
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-dim);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-soft);
}

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

.form-submit {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 1rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
  margin-top: var(--s-4);
}

.form-submit:hover {
  background: var(--accent-glow);
  box-shadow: 0 0 24px rgba(77, 159, 255, 0.3);
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-mute);
  margin-top: var(--s-4);
  text-align: center;
  letter-spacing: 0.05em;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: var(--s-6); }
}

/* Services page */
.services-page-hero {
  padding: var(--s-24) 0 var(--s-16);
}

.services-page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--s-5);
  max-width: 900px;
}

.services-page-hero p {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 700px;
}

.service-detail {
  padding: var(--s-12) 0;
  border-top: 1px solid var(--border-soft);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s-12);
  align-items: start;
}

.service-detail-meta {
  position: sticky;
  top: 120px;
}

.service-detail-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: var(--s-3);
}

.service-detail-meta h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--s-6);
}

.service-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.service-detail-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--s-5);
}

.service-detail-content p strong {
  color: var(--ink);
}

.service-detail-content ul {
  list-style: none;
  margin-top: var(--s-4);
}

.service-detail-content li {
  position: relative;
  padding-left: var(--s-6);
  margin-bottom: var(--s-3);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.service-detail-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 968px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  .service-detail-meta { position: static; }
}

/* Footer */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  padding: var(--s-16) 0 var(--s-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-12);
}

.footer-brand-block {
  max-width: 360px;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-mute);
  margin-top: var(--s-4);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-bottom: var(--s-5);
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--s-3); }

.footer-col a, .footer-col span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  padding-top: var(--s-6);
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-8);
  }
}

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

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hero-content .eyebrow,
.hero-content h1,
.hero-subhead,
.hero-ctas,
.hero-meta {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1 { animation-delay: 0.05s; }
.hero-subhead { animation-delay: 0.15s; }
.hero-ctas { animation-delay: 0.25s; }
.hero-meta { animation-delay: 0.35s; }

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

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