/* Aviation Aptitude — landing. Dark, premium, aviation-grade. */

:root {
  --bg: #070b14;
  --bg-2: #0b1120;
  --card: #101827;
  --card-2: #141d30;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f5f9;
  --text-2: #9aa5b8;
  --text-3: #5d6a80;
  --blue: #3478f6;
  --cyan: #17b0c9;
  --gold: #f6bf3a;
  --gold-2: #b8860b;
  --green: #34c077;
  --radius: 18px;
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Inter, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

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

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 11, 20, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.brand strong { font-weight: 800; }

.brand-logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 4px 14px rgba(52, 120, 246, 0.4);
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
}

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

.nav-cta-row {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-signin {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-2);
}

.nav-signin:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  padding: 11px 22px;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, var(--cyan));
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5); }

.btn-ghost {
  padding: 11px 22px;
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn-big { padding: 15px 30px; font-size: 15.5px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center 30% / cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.82) 0%, rgba(7, 11, 20, 0.6) 45%, var(--bg) 100%),
    radial-gradient(80% 60% at 30% 20%, rgba(37, 99, 235, 0.25), transparent 70%);
}

.hero-inner {
  position: relative;
  padding: 110px 0 90px;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(23, 176, 201, 0.12);
  border: 1px solid rgba(23, 176, 201, 0.35);
  padding: 7px 14px;
  border-radius: 999px;
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.hero h1 .accent {
  background: linear-gradient(90deg, #6ea8ff, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.hero-trust .icon { color: var(--green); }

/* ---------- Stats band ---------- */

.stats {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 0;
}

.stat {
  text-align: center;
  padding: 6px 12px;
}

.stat + .stat { border-left: 1px solid var(--line); }

.stat-value {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, #fff, #b9c8e6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-3);
  text-transform: uppercase;
}

/* ---------- Sections ---------- */

section { padding: 90px 0; }

.sec-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--cyan);
}

.sec-title {
  margin-top: 10px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
}

.sec-sub {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 620px;
}

.center { text-align: center; }
.center .sec-sub { margin-left: auto; margin-right: auto; }

/* ---------- Features ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.feature {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 120, 246, 0.45);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.15);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #7db2ff;
  background: rgba(52, 120, 246, 0.13);
}

.feature h3 { margin-top: 16px; font-size: 16.5px; font-weight: 700; }

.feature p { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: var(--text-2); }

/* ---------- Tracks ---------- */

.tracks { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.tracks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}

.track {
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.track:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45); }

.track-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.track-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--card) 100%);
}

.track-body { padding: 6px 26px 28px; flex: 1; display: flex; flex-direction: column; text-align: left; }

.track-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(23, 176, 201, 0.12);
  border: 1px solid rgba(23, 176, 201, 0.3);
}

.track h3 { margin-top: 14px; font-size: 23px; font-weight: 800; letter-spacing: -0.4px; }

.track p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--text-2); }

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }

.chip {
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text-2);
}

.chip-more { color: var(--cyan); border-color: rgba(23, 176, 201, 0.35); }

.track-cta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #7db2ff;
}

.track-cta:hover { color: #a8ccff; }

.track-soon {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: var(--text-2);
  font-size: 14px;
}

.track-soon .icon { color: var(--cyan); }

.track-soon strong { color: var(--text); }

.soon-badge {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(246, 191, 58, 0.12);
  border: 1px solid rgba(246, 191, 58, 0.35);
  white-space: nowrap;
}

/* ---------- Aviators ---------- */

.aviators-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.aviators-img {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

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

.avia-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }

.avia-point { display: flex; gap: 14px; align-items: flex-start; }

.avia-point .icon-wrap {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--green);
  background: rgba(52, 192, 119, 0.12);
  flex-shrink: 0;
}

.avia-point h4 { font-size: 15px; font-weight: 700; }

.avia-point p { margin-top: 3px; font-size: 13.5px; line-height: 1.55; color: var(--text-2); }

/* ---------- Steps ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  text-align: left;
}

.step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 1px;
}

.step h3 { margin-top: 10px; font-size: 17px; font-weight: 700; }

.step p { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: var(--text-2); }

/* ---------- Pricing ---------- */

.pricing { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.plan {
  padding: 30px 28px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.plan-name { font-size: 17px; font-weight: 800; }

.plan-price { margin-top: 14px; font-size: 40px; font-weight: 800; letter-spacing: -1px; }

.plan-price small { font-size: 13px; font-weight: 600; color: var(--text-3); letter-spacing: 0; }

.plan ul { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 11px; flex: 1; }

.plan li { display: flex; gap: 10px; align-items: center; font-size: 13.5px; color: var(--text-2); }

.plan li .icon { color: var(--green); }

.plan .btn { margin-top: 24px; width: 100%; }

.plan-pro {
  position: relative;
  background: linear-gradient(var(--card-2), var(--card-2)) padding-box,
    linear-gradient(135deg, rgba(246, 191, 58, 0.9), rgba(246, 144, 58, 0.35), rgba(246, 191, 58, 0.9)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 24px 60px rgba(246, 158, 58, 0.15);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 999px;
  color: #1a1204;
  background: linear-gradient(135deg, var(--gold), #ffd97a);
  box-shadow: 0 6px 16px rgba(246, 191, 58, 0.4);
  white-space: nowrap;
}

.plan-pro .plan-price { color: var(--gold); }

.price-note {
  margin-top: 22px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-3);
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 760px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 12px; }

details {
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  text-align: left;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 600;
  color: var(--text-3);
  transition: transform 0.2s ease;
}

details[open] summary::after { transform: rotate(45deg); }

details p { padding: 0 22px 20px; font-size: 14px; line-height: 1.65; color: var(--text-2); }

/* ---------- Final CTA ---------- */

.final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 110px 0;
}

.final-bg {
  position: absolute;
  inset: 0;
  background: url('images/cta.jpg') center / cover no-repeat;
  filter: grayscale(1);
  opacity: 0.35;
}

.final-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(7, 11, 20, 0.55) 45%, var(--bg) 100%);
}

.final-inner { position: relative; }

.final h2 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 800; letter-spacing: -1px; }

.final p { margin-top: 14px; font-size: 16px; color: var(--text-2); }

.final .btn { margin-top: 30px; }

/* ---------- Footer ---------- */

footer { border-top: 1px solid var(--line); padding: 44px 0 36px; background: var(--bg-2); }

.foot-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; }

.foot-brand p { margin-top: 10px; font-size: 12.5px; color: var(--text-3); max-width: 300px; line-height: 1.6; }

.foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }

.foot-col h5 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
}

.foot-col a { display: block; margin-top: 10px; font-size: 13.5px; font-weight: 600; color: var(--text-2); }

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

.foot-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-3);
}

/* ---------- Legal pages ---------- */

.legal { max-width: 760px; margin: 0 auto; padding: 70px 24px 90px; }

.legal h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.8px; }

.legal .updated { margin-top: 8px; font-size: 13px; color: var(--text-3); }

.legal h2 { margin-top: 36px; font-size: 20px; font-weight: 800; }

.legal p, .legal li { margin-top: 12px; font-size: 14.5px; line-height: 1.7; color: var(--text-2); }

.legal ul { padding-left: 22px; }

.legal a { color: #7db2ff; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .features-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .tracks-grid, .aviators-grid, .price-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .stat:nth-child(3) { border-left: none; }
  .aviators-grid { gap: 34px; }
}

@media (max-width: 560px) {
  .features-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 80px 0 70px; }
  section { padding: 64px 0; }
}


/* ---------- Module tutorial modal (ported from the app) ---------- */

.lm-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(2, 4, 10, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  /* App design tokens, dark-mapped for the landing theme. */
  --card: #f2f3f7;
  --fill-2: #e2e4ec;
  --fill-3: #cfd3de;
  --text: #16181d;
  --text-2: #5b6270;
  --text-3: #9aa1b0;
  --blue: #3478f6;
  --green: #34c077;
  --red: #eb4b3d;
  --orange: #f6903a;
}

.lm-overlay.is-open { display: grid; }

.lm-modal {
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fbfbfd;
  color: var(--text);
  border-radius: 22px;
  padding: 26px 24px 22px;
  position: relative;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: pop 0.2s ease;
}

.lm-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-2);
  background: var(--fill-2);
}

.lm-close:hover { background: var(--fill-3); }

.lm-mod-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent, var(--blue));
}

.lm-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.lm-cta:hover { text-decoration: underline; text-underline-offset: 3px; }

@keyframes pop {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes tut-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.75; }
}

.tut-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 180px;
  margin: 4px auto 0;
}

.tut-step-seg {
  display: flex;
  align-items: center;
  flex: 1;
}

.tut-step-seg:last-child {
  flex: 0;
}

.tut-dot {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  background: var(--fill-3);
  flex-shrink: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.tut-dot.is-done {
  background: var(--accent);
}

.tut-dot.is-current {
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}

.tut-line {
  height: 2px;
  flex: 1;
  background: var(--fill-3);
  transition: background 0.25s ease;
}

.tut-line.is-done {
  background: var(--accent);
}

.tut-mock-card {
  margin-top: 22px;
  padding: 28px 20px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  animation: pop 0.25s ease;
}

.tut-mock-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.tut-pulse {
  animation: tut-pulse 1.6s ease-in-out infinite;
}

.tut-headphones {
  font-size: 52px;
}

.tut-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.tut-digit-row {
  display: flex;
  gap: 8px;
}

.tut-digit {
  display: grid;
  place-items: center;
  width: 38px;
  height: 44px;
  border-radius: 9px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-3);
  background: var(--fill-2);
  border: 1.5px solid transparent;
}

.tut-digit.is-tail {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border-color: var(--accent);
}

.tut-caption {
  font-size: 12px;
  color: var(--text-2);
}

.tut-caption--dim {
  color: var(--text-3);
  font-size: 11px;
}

.tut-entry {
  width: 100%;
  padding: 14px 0;
  border-radius: 12px;
  font-size: 21px;
  font-weight: 600;
  background: var(--fill-2);
}

.tut-text {
  margin-top: 18px;
}

.tut-title {
  font-size: 19px;
  font-weight: 800;
}

.tut-desc {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
}

.tut-nav {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.tut-btn {
  flex: 1;
  height: 48px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
}

.tut-btn--back {
  color: var(--text-2);
  background: var(--fill-2);
}

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

/* Tutorial mock primitives (shared by all module walkthroughs) */

.tut-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tut-stretch {
  width: 100%;
}

.tut-cell {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 44px;
  padding: 0 10px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-2);
  background: var(--fill-2);
  border: 1.5px solid transparent;
}

.tut-cell.is-accent {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border-color: var(--accent);
}

.tut-cell.is-dashed {
  border: 1.5px dashed var(--accent);
  background: transparent;
  color: var(--accent);
}

.tut-big {
  font-size: 44px;
  font-weight: 800;
}

.tut-big.is-accent {
  color: var(--accent);
}

.tut-big-icon {
  font-size: 52px;
}

.tut-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--fill-2);
}

.tut-pair-sym {
  font-size: 24px;
}

.tut-pair-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
}

.tut-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fill-3);
}

.tut-progress-dot.is-accent {
  background: var(--accent);
}

.tut-badge {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 8px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}

.tut-timer {
  width: 100%;
  max-width: 240px;
  height: 8px;
  border-radius: 999px;
  background: var(--fill-2);
  overflow: hidden;
}

.tut-timer-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #eb4b3d, #f6903a, #34c077);
}

.tut-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--fill-2);
  font-size: 13.5px;
  font-weight: 600;
}

.tut-strike > span:first-child {
  text-decoration: line-through;
  color: var(--text-3);
}

.tut-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 999px;
}

.tut-tag--open {
  color: var(--green);
  background: rgba(52, 192, 119, 0.14);
}

.tut-tag--closed {
  color: var(--red);
  background: rgba(235, 75, 61, 0.14);
}

.tut-check {
  font-size: 18px;
  color: var(--text-3);
}

.tut-check.is-accent {
  color: var(--accent);
}

.tut-tri {
  font-size: 40px;
  line-height: 1;
}

.tut-dial {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--text-3);
  background: var(--card);
}

.tut-dial::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2.5px;
  height: 15px;
  border-radius: 2px;
  background: var(--text-2);
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(55deg);
}

.tut-dial--dark {
  background: #1c1c1e;
  border-color: #1c1c1e;
}

.tut-dial--dark::after {
  background: #fff;
}

.tut-dot-cloud {
  position: relative;
  width: 84px;
  height: 44px;
}

.tut-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
}

.tut-dot-s {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.tut-group {
  display: flex;
  gap: 5px;
  padding: 9px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.tut-face {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  font-size: 26px;
  font-weight: 800;
  color: var(--red);
  background: var(--fill-2);
  border: 2px solid var(--text-3);
}

.tut-face--sm {
  width: 48px;
  height: 48px;
  font-size: 16px;
  color: var(--text-2);
}

.tut-face--sm.is-accent {
  color: var(--accent);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.tut-net {
  display: grid;
  grid-template-columns: repeat(4, 34px);
  gap: 4px;
}

.tut-net-cell {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

.tut-net-cell.is-empty {
  visibility: hidden;
}

.tut-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 30px);
  gap: 3px;
}

.tut-mini-cell {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  font-size: 13px;
  color: var(--accent);
  background: var(--fill-2);
}

.tut-shape {
  width: 64px;
  height: 64px;
  border-radius: 14px;
}

.tut-shape--outline {
  border: 3px dashed var(--text-3);
}

.tut-shape--filled {
  background: var(--accent);
}

.tut-shape--circle {
  border-radius: 50%;
}

/* Extra tutorial primitives for the ATC walkthroughs */

.tut-dashline {
  flex: 1;
  min-width: 44px;
  border-top: 2.5px dashed var(--text-3);
}

.tut-dashline--amber {
  border-top-color: var(--orange);
}

.tut-ring {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--green);
}

.tut-ring-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
}

.tut-mini-cell.is-alert {
  color: var(--red);
  background: rgba(235, 75, 61, 0.14);
  font-weight: 800;
}

.tut-textline {
  height: 9px;
  width: 100%;
  border-radius: 5px;
  background: var(--fill-3);
}

.tut-textline.is-accent {
  background: color-mix(in srgb, var(--accent) 45%, transparent);
}

.tut-mock-col .tut-textline + .tut-textline {
  margin-top: 8px;
}

.tut-cell.is-good {
  color: var(--green);
  background: rgba(52, 192, 119, 0.12);
  border-color: var(--green);
}

.tut-cell.is-bad {
  color: var(--red);
  background: rgba(235, 75, 61, 0.12);
  border-color: var(--red);
}

button.chip {
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

button.chip:hover {
  color: var(--text);
  border-color: rgba(52, 120, 246, 0.55);
  background: rgba(52, 120, 246, 0.12);
}

/* Button reset inside the tutorial modal (the app has a global reset; the
   landing needs it scoped here so browser default borders never leak in). */

.lm-modal button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}

.lm-modal {
  -webkit-font-smoothing: antialiased;
}

.lm-modal .tut-btn {
  font-size: 15px;
}

.lm-modal .tut-mock-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.lm-mod-name {
  margin-bottom: 14px;
}

.lm-modal .tut-steps {
  margin-top: 0;
}

.lm-modal .tut-dot {
  width: 22px;
  height: 22px;
  line-height: 1;
}

button.chip.is-watched {
  color: var(--green);
  border-color: rgba(52, 192, 119, 0.45);
  background: rgba(52, 192, 119, 0.08);
}

button.chip.is-watched::before {
  content: '✓ ';
  font-weight: 800;
}

/* ---------- Guide ---------- */

.g-index { padding: 70px 0 90px; }

.g-index-head {
  max-width: none;
  margin-bottom: 40px;
  text-align: center;
}

.g-index-head .sec-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

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

.g-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.g-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 120, 246, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.g-card-img {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.g-card-body { padding: 18px 18px 20px; }

.g-card-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-3);
}

.g-card-body h3 { margin-top: 8px; font-size: 16.5px; font-weight: 800; line-height: 1.3; }

.g-card-body p { margin-top: 8px; font-size: 13px; line-height: 1.55; color: var(--text-2); }

.g-article-hero {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.g-article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,11,20,0.35) 0%, var(--bg) 100%);
}

.g-article-wrap {
  max-width: 720px;
  margin: -80px auto 0;
  padding: 0 24px 90px;
  position: relative;
}

.g-crumbs { font-size: 12.5px; font-weight: 600; color: var(--text-3); }

.g-crumbs a { color: var(--text-2); }

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

.g-article h1 {
  margin-top: 12px;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
}

.g-meta {
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-3);
}

.g-body { margin-top: 30px; }

.g-body p { margin-top: 18px; font-size: 16px; line-height: 1.75; color: #c6cddb; }

.g-body h2 {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.g-body h3 { margin-top: 30px; font-size: 18.5px; font-weight: 700; }

.g-body a { color: #7db2ff; text-decoration: underline; text-underline-offset: 3px; }

.g-body a:hover { color: #a8ccff; }

.g-body ul, .g-body ol { margin-top: 18px; padding-left: 24px; }

.g-body li { margin-top: 8px; font-size: 15.5px; line-height: 1.65; color: #c6cddb; }

.g-body blockquote {
  margin-top: 22px;
  padding: 16px 22px;
  border-left: 3px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  background: var(--card);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  font-style: italic;
}

.g-body hr { margin-top: 30px; border: none; border-top: 1px solid var(--line); }

.g-body code {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 14px;
  padding: 2px 7px;
  border-radius: 6px;
  background: var(--card);
  border: 1px solid var(--line);
}

.g-figure { margin-top: 26px; }

.g-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.g-figure figcaption {
  margin-top: 9px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-3);
}

.g-video {
  margin-top: 26px;
  position: relative;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.g-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.g-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 24px 26px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.16), rgba(23, 176, 201, 0.14));
  border: 1px solid rgba(52, 120, 246, 0.35);
}

.g-cta-title { font-size: 17px; font-weight: 800; }

.g-cta-text { margin-top: 4px; font-size: 13.5px; color: var(--text-2); }

.g-related { margin-top: 54px; }

.g-related-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.g-grid--mini .g-card-img { height: 110px; }

.g-grid--mini h3 { font-size: 14px; }

@media (max-width: 900px) {
  .g-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .g-grid { grid-template-columns: 1fr; }
  .g-article-hero { height: 220px; }
}

/* ---------- Guide polish: premium reading + featured card ---------- */

.g-card--feat {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: 300px;
}

.g-card--feat .g-card-img {
  flex: 1.2;
  height: auto;
  min-height: 300px;
}

.g-card--feat .g-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 32px;
}

.g-card--feat h3 { font-size: 26px; letter-spacing: -0.5px; }

.g-card--feat p { font-size: 14.5px; margin-top: 12px; }

.g-card-more {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #7db2ff;
}

.g-card--feat .g-card-more { margin-top: 20px; }

.g-body > p:first-child {
  font-size: 18px;
  line-height: 1.7;
  color: #dde3ee;
}

.g-article-wrap { max-width: 740px; }

.g-body img { max-width: 100%; }

@media (max-width: 760px) {
  .g-card--feat { flex-direction: column; }
  .g-card--feat .g-card-img { min-height: 200px; }
}

.foot-mail {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.foot-mail:hover { color: var(--text); }

/* ---------- Light mode ---------- */

.theme-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-2);
  cursor: pointer;
}

.theme-btn:hover { color: var(--text); background: rgba(255, 255, 255, 0.12); }

html[data-theme='dark'] .tb-moon { display: none; }
html[data-theme='light'] .tb-sun { display: none; }

html[data-theme='light'] {
  --bg: #f5f6fa;
  --bg-2: #ecEEf5;
  --card: #ffffff;
  --card-2: #f8f9fc;
  --line: rgba(15, 23, 42, 0.09);
  --text: #101623;
  --text-2: #4c5568;
  --text-3: #8a93a6;
}

html[data-theme='light'] body { background: var(--bg); }

html[data-theme='light'] .nav {
  background: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

html[data-theme='light'] .theme-btn {
  background: rgba(15, 23, 42, 0.05);
}

html[data-theme='light'] .theme-btn:hover { background: rgba(15, 23, 42, 0.1); }

/* Image-backed sections keep light text in both themes. */
.hero-inner, .hero-inner .hero-sub { color: #f3f5f9; }
.hero-sub { color: rgba(235, 240, 250, 0.82) !important; }
.final-inner h2, .final-inner p { color: #f3f5f9; }
.final-inner p { color: rgba(235, 240, 250, 0.8); }

/* Light mode: hold a solid dark scrim under the image-backed text zones so
   white copy and ghost buttons keep their contrast all the way down. */
html[data-theme='light'] .hero-bg::after {
  background:
    linear-gradient(180deg, rgba(16, 22, 35, 0.88) 0%, rgba(16, 22, 35, 0.78) 62%, rgba(16, 22, 35, 0.55) 86%, var(--bg) 100%),
    radial-gradient(80% 60% at 30% 20%, rgba(37, 99, 235, 0.25), transparent 70%);
}

html[data-theme='light'] .final-bg::after {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(16, 22, 35, 0.85) 22%, rgba(16, 22, 35, 0.85) 78%, var(--bg) 100%);
}

html[data-theme='light'] .final-bg { opacity: 0.5; }

html[data-theme='light'] .stat-value {
  background: linear-gradient(90deg, #17203a, #3d4f78);
  -webkit-background-clip: text;
  background-clip: text;
}

html[data-theme='light'] .chip {
  background: rgba(15, 23, 42, 0.05);
  color: var(--text-2);
}

html[data-theme='light'] .btn-ghost {
  color: #f3f5f9;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

html[data-theme='light'] .track-soon { border-color: rgba(15, 23, 42, 0.2); }

html[data-theme='light'] .g-card:hover { box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14); }

html[data-theme='light'] .track:hover { box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16); }

html[data-theme='light'] .aviators-img { box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2); }

html[data-theme='light'] .g-body p,
html[data-theme='light'] .g-body li { color: #3d4757; }

html[data-theme='light'] .g-body > p:first-child { color: #232c3d; }

html[data-theme='light'] .feature-icon { color: var(--blue); }

html[data-theme='light'] .g-card-more,
html[data-theme='light'] .track-cta { color: var(--blue); }

html[data-theme='light'] .g-body a { color: #2563eb; }

html[data-theme='light'] .hero-eyebrow {
  background: rgba(23, 176, 201, 0.14);
  color: #0d7f92;
  border-color: rgba(13, 127, 146, 0.4);
}

.hero-trust { color: rgba(235, 240, 250, 0.85); }

/* ---------- Light mode: premium polish pass ---------- */

html[data-theme='light'] {
  --bg: #fafbfd;
  --bg-2: #f3f5f9;
  --card: #ffffff;
  --card-2: #ffffff;
  --line: rgba(15, 23, 42, 0.07);
  --text: #0b1220;
  --text-2: #475066;
  --text-3: #949cae;
}

/* Cards: drop the flat look — layered soft shadows, barely-there borders. */
html[data-theme='light'] .feature,
html[data-theme='light'] .step,
html[data-theme='light'] .g-card,
html[data-theme='light'] .track,
html[data-theme='light'] .plan,
html[data-theme='light'] details {
  border-color: rgba(15, 23, 42, 0.05);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 28px rgba(15, 23, 42, 0.05);
}

html[data-theme='light'] .feature:hover {
  border-color: rgba(52, 120, 246, 0.35);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.05),
    0 18px 44px rgba(37, 99, 235, 0.13);
}

html[data-theme='light'] .g-card:hover,
html[data-theme='light'] .track:hover {
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.05),
    0 22px 52px rgba(15, 23, 42, 0.13);
}

/* Feature icons: soft blue tile with real presence. */
html[data-theme='light'] .feature-icon {
  color: #2563eb;
  background: linear-gradient(135deg, rgba(52, 120, 246, 0.12), rgba(23, 176, 201, 0.12));
  border: 1px solid rgba(52, 120, 246, 0.18);
}

/* Nav: crisp white glass with a hairline shadow instead of a hard border. */
html[data-theme='light'] .nav {
  background: rgba(255, 255, 255, 0.85);
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.04);
}

/* Stats band: clean white strip with strong ink numerals. */
html[data-theme='light'] .stats {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.06);
}

html[data-theme='light'] .stat + .stat { border-left-color: rgba(15, 23, 42, 0.07); }

html[data-theme='light'] .stat-value {
  background: linear-gradient(90deg, #0b1220, #2f4160);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Sections: subtle alternation so the page has rhythm, not one flat sheet. */
html[data-theme='light'] .tracks,
html[data-theme='light'] .pricing {
  background: var(--bg-2);
  border-color: rgba(15, 23, 42, 0.06);
}

/* Pricing pro card keeps its gold frame glow but softer in light. */
html[data-theme='light'] .plan-pro {
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.05),
    0 24px 56px rgba(246, 158, 58, 0.22);
}

/* Chips read as quiet tags, watched state stays green. */
html[data-theme='light'] .chip {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.08);
}

html[data-theme='light'] button.chip:hover {
  background: rgba(52, 120, 246, 0.1);
  border-color: rgba(52, 120, 246, 0.45);
  color: #1d4ed8;
}

/* FAQ */
html[data-theme='light'] summary::after { color: #b6bdcc; }

/* Footer: light paper with a clear separation from the CTA band. */
html[data-theme='light'] footer {
  background: #ffffff;
  border-top-color: rgba(15, 23, 42, 0.07);
}

/* Guide article page */
html[data-theme='light'] .g-article-hero::after {
  background: linear-gradient(180deg, rgba(250, 251, 253, 0.05) 0%, var(--bg) 100%);
}

html[data-theme='light'] .g-body blockquote {
  background: #ffffff;
  border-left-color: #17b0c9;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 22px rgba(15, 23, 42, 0.05);
}

html[data-theme='light'] .g-figure img { border-color: rgba(15, 23, 42, 0.08); }

html[data-theme='light'] .g-cta {
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.08), rgba(23, 176, 201, 0.08));
  border-color: rgba(37, 99, 235, 0.22);
}

/* Track "coming soon" strip */
html[data-theme='light'] .track-soon {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.15);
}

/* Theme button */
html[data-theme='light'] .theme-btn {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

/* ---------- Guide search ---------- */

.g-search {
  position: relative;
  margin-top: 30px;
  max-width: none;
}

.g-search input { padding: 19px 24px 19px 54px; font-size: 16px; }

.g-search svg { left: 22px; }

.g-search-meta {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-3);
}

.g-search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}

.g-search input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.g-search input::placeholder { color: var(--text-3); }

.g-search input:focus {
  border-color: rgba(52, 120, 246, 0.6);
  box-shadow: 0 0 0 4px rgba(52, 120, 246, 0.15);
}

html[data-theme='light'] .g-search input {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 22px rgba(15, 23, 42, 0.05);
}

html[data-theme='light'] .g-search input:focus {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 0 0 4px rgba(52, 120, 246, 0.14);
}

.g-noresults {
  margin-top: 30px;
  padding: 36px 24px;
  text-align: center;
  border-radius: 16px;
  border: 1px dashed var(--line);
  color: var(--text-2);
  font-size: 14.5px;
}

.g-noresults a { color: #7db2ff; }

/* Guide search: full-width sizing (cascade-final overrides) */
.g-search input { padding: 19px 24px 19px 54px; font-size: 16px; }
.g-search svg { left: 22px; }
