/* ================================================================
   VibeSolar Design System  --  by xSkylight LTD
   "Quiet Engineering Authority"
   Premium dark theme  ·  Bloomberg meets Dieter Rams
   ================================================================ */

/* ----------------------------------------------------------------
   0. FONT IMPORTS
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400;1,9..40,500&display=swap');

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Colour palette — inherited from xSkylight */
  --bg:           #070b14;
  --bg-warm:      #080c16;
  --panel:        #0b1220;
  --panel2:       #0d1628;
  --panel3:       #101d36;
  --surface:      rgba(11, 18, 32, 0.45);
  --surface2:     rgba(11, 18, 32, 0.38);
  --text:         #e8eefc;
  --muted:        rgba(232, 238, 252, 0.55);
  --muted2:       rgba(232, 238, 252, 0.38);
  --muted3:       rgba(232, 238, 252, 0.22);
  --line:         rgba(232, 238, 252, 0.08);
  --line2:        rgba(232, 238, 252, 0.05);
  --accent:       #7cf0ff;
  --accent2:      #5de0c0;
  --accent-dim:   rgba(124, 240, 255, 0.10);
  --accent-glow:  rgba(124, 240, 255, 0.16);
  --amber:        #F59E0B;
  --amber-hover:  #D97706;
  --amber-dim:    rgba(245, 158, 11, 0.12);
  --danger:       #ef4444;
  --success:      #22c55e;

  /* Gradients */
  --gradient-accent:  linear-gradient(135deg, #7cf0ff 0%, #5de0c0 100%);
  --gradient-amber:   linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --gradient-surface: linear-gradient(180deg, var(--panel) 0%, var(--bg) 100%);

  /* Shadows */
  --shadow:       0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-sm:    0 8px 24px rgba(0, 0, 0, 0.20);
  --shadow-lg:    0 32px 80px rgba(0, 0, 0, 0.45);
  --glow-accent:  0 0 40px rgba(124, 240, 255, 0.08);

  /* Radii */
  --radius:       18px;
  --radius-lg:    26px;
  --radius-sm:    12px;
  --radius-pill:  999px;

  /* Layout */
  --container:    1180px;
  --container-sm: 860px;
  --pad:          24px;

  /* Typography — fluid clamp scale (matching xSkylight) */
  --step--2: clamp(0.75rem, 0.72rem + 0.15vw, 0.83rem);
  --step--1: clamp(0.86rem, 0.82rem + 0.20vw, 0.95rem);
  --step-0:  clamp(1rem, 0.95rem + 0.30vw, 1.12rem);
  --step-1:  clamp(1.15rem, 1.05rem + 0.55vw, 1.38rem);
  --step-2:  clamp(1.40rem, 1.22rem + 1.00vw, 1.90rem);
  --step-3:  clamp(1.95rem, 1.55rem + 2.20vw, 3.10rem);
  --step-4:  clamp(2.50rem, 1.95rem + 3.30vw, 4.20rem);
  --step-5:  clamp(3.20rem, 2.40rem + 4.50vw, 5.60rem);

  /* Timing */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --duration:  0.35s;

  /* Nav */
  --nav-height: 72px;
}


/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: var(--step-0)/1.7 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

p {
  margin: 0 0 1em;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

::selection {
  background: rgba(124, 240, 255, 0.22);
  color: var(--text);
}


/* ----------------------------------------------------------------
   3. UTILITY CLASSES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding: 120px 0;
}

.section-alt {
  padding: 120px 0;
  background: var(--panel);
}

.section-heading {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-3);
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-heading--light {
  color: var(--text);
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.subhead {
  font-size: var(--step-1);
  color: var(--muted);
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
  line-height: 1.65;
}

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

.muted {
  color: var(--muted);
}

.small {
  font-size: var(--step--1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}


/* ----------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step--1);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform 0.2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--gradient-accent);
  color: var(--bg);
  border-color: transparent;
}

.btn--primary:hover {
  color: var(--bg);
  box-shadow: 0 0 24px rgba(124, 240, 255, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--line);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(124, 240, 255, 0.08);
}

.btn--sm {
  padding: 10px 20px;
  font-size: var(--step--2);
}

.btn--lg {
  padding: 18px 36px;
  font-size: var(--step-0);
}

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


/* ----------------------------------------------------------------
   5. NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 100%;
}

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

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

.nav__logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.nav__logo:hover .nav__logo-icon {
  transform: scale(1.06);
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-brand {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color var(--duration) var(--ease);
}

.nav__logo:hover .nav__logo-brand {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__logo-sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list {
  display: flex;
  gap: 28px;
}

.nav__link {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--accent);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link--auth {
  color: var(--muted);
}

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

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 2px;
  background: transparent;
}

.lang-toggle__btn {
  padding: 4px 10px;
  font-size: 0.72rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  cursor: pointer;
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
}

.lang-toggle__btn:hover {
  color: var(--text);
}

.lang-toggle__btn--active {
  background: var(--accent);
  color: var(--bg);
}


/* ----------------------------------------------------------------
   6. HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 40px;
  overflow: hidden;
}

/* Faint radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(124, 240, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero__content {
  max-width: 820px;
}

.hero__title {
  font-family: "DM Sans", var(--sans);
  font-style: normal;
  font-size: var(--step-4);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 720px;
}

.hero__subtitle {
  font-size: var(--step-1);
  color: var(--muted);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 36px;
}

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

.hero__media {
  max-width: 720px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.hero__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-bottom: 20px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stat__number {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: var(--step--2);
  color: var(--muted);
  white-space: nowrap;
}


/* ----------------------------------------------------------------
   7. TRUST / PROOF BAR
   ---------------------------------------------------------------- */
.proof-bar,
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-bar__inner,
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}

.proof-bar__text,
.trust-bar__text {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step--1);
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.01em;
}

.proof-bar__divider,
.trust-bar__divider {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--muted2);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ----------------------------------------------------------------
   8. PROBLEM / SOLUTION
   ---------------------------------------------------------------- */
.problem-solution {
  padding: 120px 0;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.problem-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 240, 255, 0.16);
}

.problem-card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-card__icon svg {
  width: 48px;
  height: 48px;
}

.problem-card__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.problem-card__text {
  font-size: var(--step--1);
  color: var(--muted);
  line-height: 1.7;
}

.solution-statement {
  margin-top: 48px;
  padding: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(124, 240, 255, 0.12);
  border-radius: var(--radius);
  text-align: center;
}

.solution-statement__text {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-1);
  color: var(--text);
  line-height: 1.65;
  max-width: 800px;
  margin: 0 auto;
}


/* ----------------------------------------------------------------
   9. HOW IT WORKS
   ---------------------------------------------------------------- */
.how-it-works {
  padding: 120px 0;
  background: var(--panel);
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.how-it-works__step {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.how-it-works__step:hover {
  border-color: rgba(124, 240, 255, 0.16);
  transform: translateY(-2px);
}

.how-it-works__step-num {
  display: block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-3);
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.how-it-works__step h3 {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.how-it-works__step p {
  font-size: var(--step--1);
  color: var(--muted);
  line-height: 1.7;
}

/* Legacy class support */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step__number {
  display: block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-3);
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 16px;
}


/* ----------------------------------------------------------------
   10. FEATURE SPLITS
   ---------------------------------------------------------------- */
.features {
  padding: 120px 0;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px;
}

.feature-split:first-of-type {
  margin-top: 48px;
}

.feature-split--reverse {
  direction: rtl;
}

.feature-split--reverse > * {
  direction: ltr;
}

.feature-split__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-split__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.feature-split__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.feature-split__media img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-split__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step--2);
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Bullets */
.bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bullets li {
  position: relative;
  padding-left: 18px;
  font-size: var(--step--1);
  color: var(--muted);
  line-height: 1.7;
}

.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}


/* ----------------------------------------------------------------
   11. CARDS (generic)
   ---------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.card:hover {
  border-color: rgba(124, 240, 255, 0.12);
}

.card p {
  color: var(--muted);
  line-height: 1.7;
}


/* ----------------------------------------------------------------
   12. GRID UTILITY
   ---------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 24px;
}

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


/* ----------------------------------------------------------------
   13. CONFIDENCE BARS (Intent inference)
   ---------------------------------------------------------------- */
.confidence-bar {
  height: 6px;
  background: var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-top: 12px;
}

.confidence-fill {
  display: block;
  height: 100%;
  width: var(--confidence, 50%);
  background: var(--gradient-accent);
  border-radius: var(--radius-pill);
  transition: width 0.8s var(--ease-out);
}

.confidence-label {
  display: block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step--2);
  color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
}


/* ----------------------------------------------------------------
   14. COMPARISON TABLE
   ---------------------------------------------------------------- */
.comparison {
  padding: 120px 0;
}

.comparison__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step--1);
  white-space: nowrap;
}

.comparison__table thead {
  border-bottom: 1px solid var(--line);
}

.comparison__table th {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  color: var(--accent);
  padding: 16px 20px;
  text-align: left;
  background: var(--surface);
  position: sticky;
  top: 0;
}

.comparison__table td {
  padding: 14px 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--line2);
}

.comparison__table tbody tr:last-child td {
  border-bottom: none;
}

.comparison__table tbody tr:hover td {
  background: rgba(124, 240, 255, 0.02);
}

.comparison__highlight {
  background: var(--accent-dim) !important;
  color: var(--text) !important;
  font-weight: 500;
}

.comparison__row-price td {
  font-weight: 600;
  color: var(--text);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  padding-bottom: 18px;
}

.comparison__row-price .comparison__highlight {
  color: var(--amber) !important;
  font-size: var(--step-0);
}


/* ----------------------------------------------------------------
   15. SHOP / PRICING
   ---------------------------------------------------------------- */
.shop {
  padding: 120px 0;
  background: var(--panel);
}

.shop__text {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
}

.shop__text a {
  color: var(--accent);
}

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

.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.shop__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.shop__card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 240, 255, 0.16);
}

.shop__card--featured {
  border-color: var(--accent);
  position: relative;
}

.shop__card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: var(--gradient-accent);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.shop__card-title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.shop__card-price {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-3);
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.shop__card-desc {
  font-size: var(--step--1);
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.65;
}


/* ----------------------------------------------------------------
   16. ROADMAP
   ---------------------------------------------------------------- */
.roadmap {
  padding: 120px 0;
}

.roadmap__subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
}

.roadmap__timeline {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical line */
.roadmap__timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--line);
}

.roadmap__item {
  position: relative;
  padding: 24px 24px 24px 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background 0.3s var(--ease);
}

.roadmap__item:hover {
  background: var(--surface);
}

/* Dot on timeline */
.roadmap__item::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 30px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
}

.roadmap__item--current::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 12px rgba(124, 240, 255, 0.3);
}

.roadmap__version {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--text);
  margin-right: 12px;
}

.roadmap__status {
  display: inline-block;
  padding: 3px 12px;
  font-size: var(--step--2);
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  border-radius: var(--radius-pill);
  vertical-align: middle;
}

.roadmap__status--shipped {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
}

.roadmap__status--current {
  background: var(--accent-dim);
  color: var(--accent);
}

.roadmap__status--next {
  background: var(--amber-dim);
  color: var(--amber);
}

.roadmap__status--future {
  background: rgba(232, 238, 252, 0.06);
  color: var(--muted);
}

.roadmap__details {
  font-size: var(--step--1);
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.65;
}


/* ----------------------------------------------------------------
   17. CTA SECTION
   ---------------------------------------------------------------- */
.cta-section {
  padding: 120px 0;
  background: var(--panel);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 240, 255, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta-section__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 24px;
}

.cta-section__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-3);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Demo form */
.demo-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-form__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.demo-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-form__field label {
  font-size: var(--step--2);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.demo-form__field input,
.demo-form__field select,
.demo-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: var(--step--1);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  outline: none;
}

.demo-form__field input:focus,
.demo-form__field select:focus,
.demo-form__field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.demo-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8eefc' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.demo-form__field textarea {
  resize: vertical;
  min-height: 80px;
}

.demo-form__privacy {
  font-size: var(--step--2);
  color: var(--muted2);
  text-align: center;
}

.cta-section__form-wrap {
  position: relative;
}


/* ----------------------------------------------------------------
   18. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
}

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

.site-footer__logo {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0;
}

.site-footer__logo span {
  font-weight: 400;
  font-size: var(--step--2);
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.site-footer__tagline {
  font-size: var(--step--1);
  color: var(--muted);
  margin: 0;
}

/* Newsletter */
.site-footer__newsletter {
  margin-top: 8px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: var(--step--1);
  outline: none;
  transition: border-color 0.25s var(--ease);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--accent);
}

.newsletter-form__note {
  font-size: var(--step--2);
  color: var(--muted2);
  margin-top: 8px;
}

/* Social links */
.site-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition:
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.site-footer__social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.site-footer__social-link svg {
  width: 16px;
  height: 16px;
}

/* Footer links */
.site-footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.site-footer__col-title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__col a {
  font-size: var(--step--1);
  color: var(--muted);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

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

.site-footer__bottom {
  grid-column: 1 / -1;
  padding: 32px 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer__bottom p {
  font-size: var(--step--2);
  color: var(--muted2);
  margin: 0;
}

.site-footer__address {
  font-style: normal;
  font-size: var(--step--2);
  color: var(--muted2);
  line-height: 1.5;
  margin-top: 8px;
}


/* ----------------------------------------------------------------
   19. COOKIE BANNER
   ---------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.cookie-banner[hidden] {
  display: none !important;
}

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

.cookie-banner__text {
  font-size: var(--step--1);
  color: var(--muted);
  margin: 0;
  flex: 1;
  min-width: 280px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__link {
  font-size: var(--step--2);
  color: var(--accent);
}


/* ----------------------------------------------------------------
   20. AUTH MODALS
   ---------------------------------------------------------------- */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
}

.auth-modal-overlay[hidden] {
  display: none !important;
}

.auth-modal {
  width: 100%;
  max-width: 440px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
}

.auth-modal[hidden] {
  display: none !important;
}

.auth-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.auth-modal__close:hover {
  color: var(--text);
  background: var(--surface);
}

.auth-modal__title {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.auth-modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-modal__field label {
  font-size: var(--step--2);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.auth-modal__field input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: var(--step--1);
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.auth-modal__field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.auth-modal__footer {
  font-size: var(--step--2);
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

.auth-modal__footer a {
  color: var(--accent);
  font-weight: 500;
}


/* ----------------------------------------------------------------
   21. ML STAGES & INTENT CARDS
   ---------------------------------------------------------------- */
.ml-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.ml-stage {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.ml-stage:hover {
  border-color: rgba(124, 240, 255, 0.12);
  transform: translateY(-2px);
}

.ml-stage--active {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.feature-badge-preview {
  display: inline-block;
  padding: 4px 12px;
  font-size: var(--step--2);
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: var(--radius-pill);
}

.intent-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.intent-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
}


/* ----------------------------------------------------------------
   22. ANIMATIONS & REVEALS
   ---------------------------------------------------------------- */
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 60ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 120ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 180ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 240ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 300ms; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 360ms; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 420ms; }

/* Subtle entrance for hero */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title {
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero__subtitle {
  animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

.hero__ctas {
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero__media {
  animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.hero__stats {
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}


/* ----------------------------------------------------------------
   23. RESPONSIVE — 1024px
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --pad: 20px;
  }

  .section,
  .section-alt,
  .features,
  .problem-solution,
  .how-it-works,
  .comparison,
  .shop,
  .roadmap,
  .cta-section {
    padding: 80px 0;
  }

  .feature-split {
    gap: 48px;
    margin-top: 56px;
  }

  .how-it-works__steps,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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


/* ----------------------------------------------------------------
   24. RESPONSIVE — 768px
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  .section,
  .section-alt,
  .features,
  .problem-solution,
  .how-it-works,
  .comparison,
  .shop,
  .roadmap,
  .cta-section {
    padding: 64px 0;
  }

  .subhead {
    margin-bottom: 40px;
  }

  /* Nav — mobile overlay */
  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 10001;
  }

  .nav__menu {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #070b14 !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 10000 !important;
    padding: var(--pad);
  }

  .nav__menu.is-open {
    display: flex !important;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav__link {
    font-size: var(--step-1);
  }

  .nav__actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Hamburger animation when open */
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 48px;
  }

  .hero__stats {
    gap: 8px;
  }

  .stat {
    padding: 10px 20px;
  }

  /* Feature splits */
  .feature-split {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
  }

  .feature-split--reverse {
    direction: ltr;
  }

  .feature-split__media {
    order: -1;
  }

  /* Grid */
  .grid--2 {
    grid-template-columns: 1fr;
  }

  /* How it works */
  .how-it-works__steps,
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Problem cards */
  .problem-cards {
    grid-template-columns: 1fr;
  }

  /* Shop */
  .shop__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Footer */
  .site-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Trust bar */
  .proof-bar__inner,
  .trust-bar__inner {
    flex-direction: column;
    gap: 16px;
  }

  .proof-bar__divider,
  .trust-bar__divider {
    display: none;
  }

  /* Auth modal */
  .auth-modal {
    padding: 36px 24px;
  }

  /* CTA form */
  .demo-form {
    padding: 28px;
  }
}


/* ----------------------------------------------------------------
   25. RESPONSIVE — 480px
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --pad: 16px;
  }

  .section,
  .section-alt,
  .features,
  .problem-solution,
  .how-it-works,
  .comparison,
  .shop,
  .roadmap,
  .cta-section {
    padding: 48px 0;
  }

  .section-heading {
    font-size: var(--step-2);
  }

  .hero__title {
    font-size: var(--step-3);
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
  }

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

  .stat {
    flex-direction: row;
    justify-content: space-between;
    border-radius: var(--radius-sm);
  }

  .problem-card {
    padding: 24px;
  }

  .card {
    padding: 24px;
  }

  .how-it-works__step {
    padding: 24px;
  }

  .btn--lg {
    padding: 16px 28px;
    font-size: var(--step--1);
  }

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

  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .comparison__table {
    font-size: var(--step--2);
  }

  .comparison__table th,
  .comparison__table td {
    padding: 10px 12px;
  }

  .demo-form {
    padding: 24px 20px;
  }

  .roadmap__item {
    padding: 20px 20px 20px 44px;
  }
}


/* ----------------------------------------------------------------
   26. PREFERS REDUCED MOTION
   ---------------------------------------------------------------- */
@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal.is-visible {
    transition: none;
  }

  .hero__title,
  .hero__subtitle,
  .hero__ctas,
  .hero__media,
  .hero__stats {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* ----------------------------------------------------------------
   27. PRINT STYLES
   ---------------------------------------------------------------- */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    background: #fff !important;
    color: #000 !important;
  }

  .site-header,
  .nav,
  .cookie-banner,
  .auth-modal-overlay,
  .nav__toggle {
    display: none !important;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .section,
  .section-alt,
  .features,
  .problem-solution,
  .how-it-works,
  .comparison,
  .shop,
  .roadmap,
  .cta-section {
    padding: 24px 0;
  }

  .hero {
    min-height: auto;
    padding: 24px 0;
  }

  .hero::before {
    display: none;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: 400;
  }

  a[href^="#"]::after,
  a[href^="javascript"]::after {
    content: "";
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .comparison__table-wrap {
    overflow: visible;
  }

  .comparison__table {
    white-space: normal;
  }

  img {
    max-width: 100% !important;
  }

  .btn {
    border: 1px solid #000 !important;
    padding: 8px 16px;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  .card,
  .problem-card,
  .shop__card {
    border: 1px solid #ccc !important;
    page-break-inside: avoid;
  }
}


/* ----------------------------------------------------------------
   28. FOCUS VISIBLE
   ---------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Remove outline on non-keyboard focus */
:focus:not(:focus-visible) {
  outline: none;
}


/* ----------------------------------------------------------------
   29. SCROLLBAR
   ---------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 238, 252, 0.16);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--line) var(--bg);
}
