:root {
  color-scheme: dark;
  --bg: #070b14;
  --bg-2: #0b1220;
  --panel: #101827;
  --panel-2: #172235;
  --text: #f8fbff;
  --muted: #bec9d8;
  --soft: #8390a4;
  --line: rgba(255, 255, 255, .12);
  --brand: #3b82f6;
  --brand-2: #8fd0ff;
  --gold: #f2b84b;
  --danger: #ff796f;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(59, 130, 246, .18), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(242, 184, 75, .13), transparent 28rem),
    linear-gradient(180deg, #070b14 0%, #0b1220 48%, #070b14 100%);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }

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

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

p { color: var(--muted); margin: 0 0 1rem; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.45rem, 6vw, 5.3rem); max-width: 11ch; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); }
h4 { font-size: 1rem; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--brand);
  color: #041020;
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus { top: 1rem; }

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 20, .82);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #041020;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  box-shadow: 0 12px 24px rgba(59, 130, 246, .22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}

.nav-links a {
  padding: .65rem .75rem;
  border-radius: 6px;
}

.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, .07);
  outline: 0;
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 6px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 46px;
  padding: .78rem 1.05rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1.1;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-1px); }

.button.primary {
  background: linear-gradient(135deg, var(--brand), #78b7ff);
  color: #041020;
  box-shadow: 0 18px 45px rgba(59, 130, 246, .24);
}

.button.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, .06);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section.tight { padding: 3.8rem 0; }

.eyebrow {
  color: var(--brand-2);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .12em;
  font-weight: 900;
  margin-bottom: .8rem;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 20, .97) 0%, rgba(7, 11, 20, .82) 38%, rgba(7, 11, 20, .18) 74%, rgba(7, 11, 20, .54) 100%),
    linear-gradient(180deg, rgba(7, 11, 20, .15), rgba(7, 11, 20, .72));
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.hero-copy { max-width: 680px; }

.hero-copy p {
  max-width: 660px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #dce8f8;
  margin: 1.3rem 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.6rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  width: min(760px, 100%);
  margin-top: 1.25rem;
}

.hero-proof span {
  padding: .9rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(7, 11, 20, .56);
  backdrop-filter: blur(16px);
  color: #b8c6d8;
  font-size: .84rem;
  line-height: 1.45;
}

.hero-proof strong {
  display: block;
  color: #f8fbff;
  font-size: .92rem;
  margin-bottom: .2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 34px;
  padding: .35rem .7rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .07);
  border-radius: 999px;
  color: #dce8f8;
  font-size: .88rem;
  font-weight: 750;
}

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}

.copy-card {
  padding: 1.4rem;
}

.copy-card ul, .feature-list, .check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.copy-card li, .feature-list li, .check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  margin: .5rem 0;
}

.copy-card li::before, .feature-list li::before, .check-list li::before {
  content: "";
  width: .46rem;
  height: .46rem;
  position: absolute;
  left: 0;
  top: .62rem;
  border-radius: 50%;
  background: var(--brand);
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.plan {
  position: relative;
  padding: 1.35rem;
}

.plan.featured {
  border-color: rgba(245, 190, 88, .55);
  background: linear-gradient(180deg, rgba(245, 190, 88, .12), rgba(59, 130, 246, .08));
}

.badge {
  display: inline-flex;
  padding: .26rem .5rem;
  border-radius: 999px;
  background: rgba(245, 190, 88, .15);
  color: #ffe2a4;
  font-size: .75rem;
  font-weight: 900;
  border: 1px solid rgba(245, 190, 88, .28);
}

.price {
  font-size: 2.75rem;
  line-height: 1;
  margin: 1rem 0 .35rem;
  font-weight: 950;
}

.plan small { color: var(--soft); }
.plan .button { width: 100%; margin-top: 1.1rem; }

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  padding: 1.35rem;
  counter-increment: step;
}

.step::before {
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 6px;
  background: rgba(59, 130, 246, .16);
  color: var(--brand-2);
  font-weight: 950;
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison.compact table {
  min-width: 0;
}

.comparison.compact th,
.comparison.compact td {
  padding: .85rem;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(255,255,255,.035);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

th {
  color: var(--text);
  background: rgba(255,255,255,.055);
}

.faq-list {
  display: grid;
  gap: .75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  padding: 1rem 1.1rem;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1.1rem 1rem;
}

.faq-item[open] .faq-answer { display: block; }

.cta-band {
  background: linear-gradient(135deg, rgba(59, 130, 246, .15), rgba(245, 190, 88, .13));
  border-block: 1px solid var(--line);
}

.cta-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(59, 130, 246, .07), transparent 13rem),
    #050812;
}

.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.6rem 0 2.4rem;
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.footer .brand {
  display: inline-flex;
  margin: 0 0 1rem;
  color: var(--text);
}

.footer p {
  max-width: 360px;
  color: #aebbd0;
  font-size: .95rem;
}

.footer h4 {
  color: #f7fbff;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.footer a {
  display: block;
  color: var(--muted);
  width: fit-content;
  margin: .48rem 0;
  font-size: .95rem;
  line-height: 1.35;
}

.footer a:not(.brand):hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: .2em;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.15rem 0 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: var(--soft);
  font-size: .86rem;
  line-height: 1.65;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #070b14;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 20, .97), rgba(7, 11, 20, .78) 46%, rgba(7, 11, 20, .28) 100%),
    linear-gradient(180deg, rgba(7, 11, 20, .12), rgba(7, 11, 20, .76));
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .82;
}

.page-hero .section {
  position: relative;
  z-index: 1;
  padding: 5.6rem 0;
}

.page-hero .section::before {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-2), var(--gold));
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 5.5vw, 4.6rem);
}

.page-hero p {
  max-width: 650px;
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  color: #dbe6f3;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.35rem;
}

.article { max-width: 860px; }
.article h2 { margin-top: 2.4rem; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.article h3 { margin-top: 1.7rem; }
.article ul, .article ol { color: var(--muted); }

.code-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.code-card {
  padding: 1.2rem;
}

.code-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  margin: 1rem 0;
  padding: .8rem .9rem;
  border-radius: 6px;
  background: rgba(59, 130, 246, .13);
  border: 1px solid rgba(143, 208, 255, .25);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 950;
  color: var(--text);
}

.copy-code {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .45rem .65rem;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
}

.note {
  border-left: 4px solid var(--gold);
  background: rgba(242, 184, 75, .09);
  padding: 1rem 1.1rem;
  border-radius: 0 8px 8px 0;
}

.contact-panel {
  padding: 1.5rem;
}

.field {
  display: grid;
  gap: .4rem;
  margin-bottom: .85rem;
}

.field label {
  font-weight: 800;
  color: #dce8f8;
}

.field input, .field textarea, .field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: .8rem .9rem;
  font: inherit;
}

.field textarea { min-height: 130px; resize: vertical; }

.guide-page {
  background: #070b14;
}

.guide-page .topbar {
  background: rgba(5, 8, 18, .94);
}

.guide-page .nav {
  min-height: 58px;
}

.guide-page .brand {
  font-size: .9rem;
}

.guide-page .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  font-size: .72rem;
}

.guide-page .nav-links {
  font-size: .78rem;
}

.guide-page .button {
  min-height: 36px;
  padding: .58rem .85rem;
  font-size: .84rem;
}

.guide-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(90deg, rgba(7, 11, 20, .97), rgba(7, 11, 20, .74)),
    url("/assets/hero-support-guides.png") center / cover no-repeat,
    #070b14;
}

.guide-hero.premium-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 11, 20, .96), rgba(7, 11, 20, .72)),
    radial-gradient(circle at 78% 18%, rgba(59, 130, 246, .28), transparent 25rem),
    radial-gradient(circle at 40% 80%, rgba(242, 184, 75, .16), transparent 20rem),
    #070b14;
}

.guide-hero.premium-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 208, 255, .65), transparent);
}

.guide-shell {
  width: min(940px, calc(100% - 2rem));
  margin: 0 auto;
}

.guide-hero .guide-shell {
  padding: 3.2rem 0 3.7rem;
}

.guide-hero.install .guide-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.premium-hero-grid {
  width: min(var(--max), calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .76fr);
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: center;
}

.guide-hero h1 {
  max-width: 820px;
  font-size: clamp(2.05rem, 5vw, 3.25rem);
}

.guide-hero p {
  max-width: 720px;
  margin-top: 1rem;
  color: #c9d3e2;
}

.guide-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.guide-trust {
  margin-top: 1.1rem;
}

.hero-advisor-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: #101827;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
}

.hero-advisor-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: .86;
}

.advisor-panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  background: rgba(7, 11, 20, .84);
  backdrop-filter: blur(18px);
}

.advisor-label {
  display: block;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}

.advisor-panel strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.15;
}

.advisor-panel p {
  margin: .45rem 0 0;
  color: #dbe7f4;
  font-size: .9rem;
}

.hero-media-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  background: #111a2a;
  box-shadow: 0 30px 85px rgba(0, 0, 0, .38);
}

.hero-media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.guide-main {
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 35rem),
    #070b14;
}

.guide-section {
  width: min(940px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.guide-section.narrow {
  width: min(720px, calc(100% - 2rem));
}

.guide-section h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin-bottom: .65rem;
}

.guide-section p {
  font-size: .98rem;
  line-height: 1.75;
}

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

.guide-kicker {
  color: var(--gold);
  font-size: .83rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .55rem;
}

.guide-table {
  margin-top: 1.45rem;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: #101827;
}

.choice-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1.4rem;
}

.choice-strip article {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(23, 34, 53, .95), rgba(12, 19, 33, .95));
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.choice-strip span {
  display: block;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .42rem;
}

.choice-strip strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
}

.choice-strip p {
  margin: .45rem 0 0;
  font-size: .88rem;
  color: #bfccdc;
}

.guide-table table {
  min-width: 690px;
  background: transparent;
}

.guide-table th {
  background: #1a2230;
  color: #f8fbff;
  font-size: .83rem;
}

.guide-table td {
  color: #c7d1df;
  font-size: .88rem;
}

.guide-table td:first-child {
  color: #f5f8ff;
  font-weight: 850;
}

.accent-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem 1.2rem;
  margin-top: 1.4rem;
}

.accent-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .55rem;
  align-items: start;
  color: #d8e1ee;
  font-weight: 750;
  font-size: .9rem;
}

.accent-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: .45rem;
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 184, 75, .12);
}

.app-stack {
  display: grid;
  gap: 1rem;
}

.app-detail {
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #111a2a, #0e1625);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .23);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.app-detail:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 208, 255, .32);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .32);
}

.app-detail h3 {
  margin-bottom: .55rem;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.detail-columns h4 {
  color: var(--gold);
  font-size: .78rem;
  text-transform: uppercase;
  margin-bottom: .45rem;
}

.detail-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-columns li {
  color: #c3cfdd;
  font-size: .86rem;
  margin: .32rem 0;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1.2rem;
}

.solution-card {
  padding: 1rem;
  border-radius: 8px;
  background: #101827;
  border-left: 3px solid var(--gold);
}

.solution-card h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
}

.guide-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  background: rgba(242, 184, 75, .08);
  color: #d9e3ee;
}

.mini-code {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: .2rem .48rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, .13);
  color: #6ef2a0;
  font-size: .75rem;
  font-weight: 900;
}

.guide-cta-panel {
  padding: 1.35rem;
  border: 1px solid rgba(242, 184, 75, .42);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(242, 104, 45, .12), rgba(17, 26, 42, .92));
}

.guide-cta-panel h3 {
  margin-bottom: .45rem;
}

.guide-cta-panel .button {
  width: 100%;
  margin-top: .8rem;
  background: #ff7417;
  color: #120802;
}

.guide-faq {
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.4rem;
}

.guide-tags a {
  padding: .48rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: #111a2a;
  color: #d4dfed;
  font-size: .86rem;
  font-weight: 800;
}

.guide-tags a:hover {
  border-color: rgba(242, 184, 75, .45);
  color: #fff;
}

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(7, 11, 20, .98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav .button { display: none; }
  .section-head, .grid-2, .grid-3, .grid-4, .plans, .steps, .cta-inner, .footer-inner, .hero-proof {
    grid-template-columns: 1fr;
  }
  .footer-inner { gap: 1.35rem; }

  .code-grid { grid-template-columns: 1fr; }
  .accent-list, .detail-columns, .split-grid, .choice-strip { grid-template-columns: 1fr; }
  .premium-hero-grid { grid-template-columns: 1fr; }
  .guide-hero.install .guide-shell { grid-template-columns: 1fr; }
  .hero-advisor-card,
  .hero-advisor-card img {
    min-height: 340px;
  }

  .hero { min-height: auto; }
  .hero::after { background: linear-gradient(180deg, rgba(7, 11, 20, .9), rgba(7, 11, 20, .84)); }
  .hero-image { opacity: .5; object-position: 58% center; }
  .hero-inner { padding: 4.2rem 0; }
  .hero-proof { max-width: 520px; }
  .page-hero { min-height: 430px; }
  .page-hero::after { background: linear-gradient(180deg, rgba(7, 11, 20, .94), rgba(7, 11, 20, .82)); }
  .page-hero img { opacity: .5; object-position: 60% center; }
  h1 { max-width: 10ch; }
  .guide-page h1 { max-width: none; }
}

@media (max-width: 560px) {
  .section { padding: 4rem 0; }
  .hero-actions .button, .cta-inner .button { width: 100%; }
  .hero-copy p {
    font-size: 1rem;
  }
  .hero-proof {
    gap: .55rem;
  }
  .hero-proof span {
    padding: .78rem;
    font-size: .8rem;
  }
  .page-hero {
    min-height: 380px;
  }
  .page-hero .section {
    padding: 4rem 0;
  }
  .page-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }
  .trust-row { gap: .45rem; }
  .pill { font-size: .8rem; }
  .price { font-size: 2.35rem; }
  .comparison.compact th,
  .comparison.compact td {
    font-size: .88rem;
    padding: .7rem .55rem;
  }
  .comparison.compact .copy-code {
    min-height: 34px;
    padding: .35rem .5rem;
  }
  .guide-page .nav {
    min-height: 66px;
  }
  .guide-hero .guide-shell {
    padding: 2.6rem 0 3rem;
  }
  .guide-hero.install .guide-shell {
    padding: 2.6rem 0 3.2rem;
  }
  .premium-hero-grid {
    gap: 1.5rem;
  }
  .guide-hero-actions .button {
    width: 100%;
  }
  .hero-advisor-card,
  .hero-advisor-card img {
    min-height: 285px;
  }
  .advisor-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -4.8rem .75rem .75rem;
  }
  .hero-media-card img {
    height: 320px;
    aspect-ratio: auto;
    object-position: center;
  }
  .guide-section {
    padding: 3.2rem 0;
  }
  .guide-table table {
    min-width: 0;
  }
  .guide-table thead {
    display: none;
  }
  .guide-table tbody,
  .guide-table tr,
  .guide-table td {
    display: block;
  }
  .guide-table tr {
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
  }
  .guide-table td {
    display: grid;
    grid-template-columns: minmax(120px, .75fr) 1fr;
    gap: .85rem;
    padding: .42rem .85rem;
    border-bottom: 0;
  }
  .guide-table td::before {
    content: attr(data-label);
    color: #f8fbff;
    font-weight: 850;
  }
  .guide-table td:first-child {
    color: #c7d1df;
  }
  .hero-media-card img {
    height: 260px;
  }
  .footer-inner {
    padding: 2.6rem 0 1.8rem;
  }
  .footer h4 {
    margin-top: .25rem;
  }
  .footer a {
    min-height: 34px;
    display: flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
  }
  .footer-bottom {
    padding-bottom: 1.6rem;
    font-size: .82rem;
  }
}
