/* ===================================================================
   BeeAI Landing Page — style.css
   Dark hero + light sections, dev SaaS aesthetic
   Font: Inter | Icons: Material Symbols Outlined
   =================================================================== */

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

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #0a0a0f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ----- CONTAINER ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s,
    transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn--primary {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
}
.btn--primary:hover {
  background: #0d9668;
  border-color: #0d9668;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn--outline {
  background: transparent;
  color: #f5f5f5;
  border-color: #3a3a4a;
}
.btn--outline:hover {
  border-color: #10b981;
  color: #10b981;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 10px;
}

.btn--block {
  width: 100%;
}

/* ----- SECTION HEADERS ----- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-header__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-header__subtitle {
  font-size: 1.05rem;
  color: #555566;
  line-height: 1.65;
}

.section-header--dark .section-header__title {
  color: #f5f5f5;
}
.section-header--dark .section-header__subtitle {
  color: #a0a0a8;
}

/* ----- BADGE PILLS ----- */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.badge--hot {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}
.badge--new {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}
.badge--coding {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}
.badge--fast {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

/* =================================================================
   NAVBAR
   ================================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.25rem;
  color: #f5f5f5;
  flex-shrink: 0;
}

.navbar__logo-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.navbar__logo-text {
  letter-spacing: -0.5px;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  color: #a0a0a8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar__link:hover {
  color: #f5f5f5;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.navbar__cta {
  display: none;
  padding: 8px 20px;
  font-size: 0.85rem;
}

.navbar__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #2a2a3a;
  border-radius: 6px;
  color: #a0a0a8;
  cursor: pointer;
  padding: 6px 10px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.navbar__lang:hover {
  color: #f5f5f5;
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.08);
}
.navbar__lang .material-symbols-outlined {
  font-size: 18px;
}
.navbar__lang-text {
  letter-spacing: 0.5px;
}

.navbar__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #f5f5f5;
  cursor: pointer;
  padding: 4px;
  font-size: 1.5rem;
}
.navbar__hamburger .material-symbols-outlined {
  font-size: 28px;
}

/* Mobile nav open */
.navbar__links--open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(16px);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.navbar__links--open .navbar__link {
  font-size: 1rem;
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  background: #0a0a0f;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind hero */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  text-align: center;
  max-width: 680px;
}

.hero__headline {
  font-size: 2rem;
  font-weight: 900;
  color: #f5f5f5;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero__headline-accent {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subheadline {
  font-size: 1.05rem;
  color: #a0a0a8;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- TERMINAL ----- */
.hero__terminal {
  width: 100%;
  max-width: 640px;
}

.terminal {
  background: #15151f;
  border: 1px solid #2a2a3a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.terminal__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid #2a2a3a;
}

.terminal__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal__dot--red {
  background: #ef4444;
}
.terminal__dot--yellow {
  background: #f59e0b;
}
.terminal__dot--green {
  background: #10b981;
}

.terminal__title {
  font-size: 0.75rem;
  color: #555566;
  margin-left: 8px;
  font-weight: 500;
}

.terminal__body {
  padding: 20px;
  overflow-x: auto;
}

.terminal__body pre {
  margin: 0;
  font-family: "SF Mono", "Fira Code", "Cascadia Code", "Consolas", monospace;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #a0a0a8;
}

.terminal__body code {
  font-family: inherit;
}

.terminal__prompt {
  color: #10b981;
  font-weight: 700;
}

.terminal__cmd {
  color: #f5f5f5;
}

.terminal__flag {
  color: #3b82f6;
}

.terminal__string {
  color: #f59e0b;
}

.terminal__output {
  color: #a0a0a8;
}

/* ----- TOOLS STRIP ----- */
.hero__tools {
  padding: 48px 0 56px;
}

.hero__tools-label {
  text-align: center;
  font-size: 0.8rem;
  color: #555566;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__tools-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__tool {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #2a2a3a;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #a0a0a8;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.hero__tool:hover {
  border-color: #10b981;
  color: #f5f5f5;
}

/* =================================================================
   STATS BAR
   ================================================================= */
.stats {
  background: #111118;
  border-top: 1px solid #2a2a3a;
  border-bottom: 1px solid #2a2a3a;
  padding: 48px 0;
}

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

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stats__number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #f5f5f5;
  letter-spacing: -1px;
  line-height: 1.1;
}

.stats__label {
  font-size: 0.85rem;
  color: #a0a0a8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* =================================================================
   FEATURES
   ================================================================= */
.features {
  background: #fafafa;
  padding: 96px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  justify-items: center;
}
.feature-card {
  width: 100%;
  max-width: 480px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e5e5ea;
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card__icon .material-symbols-outlined {
  font-size: 26px;
  color: #10b981;
}

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 0.92rem;
  color: #555566;
  line-height: 1.7;
}

/* =================================================================
   MODELS
   ================================================================= */
.models {
  background: #fff;
  padding: 96px 0;
}

.models__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: center;
}
.model-card {
  width: 100%;
  max-width: 480px;
}

.model-card {
  background: #fff;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.model-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  border-color: #10b981;
}

.model-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.model-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
}

.model-card__provider {
  font-size: 0.78rem;
  color: #a0a0a8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.model-card__desc {
  font-size: 0.88rem;
  color: #555566;
  line-height: 1.6;
}

/* =================================================================
   PRICING
   ================================================================= */
.pricing {
  background: #fafafa;
  padding: 96px 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e5e5ea;
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Popular card */
.pricing-card--popular {
  border-color: #10b981;
  border-width: 2px;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
}
.pricing-card--popular:hover {
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.18);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card__header {
  margin-bottom: 24px;
}

.pricing-card__name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.pricing-card__desc {
  font-size: 0.88rem;
  color: #555566;
}

.pricing-card__price {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__amount {
  font-size: 2.75rem;
  font-weight: 900;
  color: #1a1a2e;
  letter-spacing: -1.5px;
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.95rem;
  color: #a0a0a8;
  font-weight: 500;
}

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

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555566;
  line-height: 1.4;
}
.pricing-card__feature .material-symbols-outlined {
  font-size: 20px;
  color: #10b981;
  flex-shrink: 0;
}

/* Outline button on light bg */
.pricing-card .btn--outline {
  color: #1a1a2e;
  border-color: #d0d0d8;
}
.pricing-card .btn--outline:hover {
  border-color: #10b981;
  color: #10b981;
}

/* =================================================================
   HOW IT WORKS
   ================================================================= */
.how-it-works {
  background: #0a0a0f;
  padding: 96px 0;
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step {
  text-align: center;
  max-width: 360px;
  padding: 24px 0;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 2px solid #10b981;
  color: #10b981;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 10px;
}

.step__desc {
  font-size: 0.9rem;
  color: #a0a0a8;
  line-height: 1.7;
}

.step__connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #10b981 0%, rgba(16, 185, 129, 0.15) 100%);
  margin: 0 auto;
}

/* =================================================================
   FAQ
   ================================================================= */
.faq {
  background: #fff;
  padding: 96px 0;
}

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

.faq__item {
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq__item:hover {
  border-color: #c0c0ca;
}
.faq__item[open] {
  border-color: #10b981;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a2e;
  list-style: none;
  transition: background 0.2s;
  user-select: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::marker {
  content: "";
  display: none;
}
.faq__question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq__question-text {
  flex: 1;
}

.faq__icon {
  font-size: 24px;
  color: #a0a0a8;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
  color: #10b981;
}

.faq__answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: #555566;
  line-height: 1.75;
}

.faq__answer code {
  background: #f0f0f5;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.84rem;
  font-family: "SF Mono", "Fira Code", "Consolas", monospace;
  color: #1a1a2e;
}

/* =================================================================
   FINAL CTA
   ================================================================= */
.final-cta {
  background: #0a0a0f;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08) 0%,
    rgba(59, 130, 246, 0.05) 50%,
    rgba(139, 92, 246, 0.06) 100%
  );
  pointer-events: none;
}

.final-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-size: 2rem;
  font-weight: 900;
  color: #f5f5f5;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.final-cta__subtitle {
  font-size: 1.05rem;
  color: #a0a0a8;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  background: #060609;
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.2rem;
  color: #f5f5f5;
  margin-bottom: 14px;
}

.footer__logo-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.footer__logo-text {
  letter-spacing: -0.5px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: #a0a0a8;
  line-height: 1.7;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer__column-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

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

.footer__link {
  font-size: 0.88rem;
  color: #a0a0a8;
  transition: color 0.2s;
}
.footer__link:hover {
  color: #10b981;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer__copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #555566;
}

/* =================================================================
   RESPONSIVE — 768px (Tablet)
   ================================================================= */
@media (min-width: 768px) {
  .section-header__title {
    font-size: 2.1rem;
  }

  /* Navbar */
  .navbar__hamburger {
    display: none;
  }
  .navbar__links {
    display: flex;
    flex: 1;
    justify-content: center;
  }
  .navbar__logo {
    flex: 1;
  }
  .navbar__actions {
    flex: 1;
    justify-content: flex-end;
    margin-left: 0;
  }
  .navbar__cta {
    display: inline-flex;
  }

  /* Hero */
  .hero__headline {
    font-size: 2.75rem;
  }

  /* Stats */
  .stats__inner {
    grid-template-columns: repeat(4, 1fr);
  }
  .stats__number {
    font-size: 3rem;
  }

  /* Features */
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Models */
  .models__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card--popular {
    grid-column: span 2;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }

  /* Steps horizontal */
  .steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .step {
    flex: 1;
  }
  .step__connector {
    width: 60px;
    height: 2px;
    margin: 0;
    align-self: auto;
    margin-top: 52px;
    flex-shrink: 0;
    background: linear-gradient(to right, #10b981 0%, rgba(16, 185, 129, 0.15) 100%);
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1.3fr 2fr;
  }
  .footer__columns {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Final CTA */
  .final-cta__title {
    font-size: 2.5rem;
  }
}

/* =================================================================
   RESPONSIVE — 1024px (Desktop)
   ================================================================= */
@media (min-width: 1024px) {
  .section-header__title {
    font-size: 2.35rem;
  }

  /* Hero */
  .hero__inner {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }
  .hero__content {
    text-align: left;
    flex: 1;
  }
  .hero__headline {
    font-size: 3.5rem;
  }
  .hero__subheadline {
    margin-left: 0;
    margin-right: 0;
  }
  .hero__ctas {
    justify-content: flex-start;
  }
  .hero__terminal {
    flex: 1;
    max-width: 560px;
  }

  /* Features */
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Models */
  .models__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-card--popular {
    grid-column: span 1;
    max-width: none;
    transform: scale(1.04);
  }
  .pricing-card--popular:hover {
    transform: scale(1.04) translateY(-4px);
  }

  /* Steps connector wider */
  .step__connector {
    width: 80px;
  }

  /* Final CTA */
  .final-cta__title {
    font-size: 2.75rem;
  }
}

/* =================================================================
   UTILITIES & MISC
   ================================================================= */

/* Smooth scroll anchor offset for fixed navbar */
:target {
  scroll-margin-top: 80px;
}

/* Selection color */
::selection {
  background: rgba(16, 185, 129, 0.25);
  color: #f5f5f5;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

/* Scrollbar subtle styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #2a2a3a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3a3a4a;
}
