:root {
  color-scheme: dark;
  --bg: #0f1218;
  --bg-2: #131820;
  --card: #192029;
  --border: #29323f;
  --accent: #8f86ff;
  --accent-rgb: 143 134 255;
  --text: #f4f5f8;
  --muted: #a7abb6;
  --quiet: #7d818d;
  --page-max: 1240px;
  --page-gutter: clamp(24px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgb(var(--accent-rgb) / 0.32);
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(to bottom, rgb(15 18 24 / 0.96), rgb(15 18 24 / 0.72));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  width: 100%;
  max-width: var(--page-max);
  min-height: 74px;
  margin: 0 auto;
  padding: 16px var(--page-gutter);
  align-items: center;
  justify-content: space-between;
}

/* Shared header fallback used by the support and privacy pages. */
.site-header > .wrap {
  display: flex;
  min-height: 74px;
  padding-block: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand .logo {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #2a2e3b;
  border-radius: 9px;
  background: radial-gradient(120% 120% at 30% 25%, #20232e, #0c0e14);
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06);
}

.brand .logo svg {
  width: 18px;
  height: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.header-cta {
  padding: 9px 18px;
  box-shadow: 0 6px 20px -6px rgb(255 255 255 / 0.25);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-icon {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 0 14px rgb(0 122 255 / 0.16);
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 15px;
}

.nav-links > a:not(.nav-cta) {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav-links > a:not(.nav-cta):hover,
.nav-links > a:not(.nav-cta):focus-visible {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--text);
  box-shadow: 0 6px 20px -6px rgb(255 255 255 / 0.25);
  color: #0a0b0f;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.store-button:hover,
.store-button:focus-visible {
  box-shadow: 0 16px 42px -12px rgb(var(--accent-rgb) / 0.62);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 88px) var(--page-gutter) clamp(64px, 7vw, 110px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.product-pill {
  display: inline-flex;
  margin: 0 0 26px;
  padding: 7px 14px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: #b9bdc8;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.product-pill > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #47d18a;
  box-shadow: 0 0 8px #47d18a;
  animation: nc-pulse 2.4s ease-in-out infinite;
}

@keyframes nc-pulse {
  0%,
  100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 {
  max-width: 10.5em;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-intro {
  max-width: 30em;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.store-button {
  display: inline-flex;
  min-width: 184px;
  padding: 12px 24px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 14px;
  background: var(--text);
  box-shadow: 0 14px 34px -12px rgb(var(--accent-rgb) / 0.5);
  color: #0a0b0f;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button span {
  opacity: 0.6;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.store-button strong {
  margin-top: 1px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.secondary-button {
  display: inline-flex;
  padding: 14px 22px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: #e7e9ee;
  font-size: 16px;
  font-weight: 500;
  transition: border-color 180ms ease, background 180ms ease;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: #3a4554;
  background: rgb(255 255 255 / 0.03);
}

.secondary-button span {
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.secondary-button:hover span {
  transform: translateX(3px);
}

.tv-stage {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.tv-glow {
  position: absolute;
  inset: -14% -10% 6%;
  background: radial-gradient(58% 52% at 52% 38%, rgb(var(--accent-rgb) / 0.28), transparent 72%);
  filter: blur(34px);
  pointer-events: none;
}

.tv-frame {
  position: relative;
  width: 100%;
  max-width: 780px;
  padding: 11px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: linear-gradient(160deg, #191c24, #0b0c11);
  box-shadow: 0 46px 90px -26px rgb(0 0 0 / 0.85), inset 0 1px 0 rgb(255 255 255 / 0.07), 0 0 0 1px rgb(255 255 255 / 0.03);
}

.tv-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 11px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 0.6);
}

.tv-screen::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgb(255 255 255 / 0.08), transparent 34%);
  content: "";
  pointer-events: none;
}

.tv-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tv-neck {
  width: 14px;
  height: 44px;
  margin-top: -2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(#1a1d25, var(--card));
}

.tv-base {
  width: min(46%, 300px);
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(var(--border), #0c0e13);
  box-shadow: 0 18px 34px -14px rgb(0 0 0 / 0.9);
}

.trust-strip {
  display: flex;
  width: calc(100% - var(--page-gutter) - var(--page-gutter));
  max-width: calc(1240px - var(--page-gutter) - var(--page-gutter));
  margin: 0 auto;
  padding: 34px 0 clamp(48px, 6vw, 80px);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 40px;
  border-top: 1px solid var(--border);
  color: var(--quiet);
  font-size: 14.5px;
  letter-spacing: 0.01em;
}

.trust-strip span:first-child {
  color: #9aa0ad;
}

.trust-strip i,
.footer-links i {
  opacity: 0.35;
  font-style: normal;
}

.section-shell {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) var(--page-gutter);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

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

.feature-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: #3b4655;
  transform: translateY(-3px);
}

.feature-image {
  height: 178px;
  border-bottom: 1px solid var(--border);
  background-color: #080a0f;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.feature-live {
  background-image: url("nascam-camera-wall.jpg");
}

.feature-events {
  background-image: url("nascam-event-timeline.jpg");
}

.feature-timeline {
  background-image: url("nascam-playback.jpg");
}

.feature-copy {
  padding: 24px;
}

.feature-copy h3,
.steps h3 {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature-copy p,
.steps p {
  margin-bottom: 0;
  color: #9aa0ad;
  font-size: 15px;
  line-height: 1.55;
}

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

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
}

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
}

.download-section {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) var(--page-gutter);
  text-align: center;
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 80px) clamp(28px, 5vw, 64px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: radial-gradient(90% 130% at 50% 0%, #14121f, var(--bg-2) 70%);
}

.download-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 70%;
  height: 80%;
  background: radial-gradient(50% 50% at 50% 50%, rgb(var(--accent-rgb) / 0.22), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  transform: translateX(-50%);
}

.download-content {
  position: relative;
}

.download-content h2 {
  max-width: 16em;
  margin: 0 auto 18px;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.download-content p {
  max-width: 34em;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
}

.download-content .store-button {
  padding: 13px 28px;
}

.download-content .store-button strong {
  font-size: 20px;
}

.site-footer {
  border-top: 1px solid var(--border);
}

.site-footer > .wrap {
  display: flex;
  padding-block: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.foot-brand .fb {
  color: #9aa0ad;
  font-weight: 600;
}

.foot-brand .fc {
  color: #6e7079;
  font-size: 13px;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.foot-links a {
  color: var(--muted);
  font-size: 13px;
}

.foot-links a:hover,
.foot-links a:focus-visible {
  color: var(--accent);
}

.footer-shell {
  display: flex;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 32px var(--page-gutter);
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  color: #6e7079;
  font-size: 14px;
}

.footer-brand {
  gap: 10px;
  color: #9aa0ad;
  font-size: 14px;
  font-weight: 500;
}

.footer-icon {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 20px;
}

.footer-links a {
  color: var(--accent);
  transition: filter 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  filter: brightness(1.18);
}

/* Support and privacy pages */
.doc {
  min-height: calc(100vh - 170px);
  padding: 72px 0 96px;
}

.wrap {
  position: relative;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.doc-wrap {
  max-width: 908px;
}

.doc .back {
  display: inline-flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.doc .back:hover {
  color: var(--accent);
}

.doc .back svg {
  width: 16px;
  height: 16px;
}

.doc h1 {
  margin-bottom: 10px;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.03em;
}

.doc .updated {
  margin-bottom: 44px;
  color: var(--quiet);
  font-size: 13px;
}

.doc h2 {
  margin: 42px 0 14px;
  font-size: 23px;
}

.doc h3 {
  margin: 26px 0 8px;
  font-size: 17px;
}

.doc p,
.doc li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.doc p {
  margin-bottom: 14px;
}

.doc ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.doc li {
  margin-bottom: 8px;
}

.doc code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--card);
  color: #d7d9df;
}

.doc .lead {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

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

.glass {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
}

.callout {
  margin: 32px 0;
  padding: 22px 24px;
  border: 1px solid rgb(var(--accent-rgb) / 0.28);
  border-radius: 16px;
  background: rgb(var(--accent-rgb) / 0.07);
}

.callout p {
  margin: 0;
  color: var(--text);
}

.contact-card {
  display: flex;
  margin: 8px 0 40px;
  padding: 30px 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.contact-card .ci h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.contact-card .ci p {
  margin: 0;
  font-size: 15px;
}

.btn {
  display: inline-flex;
  padding: 12px 22px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--text);
  color: #0a0b0f;
}

.faq {
  border-top: 1px solid var(--border);
}

.faq details {
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.faq summary {
  display: flex;
  padding: 18px 4px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

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

.faq summary::after {
  color: var(--accent);
  content: "+";
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq .fa {
  padding: 0 4px 20px;
}

.faq .fa p {
  margin: 0;
  font-size: 15px;
}

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

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

  .hero h1 {
    max-width: 11em;
  }

  .tv-stage {
    width: min(100%, 720px);
    margin: 18px auto 0;
  }

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

  .feature-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) 1fr;
  }

  .feature-image {
    height: 100%;
    min-height: 210px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .nav-shell {
    min-height: 66px;
  }

  .nav-links > a:not(.nav-cta) {
    display: none;
  }

  .site-header > .wrap {
    min-height: 66px;
  }

  .site-header > .wrap .nav {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .trust-strip {
    gap: 10px 18px;
    text-align: center;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-card {
    display: block;
  }

  .feature-image {
    height: 190px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .footer-shell,
  .footer-links {
    justify-content: flex-start;
  }

  .footer-links i {
    display: none;
  }

  .contact-card {
    padding: 24px;
  }
}

@media (max-width: 460px) {
  .nav-cta {
    padding-inline: 15px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions > a {
    width: 100%;
    justify-content: center;
  }

  .store-button {
    align-items: center;
  }

  .tv-frame {
    padding: 7px;
    border-radius: 13px;
  }

  .tv-screen {
    border-radius: 7px;
  }

}

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

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

/* ---------------------------------------------------------------------------
   Comparison table, guides list, article pages and footer disclaimer.
   Added for the nascam.tv content build; reuses the existing token palette.
   --------------------------------------------------------------------------- */

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

.section-lead {
  max-width: 62ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

/* Wide tables scroll inside their own box; the page body never scrolls sideways. */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table thead th {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgb(255 255 255 / 0.02);
}

.compare-table thead th:nth-child(2) {
  color: var(--accent);
}

.compare-table tbody th {
  color: var(--muted);
  font-weight: 500;
  width: 30%;
}

.compare-table tbody td {
  color: var(--quiet);
}

.compare-table tbody td.yes {
  color: var(--text);
}

.compare-table tbody td.no {
  color: #8a8d97;
}

.compare-table tbody td.yes::before,
.compare-table tbody td.no::before {
  display: inline-block;
  width: 1.15em;
  font-weight: 700;
}

.compare-table tbody td.yes::before {
  content: "+";
  color: var(--accent);
}

.compare-table tbody td.no::before {
  content: "–";
  color: #5f636e;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-note {
  max-width: 70ch;
  margin: 18px 0 0;
  color: var(--quiet);
  font-size: 14px;
}

.guide-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.guide-list a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.guide-list a:hover,
.guide-list a:focus-visible {
  border-color: rgb(var(--accent-rgb) / 0.55);
  transform: translateY(-2px);
}

.guide-list strong {
  font-size: 16px;
  font-weight: 600;
}

.guide-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-disclaimer {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter) 28px;
  color: #62656e;
  font-size: 12px;
  line-height: 1.6;
}

/* Article pages reuse the .doc layout from support/privacy. */
.doc .table-scroll {
  margin: 24px 0;
}

.doc .compare-table {
  min-width: 560px;
}

.doc .cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 36px 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, rgb(var(--accent-rgb) / 0.12), transparent 70%), var(--card);
}

.doc .cta-band p {
  margin: 0;
  max-width: 46ch;
}

.doc .cta-band .store-button {
  flex: 0 0 auto;
}

.doc .toc {
  margin: 0 0 32px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
}

.doc .toc p {
  margin: 0 0 10px;
  color: var(--quiet);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.doc .toc ul {
  margin: 0;
  padding-left: 18px;
}

.doc .toc li {
  margin: 4px 0;
}

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

.doc .toc a:hover {
  text-decoration: underline;
}

.doc .related {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.doc .related h2 {
  font-size: 18px;
}

@media (max-width: 640px) {
  .doc .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

.doc ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.doc ol.steps-plain li {
  margin-bottom: 12px;
}

.doc ol.steps-plain li strong {
  color: var(--text);
}

.doc .related ul {
  padding-left: 0;
  list-style: none;
}

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