/* ─────────────────────────────────────────────
   Airelit — Shared Stylesheet
   ───────────────────────────────────────────── */

:root {
  --bg:          #0f1117;
  --bg2:         #161b27;
  --bg3:         #1e2535;
  --border:      #2a3347;
  --border2:     #323b52;
  --text:        #e2e8f0;
  --text-dim:    #bdc2cc;
  --text-faint:  #5f6b84;
  --accent:      #4f8ef7;
  --accent-dim:  #1f4a8a;
  --green:       #2eb87e;
  --green-dim:   #0e3d29;
  --amber:       #e8a642;
  --red:         #e05a5a;
  --purple:      #7c5cfc;
  --purple-dim:  #281a4a;
  --radius:      8px;
  --radius-lg:   14px;
  --mono:        'DM Mono', 'Fira Code', 'Consolas', monospace;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --nav-height:  56px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, svg { display: block; }
ul { list-style: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.1rem; font-weight: 500; }
h4 { font-size: 0.8rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); font-weight: 400; }

p { color: var(--text-dim); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { color: var(--text); font-weight: 500; }

code {
  font-family: var(--mono);
  font-size: 0.8rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border2);
  border-radius: 3px;
  padding: 1px 6px;
  color: var(--text);
}

pre {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  overflow-x: auto;
  margin: 16px 0;
}

pre code { background: none; border: none; padding: 0; font-size: 0.8rem; line-height: 1.65; }

hr { border: none; border-top: 1px solid var(--border); margin: 56px 0; }

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 48px) 40px 100px;
}

/* ── Section ── */
.section { margin-bottom: 80px; }

.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ── Buttons ── */
.btn {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { opacity: 0.85; text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline:hover { border-color: var(--text-dim); text-decoration: none; }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); text-decoration: none; }

.btn-lg { padding: 12px 28px; font-size: 0.82rem; }

/* ── Cards ── */
.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.card-hover {
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card-hover:hover {
  border-color: var(--border2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* ── Badge / tier ── */
.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
}
.badge-accent  { background: rgba(79,142,247,0.12); color: var(--accent);  border: 1px solid rgba(79,142,247,0.25); }
.badge-green   { background: rgba(46,184,126,0.12); color: var(--green);   border: 1px solid rgba(46,184,126,0.25); }
.badge-purple  { background: rgba(124,92,252,0.12); color: var(--purple);  border: 1px solid rgba(124,92,252,0.25); }
.badge-amber   { background: rgba(232,166,66,0.12); color: var(--amber);   border: 1px solid rgba(232,166,66,0.25); }
.badge-dim     { background: rgba(255,255,255,0.05); color: var(--text-faint); border: 1px solid var(--border); }

/* ── Callout ── */
.callout {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.callout strong { color: var(--accent); }
.callout.warn { border-left-color: var(--amber); }
.callout.warn strong { color: var(--amber); }

/* ── Token colors (JSON highlighting) ── */
.tok-key  { color: #7ec8e3; }
.tok-str  { color: #a8d8a8; }
.tok-num  { color: #f4a261; }
.tok-cmnt { color: var(--text-faint); font-style: italic; }
.tok-url  { color: var(--accent); }

/* ── Table ── */
.table-wrap { overflow-x: auto; margin: 20px 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
thead th {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 400;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* ── Focus ── */
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ─────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────── */

.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-height);
  background: rgba(15,17,23,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topnav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 8px;
  flex-shrink: 0;
}
.nav-brand:hover { text-decoration: none; }

.nav-brand-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav-brand-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--accent);
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  padding: 2px 7px;
  border-radius: 20px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--sans);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); text-decoration: none; }
.nav-link.active { color: #fff; }

.nav-link svg { opacity: 0.55; transition: transform 0.2s; }
.nav-item:hover > .nav-link svg,
.nav-item.open > .nav-link svg { opacity: 1; transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 300;
}

.nav-item:hover > .nav-dropdown,
.nav-item.open > .nav-dropdown { display: block; }

.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover { color: var(--text); background: rgba(255,255,255,0.04); text-decoration: none; }

.nav-dropdown-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 4px 14px 6px;
  margin-top: 4px;
}
.nav-dropdown-label:first-child { margin-top: 0; }

.nav-dropdown-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 6px 8px;
}

/* Nav right slot */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dim);
  padding: 6px;
  border-radius: 6px;
  margin-left: auto;
}
.nav-mobile-toggle:hover { background: rgba(255,255,255,0.05); color: var(--text); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 12px 0 16px;
  z-index: 190;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}
.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 10px 24px;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-mobile a:hover { color: var(--text); }

.nav-mobile-section {
  padding: 8px 24px 4px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 8px;
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */

.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 12px;
  line-height: 1.65;
  max-width: 240px;
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 400;
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); text-decoration: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--text-dim); }

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */

.hero-section {
  padding: calc(var(--nav-height) + 72px) 0 80px;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.hero-section h1 { margin-bottom: 24px; }
.hero-section h1 em { font-style: normal; color: var(--text-dim); font-weight: 400; }
.hero-lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages - smaller, left-aligned)
   ───────────────────────────────────────────── */

.page-hero {
  padding: calc(var(--nav-height) + 1px) 0 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}

.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; max-width: 700px; }
.page-hero p { max-width: 560px; font-size: 1.05rem; }

/* ─────────────────────────────────────────────
   FEATURE GRID
   ───────────────────────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--border2); }

.feature-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.feature-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; margin: 0; }

/* ─────────────────────────────────────────────
   PRODUCT CARD (homepage, product listing)
   ───────────────────────────────────────────── */

.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  border-color: var(--border2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.product-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.product-card .product-card-tagline {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.product-card p { font-size: 0.875rem; margin-bottom: 20px; flex: 1; }

.product-card-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ─────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────── */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.plan {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan.recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.plan-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price span { font-size: 0.82rem; font-weight: 400; color: var(--text-faint); }

.plan-quota {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  margin: 6px 0 16px;
}

.plan-features {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  flex: 1;
}
.plan-features li {
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 4px 0;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.plan-features li::before { content: '·'; color: var(--accent); flex-shrink: 0; }

.plan-overage {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-faint);
  margin-top: 12px;
}

.plan-cta { margin-top: 20px; }
.plan-cta .btn { width: 100%; text-align: center; }

/* ─────────────────────────────────────────────
   DOCS
   ───────────────────────────────────────────── */

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.doc-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  display: block;
  transition: border-color 0.15s, background 0.15s;
}
.doc-card:hover {
  border-color: var(--accent);
  background: rgba(79,142,247,0.04);
  text-decoration: none;
}

.doc-card-title {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.doc-card-title::after { content: '→'; opacity: 0.6; }
.doc-card-desc { font-size: 0.82rem; color: var(--text-dim); margin: 0; }

/* ─────────────────────────────────────────────
   CODE BLOCK WITH HEADER
   ───────────────────────────────────────────── */

.code-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 20px 0;
}

.code-block-header {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.code-method {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(79,142,247,0.15);
  color: var(--accent);
  border: 1px solid rgba(79,142,247,0.3);
}

.code-endpoint {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--text-dim);
}
.code-endpoint span { color: var(--text-faint); }

.code-block pre {
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 20px 24px;
}

/* ─────────────────────────────────────────────
   STEPS
   ───────────────────────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.step-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.step-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.step-card h3 { font-size: 0.9rem; margin-bottom: 8px; }
.step-card p { font-size: 0.82rem; margin: 0; }

/* ─────────────────────────────────────────────
   CONTACT FORM
   ───────────────────────────────────────────── */

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-textarea { min-height: 120px; resize: vertical; }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */

@media (max-width: 960px) {
  .container, .page-wrap, .footer-inner, .topnav-inner { padding-left: 24px; padding-right: 24px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .plan-grid { grid-template-columns: 1fr 1fr; }
  .doc-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container, .page-wrap, .footer-inner, .topnav-inner { padding-left: 16px; padding-right: 16px; }
  .feature-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .hero-section { padding-top: calc(var(--nav-height) + 48px); }
  .page-wrap { padding-top: calc(var(--nav-height) + 32px); }
}

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