:root {
  --background: #0f172a;
  --foreground: #f8fafc;
  --card: #1e293b;
  --primary: #3b82f6;
  --primary-foreground: #ffffff;
  --accent: #06b6d4;
  --accent-foreground: #0f172a;
  --secondary: #334155;
  --muted: #64748b;
  --border: #334155;
  --success: #16a34a;

  --font-heading: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.2);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.25);

  --container: 72rem;
  --nav-height: 3.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2rem, 42rem);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform 150ms ease, opacity 150ms ease, box-shadow 150ms ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 0 0 1px rgb(59 130 246 / 0.3), var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: 0 0 24px rgb(59 130 246 / 0.35), var(--shadow-lg);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 0 0 1px rgb(6 182 212 / 0.3), var(--shadow-md);
}

.btn-accent:hover {
  box-shadow: 0 0 24px rgb(6 182 212 / 0.35), var(--shadow-lg);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgb(15 23 42 / 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9375rem;
  color: rgb(248 250 252 / 0.75);
  transition: color 150ms ease;
}

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

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--foreground);
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  .nav-inner .btn-sm {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgb(59 130 246 / 0.15) 0%, rgb(6 182 212 / 0.08) 40%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-top: 2rem;
  }
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  background: rgb(6 182 212 / 0.1);
  border: 1px solid rgb(6 182 212 / 0.25);
  border-radius: 9999px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

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

.hero-lead {
  font-size: 1.125rem;
  color: rgb(248 250 252 / 0.75);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-cta {
  margin-bottom: 2.5rem;
}

.hero-note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
}

.hero-benefits {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 32rem;
}

.hero-benefits li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: rgb(248 250 252 / 0.85);
  line-height: 1.5;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgb(6 182 212 / 0.6);
}

.hero-benefits strong {
  color: var(--foreground);
}

.preview-frame {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.preview-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  vertical-align: middle;
}

.preview-caption {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* App window mockup */
.app-window {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgb(0 0 0 / 0.2);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.app-title {
  margin-left: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.app-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 320px;
}

.app-sidebar {
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--border);
  background: rgb(0 0 0 / 0.15);
}

.sidebar-item {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
  border-radius: var(--radius-md);
  cursor: default;
}

.sidebar-item.active {
  background: rgb(59 130 246 / 0.15);
  color: var(--primary);
  font-weight: 500;
}

.app-main {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-card {
  padding: 0.875rem 1rem;
  background: rgb(15 23 42 / 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.app-card.highlight {
  border-color: rgb(6 182 212 / 0.4);
  background: rgb(6 182 212 / 0.06);
}

.app-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.375rem;
}

.app-persona {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.app-desc,
.app-post {
  font-size: 0.8125rem;
  color: rgb(248 250 252 / 0.8);
  line-height: 1.5;
}

.app-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.625rem;
}

.app-tags span {
  font-size: 0.6875rem;
  padding: 0.2rem 0.5rem;
  background: rgb(6 182 212 / 0.15);
  color: var(--accent);
  border-radius: 9999px;
}

/* Compare strip */
.compare-strip {
  padding: 1.5rem 0;
  background: rgb(59 130 246 / 0.08);
  border-block: 1px solid rgb(59 130 246 / 0.15);
}

.compare-text {
  text-align: center;
  font-size: 1.0625rem;
  color: rgb(248 250 252 / 0.85);
}

.compare-text strong {
  color: var(--foreground);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgb(30 41 59 / 0.35);
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p {
  color: rgb(248 250 252 / 0.7);
  font-size: 1.0625rem;
}

/* Explainer */
.explainer-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .explainer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.explainer-card {
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.explainer-step {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.explainer-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.explainer-card p {
  font-size: 0.9375rem;
  color: rgb(248 250 252 / 0.7);
}

/* Features */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color 200ms ease, transform 200ms ease;
}

.feature-card:hover {
  border-color: rgb(59 130 246 / 0.4);
  transform: translateY(-2px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  background: rgb(59 130 246 / 0.12);
  color: var(--primary);
  border-radius: var(--radius-lg);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: rgb(248 250 252 / 0.7);
}

/* Steps */
.steps {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.step-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgb(59 130 246 / 0.35);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9375rem;
  color: rgb(248 250 252 / 0.7);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}

.pricing-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
}

.pricing-main {
  border-color: rgb(6 182 212 / 0.4);
  box-shadow: 0 0 40px rgb(6 182 212 / 0.08);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent);
  color: var(--accent-foreground);
  border-radius: 9999px;
}

.pricing-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.pricing-list-muted li::before {
  content: "×";
  color: var(--muted);
}

.pricing-guarantee {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Why grid */
.why-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-item h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.9375rem;
  color: rgb(248 250 252 / 0.7);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.9375rem;
  color: rgb(248 250 252 / 0.7);
}

/* CTA */
.cta-section {
  padding: 5rem 0 6rem;
}

.cta-box {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, rgb(59 130 246 / 0.12) 0%, rgb(6 182 212 / 0.08) 100%);
  border: 1px solid rgb(59 130 246 / 0.25);
  border-radius: var(--radius-xl);
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-box > p {
  color: rgb(248 250 252 / 0.75);
  max-width: 32rem;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
}

.cta-fine {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.cta-fine code {
  font-size: 0.6875rem;
  padding: 0.125rem 0.375rem;
  background: rgb(0 0 0 / 0.3);
  border-radius: var(--radius-sm);
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.footer-copy,
.footer-credit {
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-credit a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nav-links a.nav-active {
  color: var(--foreground);
}

/* Promo banner */
.promo-banner {
  background: linear-gradient(90deg, rgb(29 155 240 / 0.15), rgb(16 185 129 / 0.12));
  border-bottom: 1px solid rgb(29 155 240 / 0.25);
  text-align: center;
}

.promo-banner-inner {
  padding: 0.625rem 1rem;
}

.promo-banner p {
  margin: 0;
  font-size: 0.875rem;
  color: rgb(248 250 252 / 0.9);
  line-height: 1.4;
}

.promo-banner strong {
  color: rgb(52 211 153);
}

.promo-code {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  margin: 0 0.125rem;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1d9bf0;
  background: rgb(0 0 0 / 0.35);
  border: 1px solid rgb(29 155 240 / 0.4);
  border-radius: 0.25rem;
}

/* Docs */
.docs {
  padding: 3rem 0 5rem;
}

.docs-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .docs-layout {
    grid-template-columns: 200px 1fr;
    align-items: start;
  }
}

.docs-sidebar {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

@media (min-width: 1024px) {
  .docs-sidebar {
    display: flex;
  }
}

.docs-sidebar-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.docs-sidebar a {
  font-size: 0.875rem;
  color: rgb(248 250 252 / 0.65);
  padding: 0.375rem 0;
  transition: color 150ms ease;
}

.docs-sidebar a:hover {
  color: var(--foreground);
}

.docs-content {
  max-width: 42rem;
}

.docs-header {
  margin-bottom: 3rem;
}

.docs-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}

.docs-lead {
  font-size: 1.125rem;
  color: rgb(248 250 252 / 0.75);
}

.docs-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.docs-section:last-of-type {
  border-bottom: none;
}

.docs-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.docs-section p {
  color: rgb(248 250 252 / 0.8);
  margin-bottom: 1rem;
}

.docs-section p:last-child {
  margin-bottom: 0;
}

.docs-callout {
  padding: 1.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-top: 1.25rem;
}

.docs-callout strong {
  display: block;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.docs-callout ul {
  margin-left: 1.25rem;
  color: rgb(248 250 252 / 0.75);
}

.docs-callout li {
  margin-bottom: 0.375rem;
}

.docs-callout a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.docs-callout-accent {
  border-color: rgb(6 182 212 / 0.35);
  background: rgb(6 182 212 / 0.06);
}

.docs-callout-accent p {
  color: rgb(248 250 252 / 0.75);
  margin-bottom: 0.75rem;
}

.docs-callout-accent p:last-child {
  margin-bottom: 0;
}

.docs-subheading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--foreground);
}

.docs-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.docs-note {
  font-size: 0.875rem;
  color: var(--muted) !important;
}

.docs-steps {
  margin-left: 1.25rem;
  color: rgb(248 250 252 / 0.8);
}

.docs-steps li {
  margin-bottom: 1rem;
  padding-left: 0.25rem;
}

.docs-steps li:last-child {
  margin-bottom: 0;
}

.docs-steps a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.docs-list {
  margin-left: 1.25rem;
  color: rgb(248 250 252 / 0.8);
}

.docs-list li {
  margin-bottom: 0.5rem;
}

.docs-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.docs-table th,
.docs-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.docs-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  background: rgb(0 0 0 / 0.2);
  color: var(--foreground);
}

.docs-table td {
  color: rgb(248 250 252 / 0.8);
  background: var(--card);
}

.docs-table tr:last-child td {
  border-bottom: none;
}

.docs-table code {
  font-size: 0.8125rem;
  padding: 0.15rem 0.4rem;
  background: rgb(0 0 0 / 0.35);
  border-radius: var(--radius-sm);
  color: var(--accent);
}

.docs-table a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

code {
  font-size: 0.875em;
  padding: 0.15rem 0.4rem;
  background: rgb(0 0 0 / 0.35);
  border-radius: var(--radius-sm);
  color: var(--accent);
}

.docs-cta {
  text-align: center;
  padding: 2.5rem 1.5rem !important;
  background: rgb(59 130 246 / 0.08);
  border: 1px solid rgb(59 130 246 / 0.2);
  border-radius: var(--radius-xl);
}

.docs-cta h2 {
  margin-bottom: 0.5rem;
}

.docs-cta p {
  margin-bottom: 1.5rem !important;
}

.setup-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .setup-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.setup-card {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
}

.setup-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  background: rgb(59 130 246 / 0.12);
  border-radius: 9999px;
}

.setup-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.setup-card p {
  font-size: 0.875rem;
  color: rgb(248 250 252 / 0.65);
}

.setup-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--card);
  border: 1px solid rgb(6 182 212 / 0.3);
  border-radius: var(--radius-xl);
}

.setup-banner p {
  font-size: 0.9375rem;
  color: rgb(248 250 252 / 0.8);
  margin: 0;
}

.faq-item p a,
.cta-fine a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
