:root {
  color-scheme: light;
  --guide-bg: #f5f9fe;
  --guide-surface: #ffffff;
  --guide-surface-soft: #f8fbff;
  --guide-surface-blue: #eef7ff;
  --guide-ink: #122039;
  --guide-muted: #66758d;
  --guide-subtle: #8794a8;
  --guide-line: #dce7f3;
  --guide-line-strong: #c8daed;
  --guide-brand: #397ee9;
  --guide-brand-strong: #2464cd;
  --guide-cyan: #54b9eb;
  --guide-green: #34a06a;
  --guide-green-soft: #eaf8f0;
  --guide-orange: #ec8b38;
  --guide-violet: #8459d9;
  --guide-rose: #dc5571;
  --guide-warning: #a96917;
  --guide-shadow-sm: 0 8px 24px rgba(25, 52, 87, 0.06);
  --guide-shadow: 0 22px 60px rgba(25, 52, 87, 0.1);
  --guide-radius: 18px;
  --guide-radius-lg: 26px;
  --guide-header-height: 74px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --guide-bg: #091321;
  --guide-surface: #101d2e;
  --guide-surface-soft: #0d1929;
  --guide-surface-blue: #11243a;
  --guide-ink: #eef6ff;
  --guide-muted: #a8b8cd;
  --guide-subtle: #8293aa;
  --guide-line: #243951;
  --guide-line-strong: #31506d;
  --guide-brand: #69a7ff;
  --guide-brand-strong: #83b7ff;
  --guide-cyan: #69cef5;
  --guide-green: #61cc91;
  --guide-green-soft: #102d27;
  --guide-orange: #f1a157;
  --guide-violet: #ac8af2;
  --guide-rose: #f08097;
  --guide-warning: #f1b35d;
  --guide-shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.18);
  --guide-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--guide-header-height) + 28px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 5%, color-mix(in srgb, var(--guide-brand) 8%, transparent), transparent 26rem),
    var(--guide-bg);
  color: var(--guide-ink);
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--guide-brand-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

code {
  padding: 0.14em 0.42em;
  border: 1px solid color-mix(in srgb, var(--guide-brand) 17%, var(--guide-line));
  border-radius: 7px;
  background: color-mix(in srgb, var(--guide-brand) 6%, var(--guide-surface-soft));
  color: var(--guide-ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  transform: translateY(-160%);
  background: var(--guide-ink);
  color: var(--guide-surface);
  font-weight: 750;
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1001;
  height: 3px;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--guide-brand), var(--guide-cyan));
  transition: width 0.08s linear;
}

.guide-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid color-mix(in srgb, var(--guide-line) 82%, transparent);
  background: color-mix(in srgb, var(--guide-bg) 84%, transparent);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.guide-header-inner {
  display: flex;
  min-height: var(--guide-header-height);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.guide-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--guide-ink);
}

.guide-brand:hover {
  text-decoration: none;
}

.guide-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--guide-brand), var(--guide-cyan));
  box-shadow: 0 10px 22px color-mix(in srgb, var(--guide-brand) 24%, transparent);
  color: #fff;
}

.guide-brand-mark svg {
  width: 23px;
  height: 23px;
}

.guide-brand > span:last-child {
  display: grid;
  line-height: 1.2;
}

.guide-brand strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.guide-brand small {
  margin-top: 3px;
  color: var(--guide-muted);
  font-size: 11px;
  font-weight: 600;
}

.guide-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.guide-header-nav > a:not(.open-app-button),
.theme-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--guide-muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.guide-header-nav > a:not(.open-app-button):hover,
.theme-toggle:hover {
  background: var(--guide-surface);
  color: var(--guide-ink);
  text-decoration: none;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.open-app-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--guide-brand), var(--guide-cyan));
  box-shadow: 0 11px 24px color-mix(in srgb, var(--guide-brand) 22%, transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.open-app-button:hover {
  filter: brightness(1.04);
  text-decoration: none;
  transform: translateY(-1px);
}

.open-app-button svg {
  width: 17px;
  height: 17px;
}

.guide-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--guide-line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--guide-brand) 7%, var(--guide-surface)), color-mix(in srgb, var(--guide-surface) 76%, transparent));
}

.guide-hero::before,
.guide-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.8;
}

.guide-hero::before {
  top: -150px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, color-mix(in srgb, var(--guide-cyan) 24%, transparent), transparent 67%);
}

.guide-hero::after {
  right: -120px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, color-mix(in srgb, var(--guide-violet) 18%, transparent), transparent 68%);
}

.guide-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 24px 60px;
  text-align: center;
}

.eyebrow,
.section-heading p {
  margin: 0;
  color: var(--guide-brand-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.guide-hero h1 {
  max-width: 800px;
  margin: 12px auto 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.guide-hero-copy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--guide-muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

.guide-search {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 34px;
  width: min(720px, 100%);
  min-height: 62px;
  margin: 30px auto 0;
  padding: 0 12px 0 19px;
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--guide-brand) 24%, var(--guide-line));
  border-radius: 18px;
  background: color-mix(in srgb, var(--guide-surface) 94%, transparent);
  box-shadow: 0 18px 46px rgba(32, 79, 132, 0.12);
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.guide-search:focus-within {
  border-color: var(--guide-brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--guide-brand) 13%, transparent), 0 22px 52px rgba(32, 79, 132, 0.14);
  transform: translateY(-1px);
}

.guide-search > svg {
  width: 23px;
  height: 23px;
  color: var(--guide-brand);
}

.guide-search input {
  min-width: 0;
  height: 60px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--guide-ink);
  font-size: 15px;
  font-weight: 600;
}

.guide-search input::placeholder {
  color: var(--guide-subtle);
  font-weight: 500;
}

.guide-search button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: var(--guide-surface-soft);
  color: var(--guide-muted);
  font-size: 21px;
  cursor: pointer;
}

.guide-search button:hover {
  background: color-mix(in srgb, var(--guide-brand) 10%, var(--guide-surface));
  color: var(--guide-brand-strong);
}

.search-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--guide-muted);
  font-size: 12px;
}

.popular-links {
  display: flex;
  margin-top: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--guide-muted);
  font-size: 12px;
}

.popular-links a {
  padding: 5px 10px;
  border: 1px solid var(--guide-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--guide-surface) 86%, transparent);
  color: var(--guide-muted);
  font-weight: 700;
}

.popular-links a:hover {
  border-color: var(--guide-brand);
  color: var(--guide-brand-strong);
  text-decoration: none;
}

.mobile-toc {
  display: none;
}

.guide-layout {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  align-items: start;
  gap: 44px;
}

.guide-sidebar {
  position: sticky;
  top: calc(var(--guide-header-height) + 24px);
}

.guide-sidebar-card {
  max-height: calc(100dvh - var(--guide-header-height) - 48px);
  padding: 14px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--guide-line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--guide-surface) 93%, transparent);
  box-shadow: var(--guide-shadow-sm);
  scrollbar-width: thin;
}

.sidebar-label {
  display: block;
  padding: 7px 10px 10px;
  color: var(--guide-subtle);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.guide-toc {
  display: grid;
  gap: 3px;
}

.guide-toc a {
  display: flex;
  min-height: 42px;
  padding: 0 10px;
  align-items: center;
  gap: 10px;
  border-radius: 11px;
  color: var(--guide-muted);
  font-size: 12.5px;
  font-weight: 690;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.guide-toc a:hover {
  background: var(--guide-surface-soft);
  color: var(--guide-ink);
  text-decoration: none;
  transform: translateX(2px);
}

.guide-toc a.active {
  background: color-mix(in srgb, var(--guide-brand) 11%, var(--guide-surface));
  color: var(--guide-brand-strong);
}

.guide-toc svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.sidebar-help {
  margin-top: 13px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--guide-brand) 18%, var(--guide-line));
  border-radius: 14px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--guide-brand) 8%, var(--guide-surface)), color-mix(in srgb, var(--guide-cyan) 8%, var(--guide-surface)));
}

.sidebar-help strong {
  display: block;
  font-size: 12px;
}

.sidebar-help p {
  margin: 4px 0 9px;
  color: var(--guide-muted);
  font-size: 11px;
  line-height: 1.5;
}

.sidebar-help a {
  font-size: 11px;
  font-weight: 800;
}

.guide-content {
  min-width: 0;
}

.guide-section {
  margin-bottom: 76px;
  scroll-margin-top: calc(var(--guide-header-height) + 26px);
}

.guide-section[hidden] {
  display: none !important;
}

.section-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  margin-bottom: 24px;
  align-items: start;
  gap: 17px;
}

.section-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
}

.section-icon svg {
  width: 27px;
  height: 27px;
}

.section-icon.blue {
  background: color-mix(in srgb, var(--guide-brand) 12%, var(--guide-surface));
  color: var(--guide-brand-strong);
}

.section-icon.cyan {
  background: color-mix(in srgb, var(--guide-cyan) 14%, var(--guide-surface));
  color: color-mix(in srgb, var(--guide-cyan) 76%, var(--guide-ink));
}

.section-icon.violet {
  background: color-mix(in srgb, var(--guide-violet) 13%, var(--guide-surface));
  color: var(--guide-violet);
}

.section-icon.orange {
  background: color-mix(in srgb, var(--guide-orange) 14%, var(--guide-surface));
  color: var(--guide-orange);
}

.section-icon.green {
  background: color-mix(in srgb, var(--guide-green) 13%, var(--guide-surface));
  color: var(--guide-green);
}

.section-icon.rose {
  background: color-mix(in srgb, var(--guide-rose) 13%, var(--guide-surface));
  color: var(--guide-rose);
}

.section-heading h2 {
  margin: 3px 0 3px;
  font-size: clamp(24px, 3.2vw, 33px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.section-heading > div > span {
  color: var(--guide-muted);
  font-size: 14px;
}

.plan-badge {
  display: inline-flex;
  margin-left: 6px;
  padding: 3px 7px;
  align-items: center;
  border-radius: 999px;
  background: #fff3cc;
  color: #936c00;
  font-size: 9px;
  letter-spacing: 0.04em;
  vertical-align: 1px;
}

:root[data-theme="dark"] .plan-badge {
  background: #3a3011;
  color: #ffd96b;
}

.quick-start-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
  gap: 12px;
}

.quick-start-grid article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  min-height: 120px;
  padding: 18px;
  align-items: start;
  gap: 12px;
  border: 1px solid var(--guide-line);
  border-radius: var(--guide-radius);
  background: var(--guide-surface);
  box-shadow: var(--guide-shadow-sm);
}

.quick-start-grid article > b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: color-mix(in srgb, var(--guide-brand) 12%, var(--guide-surface));
  color: var(--guide-brand-strong);
  font-size: 13px;
}

.quick-start-grid strong,
.feature-steps strong,
.channel-grid strong {
  display: block;
  margin-bottom: 3px;
  color: var(--guide-ink);
  font-size: 14px;
}

.quick-start-grid p,
.feature-steps p,
.channel-grid p {
  margin: 0;
  color: var(--guide-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.quick-start-grid em {
  color: var(--guide-ink);
  font-style: normal;
  font-weight: 750;
}

.task-card {
  margin-top: 12px;
  overflow: clip;
  border: 1px solid var(--guide-line);
  border-radius: var(--guide-radius);
  background: var(--guide-surface);
  box-shadow: var(--guide-shadow-sm);
}

.task-card[open] {
  border-color: color-mix(in srgb, var(--guide-brand) 28%, var(--guide-line));
}

.task-card summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 28px;
  min-height: 76px;
  padding: 14px 17px;
  align-items: center;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

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

.task-card summary:hover {
  background: color-mix(in srgb, var(--guide-brand) 3%, var(--guide-surface));
}

.task-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--guide-surface-blue);
  color: var(--guide-brand-strong);
  font-size: 11px;
  font-weight: 850;
}

.task-card summary span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.task-card summary strong {
  color: var(--guide-ink);
  font-size: 14px;
}

.task-card summary small {
  color: var(--guide-muted);
  font-size: 11.5px;
  font-weight: 500;
}

.task-card summary i {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--guide-surface-soft);
}

.task-card summary i::before,
.task-card summary i::after {
  position: absolute;
  top: 12px;
  left: 7px;
  width: 12px;
  height: 1.5px;
  content: "";
  border-radius: 2px;
  background: var(--guide-muted);
  transition: transform 0.18s ease;
}

.task-card summary i::after {
  transform: rotate(90deg);
}

.task-card[open] summary i::after {
  transform: rotate(0deg);
}

.task-body {
  padding: 18px 20px 21px;
  border-top: 1px solid var(--guide-line);
  color: var(--guide-muted);
  font-size: 13.5px;
}

.task-body p {
  margin: 0 0 12px;
}

.task-body p:last-child {
  margin-bottom: 0;
}

.task-body h3 {
  margin: 0 0 8px;
  color: var(--guide-ink);
  font-size: 13px;
}

.task-body ol,
.task-body ul {
  margin: 0;
  padding-left: 20px;
}

.task-body li + li {
  margin-top: 7px;
}

.task-body li::marker {
  color: var(--guide-brand);
  font-weight: 800;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.step-list {
  display: grid;
  padding: 0 !important;
  list-style: none;
  counter-reset: steps;
  gap: 14px;
}

.step-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  margin: 0 !important;
  gap: 10px;
  counter-increment: steps;
}

.step-list li::before {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: color-mix(in srgb, var(--guide-brand) 10%, var(--guide-surface));
  color: var(--guide-brand-strong);
  content: counter(steps);
  font-size: 11px;
  font-weight: 850;
}

.step-list li b,
.step-list li span {
  grid-column: 2;
}

.step-list li b {
  color: var(--guide-ink);
  font-size: 13px;
}

.step-list li span {
  margin-top: -2px;
  font-size: 12.5px;
}

.check-list {
  display: grid;
  padding: 0 !important;
  list-style: none;
  gap: 10px;
}

.check-list li {
  position: relative;
  margin: 0 !important;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 6px;
  background: color-mix(in srgb, var(--guide-green) 14%, var(--guide-surface));
  color: var(--guide-green);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

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

.mini-grid > div {
  padding: 13px;
  border: 1px solid var(--guide-line);
  border-radius: 13px;
  background: var(--guide-surface-soft);
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid strong {
  margin-bottom: 4px;
  color: var(--guide-ink);
  font-size: 12px;
}

.mini-grid span {
  color: var(--guide-muted);
  font-size: 11px;
  line-height: 1.5;
}

.callout {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  margin-top: 14px;
  padding: 17px;
  align-items: start;
  gap: 12px;
  border: 1px solid;
  border-radius: 16px;
}

.callout > svg {
  width: 24px;
  height: 24px;
  margin: 3px 0 0 4px;
}

.callout strong {
  display: block;
  margin-bottom: 3px;
  color: var(--guide-ink);
  font-size: 13px;
}

.callout p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.callout a {
  display: inline-block;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 800;
}

.callout.tip {
  border-color: color-mix(in srgb, var(--guide-green) 28%, var(--guide-line));
  background: color-mix(in srgb, var(--guide-green) 7%, var(--guide-surface));
  color: color-mix(in srgb, var(--guide-green) 46%, var(--guide-muted));
}

.callout.note {
  border-color: color-mix(in srgb, var(--guide-brand) 25%, var(--guide-line));
  background: color-mix(in srgb, var(--guide-brand) 6%, var(--guide-surface));
  color: var(--guide-muted);
}

.callout.warning {
  border-color: color-mix(in srgb, var(--guide-warning) 28%, var(--guide-line));
  background: color-mix(in srgb, var(--guide-warning) 7%, var(--guide-surface));
  color: color-mix(in srgb, var(--guide-warning) 42%, var(--guide-muted));
}

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

.feature-steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 17px;
  align-items: start;
  gap: 12px;
  border: 1px solid var(--guide-line);
  border-radius: 16px;
  background: var(--guide-surface);
  box-shadow: var(--guide-shadow-sm);
}

.feature-steps article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: var(--guide-surface-blue);
  color: var(--guide-brand-strong);
  font-size: 18px;
  font-weight: 750;
}

.comparison-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.comparison-card article {
  position: relative;
  overflow: hidden;
  padding: 21px;
  border: 1px solid var(--guide-line);
  border-radius: 18px;
  background: var(--guide-surface);
  box-shadow: var(--guide-shadow-sm);
}

.comparison-card article::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: color-mix(in srgb, var(--guide-brand) 6%, transparent);
}

.comparison-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: color-mix(in srgb, var(--guide-brand) 10%, var(--guide-surface));
  color: var(--guide-brand-strong);
}

.comparison-icon svg {
  width: 23px;
  height: 23px;
}

.comparison-card h3 {
  margin: 12px 0 5px;
  font-size: 16px;
}

.comparison-card p,
.comparison-card li {
  color: var(--guide-muted);
  font-size: 12px;
}

.comparison-card p {
  margin: 0;
}

.comparison-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.comparison-card li + li {
  margin-top: 4px;
}

.inline-note {
  margin-top: 15px;
  padding: 12px 14px;
  border-left: 3px solid var(--guide-brand);
  border-radius: 0 11px 11px 0;
  background: var(--guide-surface-soft);
  color: var(--guide-muted);
  font-size: 12px;
}

.inline-note strong {
  color: var(--guide-ink);
}

.muted-copy {
  color: var(--guide-muted);
  font-size: 12px;
}

.channel-grid,
.plan-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  gap: 10px;
}

.channel-grid article,
.plan-guide-grid article {
  padding: 16px;
  border: 1px solid var(--guide-line);
  border-radius: 15px;
  background: var(--guide-surface);
  box-shadow: var(--guide-shadow-sm);
}

.channel-grid b {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 9px;
  place-items: center;
  border-radius: 9px;
  background: color-mix(in srgb, var(--guide-brand) 11%, var(--guide-surface));
  color: var(--guide-brand-strong);
  font-size: 11px;
}

.dns-card {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  margin: 14px 0;
  padding: 12px;
  align-items: stretch;
  gap: 9px;
  border: 1px solid color-mix(in srgb, var(--guide-green) 26%, var(--guide-line));
  border-radius: 14px;
  background: color-mix(in srgb, var(--guide-green) 6%, var(--guide-surface));
}

.dns-card > div {
  display: grid;
  padding: 8px 10px;
  gap: 2px;
  border-radius: 10px;
  background: var(--guide-surface);
}

.dns-card span {
  color: var(--guide-muted);
  font-size: 10px;
}

.dns-card code {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--guide-ink);
  font-size: 12px;
  font-weight: 750;
}

.dns-card button,
.no-results button {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 11px;
  background: var(--guide-green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.dns-card button.copied {
  background: var(--guide-brand);
}

.plan-guide-grid article > span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--guide-surface-blue);
  color: var(--guide-brand-strong);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.plan-guide-grid article.featured {
  border-color: color-mix(in srgb, var(--guide-brand) 35%, var(--guide-line));
  background: linear-gradient(150deg, color-mix(in srgb, var(--guide-brand) 8%, var(--guide-surface)), var(--guide-surface));
}

.plan-guide-grid article.gold {
  border-color: color-mix(in srgb, #d8a72b 38%, var(--guide-line));
  background: linear-gradient(150deg, color-mix(in srgb, #e6bd4c 9%, var(--guide-surface)), var(--guide-surface));
}

.plan-guide-grid h3 {
  margin: 12px 0 5px;
  font-size: 14px;
}

.plan-guide-grid p {
  margin: 0;
  color: var(--guide-muted);
  font-size: 11.5px;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: clip;
  border: 1px solid var(--guide-line);
  border-radius: 15px;
  background: var(--guide-surface);
  box-shadow: var(--guide-shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 16px 48px 16px 18px;
  list-style: none;
  color: var(--guide-ink);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "+";
  color: var(--guide-brand);
  font-size: 21px;
  transform: translateY(-52%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  padding: 15px 18px 18px;
  border-top: 1px solid var(--guide-line);
  color: var(--guide-muted);
  font-size: 12.5px;
}

.faq-list p,
.faq-list ol {
  margin: 0;
}

.faq-list ol {
  padding-left: 20px;
}

.support-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  margin-top: 16px;
  padding: 19px;
  align-items: center;
  gap: 14px;
  border: 1px solid color-mix(in srgb, var(--guide-brand) 27%, var(--guide-line));
  border-radius: 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--guide-brand) 9%, var(--guide-surface)), color-mix(in srgb, var(--guide-cyan) 7%, var(--guide-surface)));
}

.support-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--guide-surface);
  color: var(--guide-brand-strong);
}

.support-card svg {
  width: 24px;
  height: 24px;
}

.support-card h3,
.support-card p {
  margin: 0;
}

.support-card h3 {
  font-size: 14px;
}

.support-card p {
  margin-top: 3px;
  color: var(--guide-muted);
  font-size: 11.5px;
}

.support-card > button {
  display: inline-flex;
  min-height: 42px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: var(--guide-brand);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.support-card > button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

body.support-dialog-open {
  overflow: hidden;
}

.support-dialog {
  width: min(620px, calc(100vw - 28px));
  max-height: min(820px, calc(100dvh - 28px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--guide-line-strong);
  border-radius: 22px;
  background: var(--guide-surface);
  box-shadow: 0 30px 90px rgba(10, 27, 50, 0.3);
  color: var(--guide-ink);
}

.support-dialog::backdrop {
  background: rgba(10, 22, 38, 0.58);
  backdrop-filter: blur(7px) saturate(0.86);
  -webkit-backdrop-filter: blur(7px) saturate(0.86);
}

.support-form {
  display: flex;
  max-height: min(820px, calc(100dvh - 28px));
  flex-direction: column;
  margin: 0;
}

.support-dialog-head {
  display: flex;
  flex: 0 0 auto;
  padding: 20px 20px 15px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--guide-line);
}

.support-dialog-head p,
.support-dialog-head h2 {
  margin: 0;
}

.support-dialog-head p {
  color: var(--guide-brand-strong);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.support-dialog-head h2 {
  margin-top: 2px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.support-dialog-head > button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid var(--guide-line);
  border-radius: 12px;
  background: var(--guide-surface-soft);
  color: var(--guide-muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.support-form-body {
  display: grid;
  flex: 1 1 auto;
  min-height: 0;
  padding: 18px 20px 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  gap: 14px;
  scrollbar-width: thin;
}

.support-intro {
  margin: 0;
  color: var(--guide-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.support-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.support-form-body label {
  display: grid;
  min-width: 0;
  gap: 6px;
  color: var(--guide-ink);
  font-size: 12px;
  font-weight: 720;
}

.support-form-body label > span b {
  color: var(--guide-rose);
}

.support-form-body input,
.support-form-body select,
.support-form-body textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--guide-line-strong);
  border-radius: 12px;
  outline: 0;
  background: var(--guide-surface-soft);
  color: var(--guide-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 520;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.support-form-body input,
.support-form-body select {
  height: 46px;
  padding: 0 13px;
}

.support-form-body textarea {
  min-height: 138px;
  padding: 12px 13px;
  line-height: 1.55;
  resize: vertical;
}

.support-form-body input:focus,
.support-form-body select:focus,
.support-form-body textarea:focus {
  border-color: var(--guide-brand);
  background: var(--guide-surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--guide-brand) 12%, transparent);
}

.support-form-body label > small {
  justify-self: end;
  color: var(--guide-subtle);
  font-size: 10px;
  font-weight: 600;
}

.support-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.support-environment {
  display: grid;
  padding: 11px 12px;
  gap: 4px;
  border: 1px solid var(--guide-line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--guide-brand) 4%, var(--guide-surface-soft));
}

.support-environment span {
  color: var(--guide-muted);
  font-size: 10px;
  font-weight: 750;
}

.support-environment code {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--guide-ink);
  font-size: 10.5px;
  line-height: 1.45;
  white-space: normal;
}

.support-privacy {
  margin: 0;
  padding: 11px 12px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--guide-green) 7%, var(--guide-surface));
  color: var(--guide-muted);
  font-size: 10.5px;
  line-height: 1.55;
}

.support-status {
  min-height: 18px;
  margin: -2px 0 0;
  color: var(--guide-rose);
  font-size: 11px;
  font-weight: 680;
}

.support-status.is-progress {
  color: var(--guide-brand-strong);
}

.support-dialog-actions {
  display: flex;
  flex: 0 0 auto;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  border-top: 1px solid var(--guide-line);
  background: color-mix(in srgb, var(--guide-surface) 94%, transparent);
}

.support-dialog-actions button,
.support-dialog-actions a,
.support-success > button {
  display: inline-flex;
  min-height: 43px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--guide-line-strong);
  border-radius: 11px;
  background: var(--guide-surface);
  color: var(--guide-muted);
  font: inherit;
  font-size: 11.5px;
  font-weight: 780;
  cursor: pointer;
}

.support-dialog-actions a:hover {
  text-decoration: none;
}

#submitSupportRequest,
.support-success > button {
  border-color: transparent;
  background: linear-gradient(135deg, var(--guide-brand), var(--guide-cyan));
  color: #fff;
}

#submitSupportRequest:disabled {
  opacity: 0.62;
  cursor: wait;
}

#supportFallback {
  margin-right: auto;
  border-color: color-mix(in srgb, var(--guide-rose) 35%, var(--guide-line));
  color: var(--guide-rose);
}

.support-success {
  display: grid;
  padding: 46px 24px;
  place-items: center;
  text-align: center;
}

.support-success[hidden] {
  display: none !important;
}

.support-success > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: color-mix(in srgb, var(--guide-green) 13%, var(--guide-surface));
  color: var(--guide-green);
}

.support-success svg {
  width: 30px;
  height: 30px;
}

.support-success h3 {
  margin: 14px 0 4px;
  font-size: 20px;
}

.support-success p {
  max-width: 400px;
  margin: 0;
  color: var(--guide-muted);
  font-size: 12px;
}

.support-success > div {
  display: grid;
  min-width: 220px;
  margin: 18px 0;
  padding: 11px 16px;
  gap: 2px;
  border: 1px dashed color-mix(in srgb, var(--guide-brand) 42%, var(--guide-line));
  border-radius: 12px;
  background: var(--guide-surface-soft);
}

.support-success small {
  color: var(--guide-muted);
  font-size: 10px;
}

.support-success strong {
  color: var(--guide-brand-strong);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.no-results {
  padding: 70px 24px;
  text-align: center;
}

.no-results svg {
  width: 46px;
  height: 46px;
  color: var(--guide-brand);
}

.no-results h2 {
  margin: 12px 0 4px;
  font-size: 22px;
}

.no-results p {
  margin: 0 0 16px;
  color: var(--guide-muted);
}

.no-results button {
  background: var(--guide-brand);
}

.guide-content-footer {
  display: flex;
  margin-top: -16px;
  padding: 24px 0 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--guide-line);
}

.guide-content-footer strong {
  font-size: 13px;
}

.guide-content-footer p {
  margin: 2px 0 0;
  color: var(--guide-muted);
  font-size: 11px;
}

.guide-content-footer > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.guide-content-footer a {
  color: var(--guide-muted);
  font-size: 11px;
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--guide-line);
  border-radius: 13px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  background: color-mix(in srgb, var(--guide-surface) 93%, transparent);
  box-shadow: var(--guide-shadow);
  color: var(--guide-brand-strong);
  font-size: 20px;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(12px);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover: hover) {
  .quick-start-grid article,
  .feature-steps article,
  .comparison-card article,
  .channel-grid article,
  .plan-guide-grid article {
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  }

  .quick-start-grid article:hover,
  .feature-steps article:hover,
  .comparison-card article:hover,
  .channel-grid article:hover,
  .plan-guide-grid article:hover {
    border-color: color-mix(in srgb, var(--guide-brand) 26%, var(--guide-line));
    box-shadow: 0 17px 38px rgba(25, 52, 87, 0.09);
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) {
  .guide-header-nav > a:not(.open-app-button),
  .theme-toggle span {
    display: none;
  }

  .theme-toggle {
    width: 42px;
    padding: 0;
    border: 1px solid var(--guide-line);
    background: var(--guide-surface);
  }

  .mobile-toc {
    position: sticky;
    top: calc(var(--guide-header-height) + 10px);
    z-index: 70;
    display: block;
    width: calc(100% - 32px);
    max-width: 880px;
    margin: 16px auto 0;
    border: 1px solid var(--guide-line);
    border-radius: 15px;
    background: color-mix(in srgb, var(--guide-surface) 94%, transparent);
    box-shadow: var(--guide-shadow-sm);
    backdrop-filter: blur(16px);
  }

  .mobile-toc summary {
    display: flex;
    min-height: 50px;
    padding: 8px 14px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    cursor: pointer;
  }

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

  .mobile-toc summary span {
    color: var(--guide-muted);
    font-size: 11px;
    font-weight: 700;
  }

  .mobile-toc summary b {
    max-width: 60%;
    overflow: hidden;
    color: var(--guide-brand-strong);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-toc nav {
    display: grid;
    max-height: min(58vh, 430px);
    padding: 8px;
    overflow-y: auto;
    border-top: 1px solid var(--guide-line);
    gap: 2px;
  }

  .mobile-toc nav a {
    padding: 9px 10px;
    border-radius: 9px;
    color: var(--guide-muted);
    font-size: 12px;
    font-weight: 680;
  }

  .mobile-toc nav a:hover {
    background: var(--guide-surface-soft);
    text-decoration: none;
  }

  .guide-layout {
    display: block;
    max-width: 900px;
    padding-top: 28px;
  }

  .guide-sidebar {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --guide-header-height: 66px;
  }

  .guide-header-inner {
    min-height: var(--guide-header-height);
    padding: 0 14px;
  }

  .guide-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .guide-brand-mark svg {
    width: 21px;
    height: 21px;
  }

  .guide-brand strong {
    font-size: 14px;
  }

  .guide-brand small {
    display: none;
  }

  .open-app-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 11px;
  }

  .guide-hero-inner {
    padding: 48px 16px 42px;
  }

  .guide-hero h1 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .guide-hero-copy {
    font-size: 15px;
  }

  .guide-search {
    grid-template-columns: 21px minmax(0, 1fr) 32px;
    min-height: 56px;
    margin-top: 24px;
    padding-left: 15px;
    gap: 9px;
    border-radius: 16px;
  }

  .guide-search input {
    height: 54px;
    font-size: 13px;
  }

  .popular-links {
    margin-top: 12px;
  }

  .popular-links span {
    width: 100%;
  }

  .guide-layout {
    padding: 26px 14px 60px;
  }

  .guide-section {
    margin-bottom: 58px;
  }

  .section-heading {
    grid-template-columns: 46px minmax(0, 1fr);
    margin-bottom: 19px;
    gap: 12px;
  }

  .section-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .section-icon svg {
    width: 23px;
    height: 23px;
  }

  .section-heading p {
    font-size: 9.5px;
  }

  .section-heading h2 {
    margin-top: 2px;
    font-size: 24px;
  }

  .section-heading > div > span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
  }

  .quick-start-grid,
  .feature-steps,
  .comparison-card,
  .channel-grid,
  .plan-guide-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .quick-start-grid article {
    min-height: 0;
    padding: 15px;
  }

  .task-card {
    border-radius: 16px;
  }

  .task-card summary {
    grid-template-columns: 34px minmax(0, 1fr) 26px;
    min-height: 70px;
    padding: 12px 13px;
    gap: 10px;
  }

  .task-number {
    width: 33px;
    height: 33px;
    border-radius: 10px;
  }

  .task-card summary strong {
    font-size: 13px;
  }

  .task-card summary small {
    font-size: 10.5px;
    line-height: 1.42;
  }

  .task-body {
    padding: 15px;
    font-size: 12.5px;
  }

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

  .callout {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 14px;
    gap: 9px;
  }

  .callout > svg {
    width: 21px;
    height: 21px;
    margin-left: 2px;
  }

  .comparison-card article {
    padding: 18px;
  }

  .dns-card {
    grid-template-columns: 1fr 1fr;
  }

  .dns-card button {
    grid-column: 1 / -1;
  }

  .support-card {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 15px;
  }

  .support-card > span {
    width: 40px;
    height: 40px;
  }

  .support-card > button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .support-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 18px;
  }

  .support-form {
    max-height: calc(100dvh - 16px);
  }

  .support-dialog-head {
    padding: 15px 14px 12px;
  }

  .support-form-body {
    padding: 14px;
  }

  .support-field-grid {
    grid-template-columns: 1fr;
  }

  .support-dialog-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
  }

  .support-dialog-actions button,
  .support-dialog-actions a {
    width: 100%;
    padding-inline: 10px;
  }

  #supportFallback:not([hidden]) {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .guide-content-footer {
    display: grid;
    gap: 12px;
  }

  .back-to-top {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .open-app-button svg,
  .theme-toggle {
    display: none;
  }

  .guide-header-nav {
    gap: 0;
  }

  .mobile-toc {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .guide-hero-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .guide-layout {
    padding-left: 10px;
    padding-right: 10px;
  }

  .dns-card {
    grid-template-columns: 1fr;
  }

  .dns-card button {
    grid-column: 1;
  }
}

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

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

/* Readability pass: enlarge guide typography by 15% without scaling controls/icons. */
body {
  font-size: 17.25px;
}

.guide-brand strong,
.comparison-card h3 {
  font-size: 18.4px;
}

.guide-brand small,
.sidebar-help p,
.sidebar-help a,
.task-number,
.mini-grid span,
.channel-grid b,
.dns-card button,
.no-results button,
.support-card > button,
.support-status,
.guide-content-footer p,
.guide-content-footer a,
.mobile-toc summary span,
.mobile-toc summary b,
.open-app-button {
  font-size: 12.65px;
}

.guide-header-nav > a:not(.open-app-button),
.theme-toggle,
.quick-start-grid article > b,
.task-body h3,
.step-list li b,
.callout strong,
.faq-list summary,
.guide-content-footer strong {
  font-size: 14.95px;
}

.eyebrow,
.section-heading p,
.search-status,
.popular-links,
.sidebar-help strong,
.mini-grid strong,
.callout p,
.callout a,
.comparison-card p,
.comparison-card li,
.inline-note,
.muted-copy,
.dns-card code,
.support-form-body label,
.support-success p,
.mobile-toc nav a {
  font-size: 13.8px;
}

.guide-toc a,
.quick-start-grid p,
.feature-steps p,
.channel-grid p,
.step-list li span,
.faq-list details > div,
.support-intro {
  font-size: 14.4px;
}

.quick-start-grid strong,
.feature-steps strong,
.channel-grid strong,
.section-heading > div > span,
.plan-guide-grid h3,
.support-card h3 {
  font-size: 16.1px;
}

.task-card summary strong {
  font-size: 16.1px;
}

.task-card summary small,
.plan-guide-grid p,
.support-card p,
.support-success > button {
  font-size: 13.25px;
}

.task-body {
  font-size: 15.5px;
}

.guide-search input {
  font-size: 17.25px;
}

.sidebar-label,
.dns-card span,
.support-dialog-head p,
.support-form-body label > small,
.support-environment span,
.support-success small {
  font-size: 11.5px;
}

.plan-badge,
.plan-guide-grid article > span {
  font-size: 10.35px;
}

.support-environment code,
.support-privacy {
  font-size: 12.1px;
}

.guide-hero h1 {
  font-size: clamp(39px, 5.75vw, 67px);
}

.guide-hero-copy {
  font-size: clamp(18.4px, 2.3vw, 21.85px);
}

.section-heading h2 {
  font-size: clamp(27.6px, 3.68vw, 38px);
}

.support-dialog-head h2 {
  font-size: 24.15px;
}

.support-form-body input,
.support-form-body select,
.support-form-body textarea {
  font-size: 14.95px;
}

.support-success h3 {
  font-size: 23px;
}

.support-success strong {
  font-size: 17.25px;
}

.no-results h2 {
  font-size: 25.3px;
}

@media (max-width: 720px) {
  .guide-brand strong {
    font-size: 16.1px;
  }

  .guide-hero h1 {
    font-size: clamp(35.65px, 11.5vw, 48.3px);
  }

  .guide-hero-copy {
    font-size: 17.25px;
  }

  .guide-search input,
  .task-card summary strong {
    font-size: 14.95px;
  }

  .section-heading p {
    font-size: 10.95px;
  }

  .section-heading h2 {
    font-size: 27.6px;
  }

  .section-heading > div > span {
    font-size: 13.8px;
  }

  .task-card summary small {
    font-size: 12.1px;
  }

  .task-body {
    font-size: 14.4px;
  }
}
