:root {
  --bg: #131316;
  --surface: #1c1c21;
  --border: #303036;
  --text: #f4f1ed;
  --muted: #aaa7a6;
  --orange: #f9731a;
  --peach: #ffb06a;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
  color-scheme: dark;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  background: radial-gradient(
    ellipse 55% 30% at 85% 10%,
    #f9731a0a,
    transparent 80%
  );
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: 6px;
}
::selection {
  background: #f9731a55;
  color: #fff;
}
img,
svg {
  display: block;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
p {
  line-height: 1.75;
}
em {
  font-style: normal;
  color: var(--peach);
}
.wrap {
  width: min(1264px, calc(100% - 112px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 10;
  background: var(--orange);
  color: var(--bg);
  padding: 14px 20px;
  border-radius: 6px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 28px;
  border-bottom: 1px solid #ffffff10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.05;
}
.brand-byline {
  display: block;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  color: #a39e9a;
  margin-top: 7px;
}
.site-header nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 0.875rem;
  color: #bab6b3;
}
.site-header nav a {
  transition: color 0.2s;
}
.site-header nav a:hover,
.footer-right a:hover {
  color: var(--peach);
}
.site-header .nav-download {
  border: 1px solid #f9731a52;
  padding: 12px 18px;
  border-radius: 6px;
  color: var(--peach);
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero {
  padding-top: 104px;
  padding-bottom: 91px;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--peach);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
}
.short-rule {
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.047em;
}
h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  line-height: 1.1;
  margin-top: 27px;
  margin-bottom: 25px;
}
h1 em {
  display: inline;
}
.hero-description {
  max-width: 465px;
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 33px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 16px 23px;
  min-height: 52px;
  border-radius: 6px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button-primary {
  color: #201206;
  background: var(--orange);
  box-shadow: 0 4px 20px #f9731a0c;
}
.button-primary:hover {
  background: #ff8f3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px #f9731a22;
}
.button span {
  font-size: 1.125rem;
}
.text-link {
  font-size: 0.875rem;
  display: inline-flex;
  gap: 15px;
  align-items: center;
  padding-block: 12px;
}
.text-link:hover {
  color: var(--peach);
}
.hero-note {
  font-size: 0.75rem;
  color: #aaa39e;
  margin-top: 22px;
}
.product-figure {
  min-width: 0;
  position: relative;
  padding-top: 15px;
}
.product-figure:before {
  content: "";
  position: absolute;
  inset: -30% 0;
  z-index: -1;
  background: radial-gradient(ellipse, #f9731a13, transparent 64%);
  pointer-events: none;
}
.app-window {
  border: 1px solid #45403b;
  border-radius: 11px;
  background: #18181c;
  box-shadow:
    0 28px 70px #0005,
    0 0 65px #f9731a08;
  overflow: hidden;
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
}
.app-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ffffff0b;
  padding: 13px 16px;
  background: #202024;
  box-shadow: inset 0 2px #f9731a75;
}
.app-brand {
  display: flex;
  gap: 7px;
  align-items: center;
  font-family: var(--serif);
  font-size: 0.9375rem;
}
.app-topbar-label {
  font-size: 0.625rem;
  color: #aaa6a3;
  margin-left: auto;
}
.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #6b3b27;
  color: #ffd0a3;
  font-size: 0.625rem;
  margin-left: 6px;
}
.app-layout {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 350px;
}
.app-sidebar {
  padding: 22px 10px 18px;
  border-right: 1px solid #ffffff0a;
  display: flex;
  flex-direction: column;
}
.sidebar-caption {
  font-size: 0.5rem;
  letter-spacing: 0.13em;
  color: #9b9798;
  padding: 0 7px 10px;
}
.sidebar-caption-lower {
  padding-top: 23px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.625rem;
  padding: 9px 8px;
  color: #b2adb0;
  border-radius: 5px;
}
.sidebar-item > span {
  font-size: 0.75rem;
  width: 13px;
}
.sidebar-item.selected {
  background: #f9731a1a;
  color: var(--peach);
}
.sidebar-footer {
  margin-top: auto;
  padding: 26px 8px 0;
  color: var(--peach);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  line-height: 1.7;
}
.sidebar-footer span {
  font-size: 0.5625rem;
  letter-spacing: 0;
  color: #999497;
}
.app-main {
  padding: 20px 19px;
}
.app-page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.app-breadcrumb {
  font-size: 0.5625rem;
  color: #999398;
}
.app-page-heading h2 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  margin-top: 8px;
}
.app-example {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: #aba2a0;
  border: 1px solid #343034;
  border-radius: 3px;
  padding: 4px 5px;
}
.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0 22px;
}
.app-stats > div {
  border: 1px solid #333035;
  border-radius: 5px;
  background: #202024;
  padding: 11px;
}
.app-stats span {
  font-size: 0.5625rem;
  color: #b0a9ab;
  display: block;
}
.app-stats strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  line-height: 1.35;
  margin-top: 4px;
}
.app-stats small {
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 400;
  color: #9ab59f;
}
.app-section-title {
  font-size: 0.6875rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}
.app-section-title > span {
  color: #9c969c;
  font-size: 0.5625rem;
}
.server-row {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid #ffffff08;
  padding: 10px 0;
}
.server-icon {
  font-size: 1rem;
  color: #b7aca4;
  background: #272328;
  border-radius: 4px;
  padding: 4px 7px;
}
.server-row > div > strong {
  font-size: 0.625rem;
  font-weight: 500;
  display: block;
}
.server-row > div > span {
  font-size: 0.5rem;
  color: #a29b9e;
  display: block;
  margin-top: 4px;
}
.status {
  margin-left: auto;
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 0.5rem;
  color: #a7c6b0;
}
.status i {
  width: 4px;
  height: 4px;
  background: #a7c6b0;
  border-radius: 50%;
}
.deployment-note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px;
  margin-top: 11px;
  border: 1px solid #f9731a22;
  background: #f9731a06;
  border-radius: 5px;
}
.deployment-note > span:first-child {
  color: var(--peach);
  font-size: 0.8rem;
}
.deployment-note strong {
  display: block;
  font-weight: 400;
  font-size: 0.5625rem;
  color: #dcc4b3;
}
.deployment-note div > span {
  font-size: 0.5rem;
  color: #a49a96;
  display: block;
  margin-top: 4px;
}
.deployment-time {
  font-size: 0.5rem;
  color: #a49a96;
  margin-left: auto;
  white-space: nowrap;
}
figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  line-height: 1.6;
  color: #aaa39d;
  font-size: 0.625rem;
}
.caption-line {
  width: 18px;
  height: 1px;
  background: #f9731a9c;
}
.preview-disclaimer {
  margin-left: auto;
  color: #918983;
  font-size: 0.5625rem;
}
.essentials {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.essentials > span {
  color: var(--peach);
}
.essentials strong {
  font-weight: 400;
  color: var(--text);
}
.essentials ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.essentials li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.essentials li:before {
  content: "✓";
  color: var(--peach);
  font-size: 0.8rem;
}
.section {
  padding-block: 95px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.35rem);
  line-height: 1.16;
  margin-top: 18px;
}
.section-heading > p {
  max-width: 310px;
  color: var(--muted);
  font-size: 1rem;
  padding-bottom: 4px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.feature {
  padding: 31px 29px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(145deg, #ffffff02, transparent);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.feature:hover {
  background: #ffb06a04;
}
.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}
.feature-top svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--peach);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-top > span {
  font-family: var(--mono);
  color: #9c9188;
  font-size: 0.75rem;
}
.feature h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.38rem;
  letter-spacing: -0.025em;
  margin-bottom: 13px;
}
.feature p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 23px;
}
.feature-detail {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: #bca38f;
  line-height: 1.7;
  margin-top: auto;
}
.access-note {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 27px;
  padding: 24px 29px;
  background: #1c1c2160;
  border: 1px solid #ffffff08;
  border-radius: 5px;
}
.access-symbol {
  font-size: 1.8rem;
  color: var(--peach);
}
.access-note p {
  font-size: 0.875rem;
  color: var(--muted);
}
.access-note strong {
  color: var(--text);
  font-weight: 500;
  margin-right: 5px;
}
kbd {
  font-family: var(--mono);
  font-size: 0.7rem;
  padding: 3px 5px;
  white-space: nowrap;
  background: #ffffff06;
  border: 1px solid #ffffff13;
  border-radius: 3px;
}
.how-section {
  border-block: 1px solid var(--border);
  background: #1b191945;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 62px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: steps;
}
.step-number {
  display: inline-flex;
  border-top: 1px solid #f9731a70;
  width: 100%;
  padding-top: 20px;
  color: var(--peach);
  font-family: var(--mono);
  font-size: 0.8125rem;
  margin-bottom: 20px;
}
.steps h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  margin-bottom: 13px;
}
.steps p {
  font-size: 0.9375rem;
  color: var(--muted);
}
.download {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding-block: 104px;
}
.download-logo {
  margin-bottom: 24px;
  margin-left: -5px;
}
.download h2 {
  font-size: clamp(2.5rem, 3.7vw, 3.75rem);
  line-height: 1.14;
  margin: 17px 0 21px;
}
.download-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  max-width: 380px;
}
.download-copy > .button {
  margin-top: 29px;
}
.download-source {
  display: block;
  font-size: 0.75rem;
  color: #a89f99;
  margin-top: 15px;
}
.setup-panel {
  background: #1c1c21;
  border: 1px solid #3a3330;
  border-radius: 8px;
  overflow: hidden;
}
.setup-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: var(--peach);
}
.setup-panel-heading > span:last-child {
  color: #aaa3a0;
  letter-spacing: 0;
}
.setup-steps {
  margin: 0;
  padding: 27px 25px 22px;
  list-style: none;
  display: grid;
  gap: 25px;
}
.setup-steps li {
  display: flex;
  gap: 16px;
}
.setup-steps li > span {
  height: 25px;
  width: 25px;
  border: 1px solid #f9731a45;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--peach);
}
.setup-steps li > div {
  min-width: 0;
}
.setup-steps h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 7px;
  line-height: 1.5;
}
.setup-steps p {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--muted);
}
code {
  font-family: var(--mono);
  font-size: 0.9em;
  color: #ddc4b3;
  overflow-wrap: anywhere;
}
pre {
  padding: 14px 15px;
  background: #131316;
  border: 1px solid #39302b;
  border-radius: 4px;
  margin: 13px 0 0;
  overflow-x: auto;
  font-size: 0.75rem;
}
pre code {
  color: var(--peach);
  font-size: 1em;
}
.setup-footnote {
  padding: 18px 24px;
  font-size: 0.75rem;
  line-height: 1.7;
  color: #b0a5a0;
  border-top: 1px solid var(--border);
  background: #ffffff02;
}
.site-footer {
  padding-block: 33px 37px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand {
  font-size: 1.3rem;
  gap: 8px;
}
.site-footer p {
  font-size: 0.75rem;
  color: #aaa29c;
  margin-top: 13px;
}
.footer-right {
  text-align: right;
}
.footer-right nav {
  display: flex;
  gap: 28px;
  font-size: 0.8125rem;
  color: #c0b7b1;
  padding-block: 7px;
}
.footer-right nav span {
  font-size: 0.75rem;
  margin-left: 3px;
}
.footer-right p {
  margin-top: 16px;
}
@media (min-width: 1500px) {
  .hero {
    gap: 65px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .hero {
    gap: 30px;
    padding-block: 75px;
  }
  h1 {
    font-size: 3.45rem;
  }
  .eyebrow {
    font-size: 0.6875rem;
  }
  .app-sidebar {
    display: none;
  }
  .app-layout {
    grid-template-columns: 1fr;
  }
  .app-main {
    padding: 20px;
  }
  .app-topbar-label {
    font-size: 0.5625rem;
  }
  .app-stats span,
  .server-row > div > strong {
    font-size: 0.625rem;
  }
  .hero-actions {
    gap: 15px;
  }
  .essentials {
    align-items: flex-start;
    font-size: 0.75rem;
  }
  .essentials ul {
    gap: 20px;
  }
  .feature {
    padding: 25px 22px;
  }
  .feature h3 {
    font-size: 1.25rem;
  }
  .download {
    gap: 55px;
  }
  .steps {
    gap: 35px;
  }
}
@media (max-width: 850px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .site-header {
    padding-block: 22px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
    gap: 48px;
    padding-bottom: 55px;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero h1 {
    font-size: clamp(3rem, 7.9vw, 4.5rem);
  }
  .hero-description {
    max-width: 510px;
  }
  .product-figure {
    width: min(100%, 620px);
    margin-inline: auto;
  }
  .app-window {
    transform: none;
  }
  .app-sidebar {
    display: flex;
  }
  .app-layout {
    grid-template-columns: 130px 1fr;
  }
  .app-topbar-label {
    font-size: 0.6875rem;
  }
  .app-main {
    padding: 23px;
  }
  .app-breadcrumb,
  .app-example {
    font-size: 0.625rem;
  }
  .app-page-heading h2 {
    font-size: 1.55rem;
  }
  .sidebar-caption {
    font-size: 0.5625rem;
  }
  .sidebar-item {
    font-size: 0.6875rem;
  }
  .server-row > div > span,
  .status,
  .deployment-note strong,
  .deployment-time {
    font-size: 0.625rem;
  }
  .app-stats span {
    font-size: 0.6875rem;
  }
  .app-stats small {
    font-size: 0.625rem;
  }
  .app-section-title {
    font-size: 0.75rem;
  }
  .app-section-title > span {
    font-size: 0.625rem;
  }
  .deployment-note div > span {
    font-size: 0.5625rem;
  }
  .essentials {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 0.8125rem;
  }
  .essentials ul {
    gap: 25px;
  }
  .section {
    padding-block: 70px;
  }
  .section-heading {
    align-items: start;
    gap: 30px;
  }
  .section-heading > p {
    max-width: 240px;
    font-size: 0.9375rem;
    padding-top: 35px;
  }
  .section-heading h2 {
    font-size: 2.6rem;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature {
    padding: 27px;
  }
  .feature h3 {
    font-size: 1.35rem;
  }
  .steps {
    gap: 27px;
  }
  .steps h3 {
    font-size: 1.35rem;
  }
  .download {
    gap: 35px;
  }
  .download h2 {
    font-size: 2.7rem;
  }
  .setup-panel-heading {
    padding: 16px;
  }
  .setup-panel-heading span:last-child {
    display: none;
  }
  .setup-steps {
    padding: 22px 16px;
  }
  .setup-steps li {
    gap: 12px;
  }
  .setup-footnote {
    padding: 17px;
  }
  .footer-right nav {
    gap: 19px;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .brand {
    font-size: 1.4rem;
    gap: 8px;
  }
  .brand > img {
    width: 37px;
    height: 37px;
  }
  .brand-byline {
    font-size: 0.5625rem;
  }
  .site-header {
    gap: 12px;
  }
  .site-header nav {
    gap: 15px;
    font-size: 0.75rem;
  }
  .site-header nav > a:nth-child(2) {
    display: none;
  }
  .site-header .nav-download {
    padding: 10px 12px;
    gap: 10px;
  }
  .hero {
    padding-top: 53px;
    gap: 37px;
  }
  .hero .eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.07em;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 8.7vw, 3.7rem);
    line-height: 1.13;
    margin-top: 20px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 21px;
    margin-top: 26px;
  }
  .button {
    padding: 15px 19px;
    gap: 22px;
    font-size: 0.875rem;
  }
  .text-link {
    font-size: 0.8125rem;
    gap: 8px;
  }
  .hero-note {
    font-size: 0.6875rem;
  }
  .product-figure {
    padding-top: 4px;
  }
  .app-topbar {
    padding: 11px 13px;
  }
  .app-topbar-label {
    display: none;
  }
  .avatar {
    margin-left: auto;
  }
  .app-sidebar {
    display: none;
  }
  .app-layout {
    grid-template-columns: 1fr;
  }
  .app-main {
    padding: 18px;
  }
  .app-stats {
    margin-block: 16px 20px;
  }
  .app-stats strong {
    font-size: 1.6rem;
  }
  .app-stats > div {
    padding: 11px 10px;
  }
  .app-section-title {
    margin-bottom: 11px;
  }
  .server-row {
    padding: 11px 0;
  }
  .server-row > div > strong {
    font-size: 0.75rem;
  }
  .server-row > div > span,
  .status {
    font-size: 0.625rem;
  }
  .deployment-note {
    padding: 12px 10px;
    gap: 8px;
  }
  .deployment-time {
    display: none;
  }
  .deployment-note strong {
    font-size: 0.6875rem;
  }
  .deployment-note div > span {
    font-size: 0.625rem;
  }
  figcaption {
    font-size: 0.6875rem;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 5px;
  }
  .preview-disclaimer {
    flex-basis: 100%;
    margin-left: 23px;
    font-size: 0.625rem;
  }
  .essentials {
    padding-block: 20px;
    font-size: 0.75rem;
    align-items: flex-start;
  }
  .essentials ul {
    flex-wrap: wrap;
    gap: 12px 21px;
  }
  .essentials li {
    font-size: 0.6875rem;
    gap: 6px;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 2.3rem;
    margin-top: 13px;
  }
  .section-heading > p {
    max-width: 350px;
    padding-top: 19px;
    font-size: 1rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature {
    padding: 28px;
  }
  .feature-top {
    margin-bottom: 18px;
  }
  .feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .feature p {
    font-size: 1rem;
    margin-bottom: 19px;
  }
  .feature-detail {
    font-size: 0.75rem;
  }
  .access-note {
    padding: 21px;
    gap: 15px;
    align-items: flex-start;
  }
  .access-note p {
    font-size: 0.875rem;
  }
  .access-symbol {
    font-size: 1.5rem;
  }
  .access-note strong {
    display: block;
    margin-bottom: 7px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .step-number {
    margin-bottom: 15px;
    padding-top: 17px;
  }
  .steps h3 {
    font-size: 1.5rem;
  }
  .steps p {
    font-size: 1rem;
  }
  .download {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .download-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
  .download h2 {
    font-size: 2.8rem;
  }
  .download-copy > p:not(.eyebrow) {
    max-width: 360px;
  }
  .setup-panel-heading {
    padding: 18px 20px;
  }
  .setup-panel-heading span:last-child {
    display: block;
  }
  .setup-steps {
    padding: 25px 20px;
  }
  .setup-steps h3 {
    font-size: 1rem;
  }
  .setup-steps p {
    font-size: 0.875rem;
  }
  .setup-footnote {
    padding: 20px;
    font-size: 0.8125rem;
  }
  .site-footer {
    display: block;
    padding-block: 29px;
  }
  .footer-right {
    text-align: left;
    margin-top: 22px;
  }
  .footer-right nav {
    flex-wrap: wrap;
    font-size: 0.8125rem;
    gap: 20px;
  }
  .footer-right p {
    margin-top: 12px;
  }
  .site-footer p {
    font-size: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}

/* Keep reading text comfortable; the miniature app is illustrative. */
.feature p,
.steps p {
  font-size: 1rem;
}
.feature-detail,
.setup-steps p,
.access-note p {
  font-size: 0.875rem;
}
@media (max-width: 360px) {
  .site-header nav > a:first-child {
    display: none;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .setup-panel-heading > span:last-child {
    display: none;
  }
}
