/* PadKeys website — visual language mirrors the iPad app.
   Dark launch hero, Classic White product surfaces, calm typography. */

:root {
  /* Launch-screen dark gradient (from AppLaunchSplashView) */
  --launch-top: #2e2e33;
  --launch-bottom: #131316;

  /* Classic White theme (from ClassicWhiteTheme.swift) */
  --surface: #edede8;
  --keycap: #fafaf7;
  --panel: #f5f5f0;
  --pressed: #dbddda;
  --label: #292b2e;
  --label-secondary: #616264;
  --border: rgba(0, 0, 0, 0.08);
  --accent: #2e66db;
  --connected: #1e8c47;
  --warning: #c7332a;

  /* Web neutrals */
  --ink: #14151a;
  --ink-soft: #50535c;
  --page: #ffffff;
  --page-tint: #f6f6f4;
  --hairline: rgba(20, 21, 26, 0.1);

  --maxw: 1120px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 50px rgba(15, 16, 22, 0.12);
  --shadow-card: 0 8px 28px rgba(15, 16, 22, 0.08);

  --font: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--page);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--tint {
  background: var(--page-tint);
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--label-secondary);
  margin: 0 0 14px;
}

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

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  max-width: 18ch;
}

.section-lead {
  margin: 18px 0 0;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease,
    border-color 0.16s ease, box-shadow 0.16s ease;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(46, 102, 219, 0.28);
}

.btn--primary:hover {
  background: #295dc6;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn--light {
  background: #fff;
  color: var(--ink);
  border-color: var(--hairline);
  box-shadow: var(--shadow-card);
}

.btn--light:hover {
  border-color: rgba(20, 21, 26, 0.2);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--dark:hover {
  background: #000;
}

.btn--helper-cta {
  height: 48px;
  min-width: 184px;
  padding: 0 24px;
  border-radius: 10px;
  background: #2b2b2f;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  font-size: 17px;
  font-weight: 650;
}

.btn.btn--helper-cta {
  color: #fff;
}

.btn--helper-cta:hover {
  color: #fff;
  background: #37373c;
  border-color: rgba(255, 255, 255, 0.4);
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.app-store-badge:hover {
  opacity: 0.9;
}

.app-store-badge:active {
  transform: translateY(1px);
}

.app-store-badge img {
  width: auto;
  height: 48px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--hairline);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.brand__name .dim {
  color: var(--label-secondary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.15s ease;
}

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

.nav .btn--helper-cta,
.nav .btn--helper-cta:hover {
  color: #fff;
  border-bottom: none;
}

.nav .btn:not(.btn--helper-cta) {
  padding: 9px 18px;
  font-size: 14px;
  border-radius: 11px;
}

.nav__toggle {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(180deg, var(--launch-top), var(--launch-bottom));
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 70% -10%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 88px 0 96px;
}

.hero__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  transform: translateX(-14px);
}

.hero__logo-icon {
  display: block;
  width: 112px;
  height: 124px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero__wordmark .wm-text {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  transform: translateY(-8px);
}

.hero__wordmark .wm-text .pad {
  color: #a8a8ad;
  font-weight: 500;
}

.hero__wordmark .wm-text .keys {
  color: #f5f5f7;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  max-width: 16ch;
}

.hero__sub {
  margin: 22px 0 0;
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.72);
  max-width: 46ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 18px;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.hero__trust .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46c172;
  box-shadow: 0 0 0 4px rgba(70, 193, 114, 0.18);
}

/* ---------- iPad mockup ---------- */
.ipad {
  position: relative;
  width: 100%;
  aspect-ratio: 2360 / 1640;
  border-radius: 30px;
  padding: 14px;
  background: linear-gradient(160deg, #3a3a3f, #1c1c20);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ipad__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  padding: 10px 12px 12px;
  gap: 8px;
}

.ipad__screen--image {
  display: block;
  padding: 0;
  gap: 0;
  background: var(--surface);
}

.hero-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* App top control bar */
.app-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 30px;
  flex-shrink: 0;
}

.app-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 11px;
  border-radius: 9px;
  background: var(--keycap);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--label);
}

.app-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--connected);
}

.app-pastebar {
  flex: 1;
  height: 26px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 11px;
  font-size: 11px;
  color: rgba(97, 98, 100, 0.7);
}

.app-send {
  height: 26px;
  padding: 0 14px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.app-menu {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--label-secondary);
  font-size: 16px;
}

/* Keyboard */
.kbd {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3px, 0.7vw, 6px);
  justify-content: center;
}

.kbd__row {
  display: flex;
  gap: clamp(3px, 0.7vw, 6px);
  justify-content: center;
}

.key {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: clamp(20px, 3.4vw, 40px);
  border-radius: clamp(6px, 1vw, 11px);
  background: var(--keycap);
  border: 1px solid var(--border);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  color: var(--label);
  font-size: clamp(9px, 1.25vw, 15px);
  font-weight: 600;
}

.key--fn {
  height: clamp(15px, 2.4vw, 28px);
  font-size: clamp(7px, 0.95vw, 11px);
  font-weight: 500;
  color: var(--label-secondary);
}

.key--armed {
  background: var(--pressed);
  border-color: rgba(80, 84, 87, 0.82);
  border-width: 2px;
}

.key--mod {
  font-size: clamp(7px, 0.95vw, 12px);
  font-weight: 500;
  color: var(--label-secondary);
}

.key__sec {
  position: absolute;
  top: clamp(2px, 0.5vw, 5px);
  right: clamp(3px, 0.6vw, 7px);
  font-size: clamp(6px, 0.85vw, 10px);
  font-weight: 500;
  color: rgba(97, 98, 100, 0.6);
}

.key__pri {
  position: absolute;
  bottom: clamp(2px, 0.55vw, 6px);
  left: clamp(4px, 0.7vw, 8px);
}

/* width helpers (relative to a 1-unit key) */
.w125 { flex-grow: 1.25; }
.w135 { flex-grow: 1.35; }
.w145 { flex-grow: 1.45; }
.w155 { flex-grow: 1.55; }
.w200 { flex-grow: 2; }
.w205 { flex-grow: 2.05; }
.w250 { flex-grow: 2.5; }
.w130 { flex-grow: 1.3; }
.w-space { flex-grow: 6.3; }

/* Trackpad deck */
.deck {
  flex-shrink: 0;
  height: clamp(46px, 7vw, 78px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deck__pad {
  width: clamp(150px, 28vw, 260px);
  height: 100%;
  border-radius: clamp(10px, 1.6vw, 18px);
  background: var(--panel);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: rgba(97, 98, 100, 0.55);
  font-size: clamp(9px, 1.1vw, 12px);
  font-weight: 500;
}

.deck__lock {
  position: absolute;
  left: clamp(18px, 4vw, 42px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(30px, 4.6vw, 50px);
  height: clamp(30px, 4.6vw, 50px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.13);
  display: grid;
  place-items: center;
  color: var(--label);
}

.deck__arrows {
  position: absolute;
  right: clamp(14px, 3vw, 38px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: clamp(70px, 13vw, 116px);
}

.deck__arrows .key {
  flex: none;
  height: clamp(15px, 2.2vw, 26px);
  font-size: clamp(8px, 1vw, 13px);
}

.deck__arrows .key--up {
  grid-column: 2;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.step {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}

.step__num {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--label);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
}

.step p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- Download ---------- */
.downloads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 42px;
}

.download-card {
  min-height: 300px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.download-card__header {
  margin-bottom: 38px;
}

.download-card h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.download-list {
  display: grid;
}

.download-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--ink);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.download-row:first-child {
  border-top: none;
}

.download-row svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.86;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.download-row:hover svg {
  transform: translateY(2px);
  opacity: 1;
}

.download-help {
  margin-top: 22px;
  text-align: center;
  color: var(--label-secondary);
  font-size: 14px;
}

.download-help a {
  color: var(--accent);
  font-weight: 650;
}

/* ---------- Pricing ---------- */
.pricing-card {
  max-width: 560px;
  margin: 48px auto 0;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, var(--page-tint));
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-soft);
}

.pricing-card .tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(46, 102, 219, 0.1);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 18px;
}

.pricing-card h3 {
  font-size: 26px;
  font-weight: 600;
}

.pricing-card p {
  color: var(--ink-soft);
  margin: 14px auto 0;
  max-width: 40ch;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
  text-align: left;
  max-width: 340px;
  margin-inline: auto;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  color: var(--ink);
}

.pricing-list .check {
  color: var(--connected);
  font-weight: 700;
}

.pricing-card .fineprint {
  margin-top: 26px;
  font-size: 13px;
  color: var(--label-secondary);
}

/* ---------- Privacy strip ---------- */
.privacy-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.privacy-strip__text h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
}

.privacy-strip__text p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.privacy-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.privacy-points li {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.privacy-points .ico {
  flex-shrink: 0;
  width: 22px;
  color: var(--accent);
}

.privacy-points strong {
  display: block;
  font-size: 15px;
}

.privacy-points span {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: grid;
  gap: 14px;
}

details.faq {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 4px 24px;
  box-shadow: var(--shadow-card);
}

details.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

details.faq summary .chev {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--label-secondary);
}

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

.faq__body {
  padding: 0 0 22px;
  color: var(--ink-soft);
  font-size: 15px;
}

.faq__body ol,
.faq__body ul {
  padding-left: 20px;
}

.faq__body li {
  margin-bottom: 6px;
}

.faq__body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--page-tint);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 13px;
}

.faq-cat {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--label-secondary);
  margin: 34px 0 4px;
}

.faq-cat:first-of-type {
  margin-top: 0;
}

/* ---------- Subpage header ---------- */
.subhero {
  background: linear-gradient(180deg, var(--launch-top), var(--launch-bottom));
  color: #fff;
  padding: 72px 0 64px;
}

.subhero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
}

.subhero p {
  margin: 16px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 60ch;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 12px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--ink-soft);
  font-size: 16px;
}

.prose ul,
.prose ol {
  color: var(--ink-soft);
  font-size: 16px;
  padding-left: 22px;
}

.prose li {
  margin-bottom: 7px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--launch-bottom);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 40px;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .brand {
  color: #fff;
}

.site-footer__tag {
  margin: 14px 0 0;
  max-width: 32ch;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-nav h4 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.footer-nav a {
  display: block;
  font-size: 14px;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.site-footer__bottom {
  padding-top: 26px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Keycap logo (CSS-built P keycap) ---------- */
.keycap-logo {
  position: relative;
  border-radius: 28%;
  background: linear-gradient(180deg, #fdfdfe, #c9c9ce);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
}

.keycap-logo::before {
  content: "";
  position: absolute;
  inset: 5%;
  border-radius: 24%;
  background: linear-gradient(180deg, #ffffff, #e8e8ec);
  box-shadow: inset 0 0 0 0.6px rgba(255, 255, 255, 0.85),
    0 2px 5px rgba(0, 0, 0, 0.18);
}

.keycap-logo span {
  position: relative;
  z-index: 1;
  font-weight: 600;
  color: #2c2c2e;
  font-size: 52%;
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 64px 0 72px;
  }

  .hero__wordmark {
    transform: translateX(-10px);
  }

  .hero__logo-icon {
    width: 104px;
    height: 112px;
  }

  .hero__wordmark .wm-text {
    font-size: 54px;
    transform: translateY(-7px);
  }

  .ipad {
    max-width: 560px;
    margin: 0 auto;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .download-card {
    min-height: 0;
  }

  .privacy-strip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 68px 0;
  }

  .download-card {
    padding: 24px;
  }

  .download-card h3 {
    font-size: 28px;
  }

  .download-row {
    min-height: 72px;
    font-size: 23px;
  }

  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 24px 20px;
    transform: translateY(-130%);
    transition: transform 0.26s ease;
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
    font-size: 16px;
  }

  .nav .btn:not(.btn--helper-cta) {
    margin-top: 14px;
    justify-content: center;
    padding: 13px 18px;
    font-size: 15px;
  }

  .nav .btn--helper-cta {
    margin-top: 14px;
    width: 100%;
    padding: 0 24px;
    justify-content: center;
  }

  .nav__toggle {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
  }

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

  .hero__cta .btn {
    flex: 1;
  }
}
