/* ═══════════════════════════════════════════
   GuardianLoop — Digital Fortress Theme
   ═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg-deep: #04070e;
  --bg-primary: #080d1a;
  --bg-elevated: #0f1628;
  --bg-card: #111c32;
  --bg-card-hover: #162240;
  --accent: #00c8ff;
  --accent-dim: #0090b8;
  --accent-green: #00e68a;
  --accent-glow: rgba(0, 200, 255, 0.08);
  --accent-glow-strong: rgba(0, 200, 255, 0.18);
  --text-bright: #f0f4fc;
  --text-primary: #c0c8d8;
  --text-secondary: #687890;
  --text-muted: #3a4558;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 200, 255, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1140px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-bright); line-height: 1.2; font-weight: 700; }

/* ── UTILITIES ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.mono { font-family: var(--font-mono); letter-spacing: 0.04em; font-size: 0.82em; }
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--sm { padding: 0.5rem 1.15rem; font-size: 0.82rem; }
.btn--full { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), #009dd4);
  color: var(--bg-deep);
  box-shadow: 0 0 0 1px rgba(0,200,255,0.2);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(0,200,255,0.25), 0 0 0 1px rgba(0,200,255,0.3);
}
.btn--glow { box-shadow: 0 0 20px rgba(0,200,255,0.15), 0 0 0 1px rgba(0,200,255,0.2); }
.btn--glow:hover { box-shadow: 0 0 32px rgba(0,200,255,0.3), 0 0 0 1px rgba(0,200,255,0.4); }
.btn--ghost {
  color: var(--text-primary);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.btn--ghost:hover { border-color: var(--border-accent); color: var(--text-bright); background: rgba(0,200,255,0.04); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar--scrolled {
  background: rgba(4, 7, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding: 0.65rem 0;
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; }
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-bright);
}
.navbar__logo svg { flex-shrink: 0; }
.navbar__links { display: flex; align-items: center; gap: 2rem; }
.navbar__links a { font-size: 0.88rem; color: var(--text-secondary); transition: var(--transition); font-weight: 500; }
.navbar__links a:hover { color: var(--text-bright); }
.navbar__links .btn { color: var(--bg-deep); }
.navbar__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.navbar__toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100dvh;
    background: var(--bg-elevated);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.25rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 32px rgba(0,0,0,0.5);
  }
  .navbar__links.open { right: 0; }
  .navbar__links a { font-size: 1rem; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  animation: gridPulse 8s ease-in-out infinite;
}
.hero__scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0.6;
  animation: scanLine 6s linear infinite;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,200,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes scanLine {
  0% { top: -2%; opacity: 0; }
  5% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { top: 102%; opacity: 0; }
}

.hero__content { position: relative; z-index: 2; text-align: center; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
  background: rgba(0,200,255,0.04);
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,230,138,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0,230,138,0); }
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
}
.hero__stat {
  flex: 1;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-bright);
  display: block;
  margin-bottom: 0.25rem;
}
.hero__stat-plus { color: var(--accent); }
.hero__stat-label { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.4; }
.hero__stat-divider { width: 1px; background: var(--border); }

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; max-width: 300px; }
  .hero__stat-divider { width: 100%; height: 1px; }
}

/* ── PROBLEM / TERMINAL ── */
.problem { padding: 6rem 0; }
.terminal {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.terminal__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.terminal__dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal__dot--red { background: #ff5f57; }
.terminal__dot--yellow { background: #febc2e; }
.terminal__dot--green { background: #28c840; }
.terminal__title { margin-left: 0.75rem; color: var(--text-muted); font-size: 0.72rem; }
.terminal__body { padding: 1.5rem; font-size: 0.82rem; line-height: 1.8; }
.terminal__line { margin-bottom: 0.15rem; }
.terminal__line--blank { height: 0.6rem; }
.terminal__line--warn { color: #febc2e; font-weight: 500; }
.terminal__line--success { color: var(--accent-green); font-weight: 500; }
.terminal__prompt { color: var(--accent); margin-right: 0.5rem; }
.terminal__dim { color: var(--text-muted); }
.terminal__accent { color: var(--accent); font-weight: 500; }

.problem__text { text-align: center; max-width: 640px; margin: 0 auto; }
.problem__text h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 1rem; }
.problem__text p { color: var(--text-secondary); font-size: 1.05rem; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; flex-wrap: wrap; }
.step {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.step:hover { background: rgba(0,200,255,0.03); }
.step__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(0,200,255,0.08);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
  margin-bottom: 1.25rem;
}
.step__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(0,200,255,0.06);
  border: 1px solid var(--border-accent);
  color: var(--accent);
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.step p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }
.step__connector {
  display: flex;
  align-items: center;
  padding-top: 5.5rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .steps { flex-direction: column; align-items: center; }
  .step__connector { padding-top: 0; transform: rotate(90deg); }
}

/* ── FEATURES ── */
.features { padding: 6rem 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 0 1px var(--border-accent);
}
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(0,200,255,0.06);
  border: 1px solid rgba(0,200,255,0.1);
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; font-weight: 600; }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

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

/* ── COMPARISON TABLE ── */
.comparison {
  padding: 6rem 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.comparison__table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 680px;
  font-size: 0.88rem;
}
.comparison__table th,
.comparison__table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison__table th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-elevated);
  position: sticky;
  top: 0;
}
.comparison__table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison__table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.comparison__table tbody tr { transition: var(--transition); }
.comparison__table tbody tr:hover { background: rgba(0,200,255,0.02); }
.comparison__feature { color: var(--text-bright); font-weight: 500; white-space: nowrap; }
.comparison__bad { color: #f87171; }
.comparison__neutral { color: #fbbf24; }
.comparison__good { color: var(--accent-green); font-weight: 500; }
.comparison__highlight {
  background: rgba(0,200,255,0.04);
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
}
th.comparison__highlight {
  color: var(--accent);
  background: rgba(0,200,255,0.08);
}

/* ── FAQ ── */
.faq { padding: 6rem 0; }
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq__item:hover { border-color: var(--border-accent); }
.faq__item.active { border-color: var(--border-accent); background: rgba(0,200,255,0.02); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-bright);
  transition: var(--transition);
}
.faq__question:hover { color: var(--accent); }
.faq__icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.faq__item.active .faq__icon { transform: rotate(45deg); color: var(--accent); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq__item.active .faq__answer {
  max-height: 300px;
}
.faq__answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── CONTACT / FORM ── */
.contact { padding: 6rem 0; }
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-green));
}
.contact__info h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.contact__info > p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 0.95rem; }
.contact__perks { display: flex; flex-direction: column; gap: 0.75rem; }
.contact__perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.contact__perks svg { flex-shrink: 0; }

.contact__form { display: flex; flex-direction: column; gap: 1rem; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__group label { font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); }
.form__group input,
.form__group select {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-bright);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form__group input::placeholder { color: var(--text-muted); }
.form__group input:focus,
.form__group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,200,255,0.08);
}
.form__group input.error { border-color: #f87171; }
.form__group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23687890' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__radio-group { display: flex; gap: 1rem; padding-top: 0.35rem; }
.form__radio {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.form__radio input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}
.form__note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 0.25rem; }
.form__message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.5;
}
.form__message--error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
}
.form__message--duplicate {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #fbbf24;
}

.btn__loader { animation: spin 0.8s linear infinite; display: inline-flex; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact__success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
}
.success__icon { margin: 0 auto 1.5rem; animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.contact__success h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--accent-green); }
.contact__success p { color: var(--text-secondary); max-width: 460px; margin: 0 auto; }

@media (max-width: 768px) {
  .contact__wrapper { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .form__row { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer__brand p { color: var(--text-secondary); font-size: 0.88rem; margin-top: 0.75rem; max-width: 280px; }
.footer__col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); margin-bottom: 1rem; font-weight: 600; }
.footer__col a { display: block; font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0.6rem; transition: var(--transition); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

/* ── ACCESSIBILITY ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

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

/* ── SELECTION ── */
::selection { background: rgba(0,200,255,0.2); color: var(--text-bright); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
