/* ============================================================
   Volans — Marketing Website Stylesheet
   getvolans.app
   ============================================================ */

/* ------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   ------------------------------------------------------------ */
:root {
  --bg:              #0a0e1a;
  --bg-card:         #111827;
  --bg-hover:        #1a2235;
  --border:          rgba(255, 255, 255, 0.08);
  --accent:          #4f7fff;
  --accent-hover:    #6b92ff;
  --text-primary:    #f0f4ff;
  --text-secondary:  #8b9ab8;
  --text-tertiary:   #7282a2; /* lifted from #4a5568 to pass WCAG AA 4.5:1 on both bg colors */
  --success:         #22c55e;
  --warning:         #f59e0b;
  --danger:          #ef4444;

  --font:            -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       28px;

  --shadow-card:     0 2px 16px rgba(0, 0, 0, 0.4);
  --shadow-accent:   0 0 32px rgba(79, 127, 255, 0.25);
  --shadow-glow:     0 0 0 1px rgba(79, 127, 255, 0.5), 0 0 40px rgba(79, 127, 255, 0.2);

  --max-width:       1120px;
  --nav-height:      64px;
}

/* ------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* ------------------------------------------------------------
   Layout Utilities
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 72px 0;
}

/* ------------------------------------------------------------
   Typography Utilities
   ------------------------------------------------------------ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ------------------------------------------------------------
   Stars / Constellation Background
   ------------------------------------------------------------ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 10%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 60%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 75%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 85%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 45%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 30%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 50%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 90%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 55%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 12%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 70%, rgba(255,255,255,0.2) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 22%;
  flex-shrink: 0;
  display: block;
}

.nav__logo-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger — hidden on desktop */
.nav__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  min-width: 44px;  /* WCAG touch target */
  min-height: 44px; /* WCAG touch target */
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 24px;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile a {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  min-height: 44px; /* WCAG touch target */
}

.btn--primary {
  background: var(--accent);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79, 127, 255, 0.4);
}

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

.btn--secondary:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.btn--large {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding: 10px 16px;
}

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

/* ------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------ */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(79, 127, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(79, 127, 255, 0.1);
  border: 1px solid rgba(79, 127, 255, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero__h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero__sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__proof {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 60px;
}

.hero__proof span {
  margin: 0 8px;
}

.hero__proof span::before {
  content: '·';
  margin-right: 8px;
  color: var(--text-tertiary);
}

.hero__proof span:first-child::before {
  content: none;
}

.hero__screenshot {
  max-width: 960px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
   Screenshot Placeholders (shared)
   ------------------------------------------------------------ */
.screenshot-placeholder {
  background-color: var(--bg-card);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.screenshot-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(79, 127, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.screenshot-placeholder .placeholder-icon {
  opacity: 0.35;
  flex-shrink: 0;
}

.screenshot-placeholder .placeholder-label {
  color: var(--text-tertiary);
  font-size: 12px;
  line-height: 1.5;
}

/* Hero screenshot specific */
.hero-screenshot {
  aspect-ratio: 1280 / 800;
}

/* Feature screenshot specific */
.feature-screenshot {
  aspect-ratio: 800 / 500;
  width: 100%;
}

/* Carousel screenshot specific */
.carousel-screenshot {
  aspect-ratio: 600 / 375;
  width: 100%;
}

/* Window chrome decoration */
.window-chrome {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.window-chrome__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.window-chrome__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-chrome__dot--red    { background: #ff5f57; }
.window-chrome__dot--yellow { background: #febc2e; }
.window-chrome__dot--green  { background: #28c840; }

.window-chrome__title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-tertiary);
}

.window-chrome__body {
  /* placeholder fills this */
}

.window-chrome__body .screenshot-placeholder {
  border-radius: 0;
  border: none;
}

/* ------------------------------------------------------------
   Problem Section
   ------------------------------------------------------------ */
.problem {
  background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.5) 50%, transparent 100%);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.problem-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--bg-hover);
}

.problem-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(239, 68, 68, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--danger);
}

.problem-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.problem-card__body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   Features Section
   ------------------------------------------------------------ */
.features__header {
  margin-bottom: 64px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(79, 127, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(79, 127, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card__body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-card__screenshot {
  margin-top: auto;
}

/* ------------------------------------------------------------
   Screenshots Carousel Section
   ------------------------------------------------------------ */
.screenshots {
  overflow: hidden;
}

.screenshots__header {
  margin-bottom: 48px;
}

.screenshots__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  padding-bottom: 12px;
}

.screenshots__track::-webkit-scrollbar {
  height: 4px;
}

.screenshots__track::-webkit-scrollbar-track {
  background: transparent;
}

.screenshots__track::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.screenshot-item {
  min-width: 260px;
}

.screenshot-item__caption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

/* ------------------------------------------------------------
   Pricing Section
   ------------------------------------------------------------ */
.pricing {
  background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.4) 50%, transparent 100%);
}

.pricing__header {
  margin-bottom: 64px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
}

.pricing-card--pro {
  border-color: rgba(79, 127, 255, 0.4);
  box-shadow: var(--shadow-glow);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__plan {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pricing-card__price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__price sup {
  font-size: 24px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.pricing-card__cadence {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing-card__intro {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--warning);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 28px;
}

.pricing-card__divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.pricing-card__feature-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-feature__icon--check {
  color: var(--success);
}

.pricing-feature__icon--minus {
  color: var(--text-tertiary);
}

.pricing-feature--dimmed {
  opacity: 0.5;
}

.pricing-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__actions .btn {
  justify-content: center;
  width: 100%;
}

/* ------------------------------------------------------------
   FAQ Section
   ------------------------------------------------------------ */
.faq__header {
  margin-bottom: 56px;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.2s ease;
}

.faq-item__question:hover {
  background: var(--bg-hover);
}

.faq-item__chevron {
  width: 20px;
  height: 20px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.is-open .faq-item__answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-item__answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer__logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 22%;
  display: block;
}

.footer__logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer__copyright {
  font-size: 13px;
  color: var(--text-tertiary);
  text-align: right;
}

/* ------------------------------------------------------------
   Responsive — Tablet (≤ 900px)
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .section { padding: 72px 0; }

  .problem__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* ------------------------------------------------------------
   Responsive — Mobile (≤ 600px)
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  .hero { padding: 72px 0 56px; }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    justify-content: center;
  }

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

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

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer__copyright {
    text-align: left;
  }

  .screenshots__track {
    grid-template-columns: repeat(5, 220px);
  }

  .nav__cta .btn--secondary {
    display: none;
  }
}

/* ------------------------------------------------------------
   Accessibility — Reduced Motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

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