:root {
  --ink: #101828;
  --storm: #063348;
  --storm-2: #08293a;
  --cream: #fff6e8;
  --shell: #eed7b8;
  --surface: #f7f1e7;
  --white: #ffffff;
  --copper: #a6422c;
  --copper-dark: #87331f;
  --mango: #ffb51b;
  --teal: #087c89;
  --proof: #3e5962;
  --gray: #52616c;
  --line: rgba(16, 24, 40, 0.14);
  --shadow: 0 18px 45px rgba(6, 51, 72, 0.16);
  --radius: 8px;
  color-scheme: light;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 38px;
  color: var(--white);
  background: rgba(6, 51, 72, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand img {
  width: 194px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  color: var(--mango);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--storm);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: image-set(
    url("/assets/hero-900.webp") 1x,
    url("/assets/hero-1600.webp") 2x
  );
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
}

.hero-setup .hero-photo {
  background-image: url("/assets/mini-pc-user-reference.png");
  background-color: var(--storm);
  background-repeat: no-repeat;
  background-size: min(980px, 64vw) auto;
  background-position: right 4vw bottom -44px;
  transform: none;
}

.hero-setup .hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(6, 51, 72, 0.98) 0%,
      rgba(6, 51, 72, 0.9) 42%,
      rgba(6, 51, 72, 0.28) 70%,
      rgba(6, 51, 72, 0.04) 100%
    ),
    linear-gradient(180deg, rgba(6, 51, 72, 0.08), rgba(6, 51, 72, 0.34));
}

.hero-setup .hero-inner {
  padding-top: 178px;
  padding-bottom: 132px;
}

.hero-shade {
  background: rgba(4, 25, 34, 0.56);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 160px 0 68px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--mango);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 900;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1.38;
  font-weight: 620;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 12px 25px rgba(166, 66, 44, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--copper-dark);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.source-note {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--storm-2);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item {
  min-height: 132px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item strong {
  display: block;
  color: var(--mango);
  font-size: 16px;
  margin-bottom: 8px;
}

.trust-item span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-band,
.offers-band,
.inventory-band,
.proof-band,
.match-band,
.terms-band {
  padding: 76px 0;
}

.intro-band {
  background: var(--white);
}

.offers-band {
  background: var(--surface);
}

.inventory-band {
  background: var(--white);
}

.proof-band {
  background: var(--surface);
}

.match-band {
  background: var(--storm);
  color: var(--white);
}

.terms-band {
  background: var(--surface);
}

.two-column,
.match-layout,
.terms-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
}

.plain-copy p,
.section-heading p,
.match-copy p,
.terms-list p {
  margin: 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.62;
}

.plain-copy p + p {
  margin-top: 18px;
  color: var(--proof);
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.setup-offer-grid {
  grid-template-columns: repeat(4, 1fr);
}

.offer-card,
.lead-form,
.next-steps,
.terms-list article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}

.offer-card.featured {
  border-color: rgba(166, 66, 44, 0.42);
  box-shadow: var(--shadow);
}

.offer-topline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.offer-topline span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-topline strong {
  color: var(--copper);
  font-size: 24px;
  font-weight: 900;
}

.offer-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.18;
}

.offer-card p {
  margin: 0;
  color: var(--gray);
  line-height: 1.55;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 22px 0 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.42;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

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

.unit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.unit-row strong,
.unit-row span {
  display: block;
}

.unit-row strong {
  font-size: 19px;
  margin-bottom: 4px;
}

.unit-row span {
  color: var(--gray);
  line-height: 1.45;
}

.unit-row p {
  margin: 0;
  color: var(--copper);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.preferred-unit {
  border-color: rgba(8, 124, 137, 0.45);
  background: #f5fbfb;
}

.setup-proof-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.product-photo-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7faf8;
  box-shadow: var(--shadow);
}

.product-photo-panel img {
  width: 100%;
  height: auto;
}

.photo-caption {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.photo-caption strong {
  color: var(--teal);
}

.photo-caption span {
  color: var(--gray);
  line-height: 1.45;
}

.setup-specs {
  margin-bottom: 0;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.spec-grid div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.spec-grid strong {
  color: var(--copper);
  margin-bottom: 6px;
}

.spec-grid span {
  color: var(--gray);
  line-height: 1.4;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-grid div {
  min-height: 140px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.proof-grid strong {
  color: var(--teal);
  margin-bottom: 8px;
}

.proof-grid span {
  color: var(--gray);
  line-height: 1.45;
}

.match-copy .section-kicker {
  color: var(--mango);
}

.match-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.next-steps {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.next-steps strong {
  display: block;
  color: var(--mango);
  margin-bottom: 12px;
}

.next-steps ol {
  margin: 0;
  padding-left: 22px;
}

.next-steps li {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-intro {
  margin: 0;
  color: var(--proof);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.optional-details {
  border: 1px solid rgba(16, 24, 40, 0.16);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.optional-details summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.optional-details summary span {
  color: var(--gray);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.optional-details[open] {
  padding-bottom: 14px;
}

.optional-details[open] summary {
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
  margin-bottom: 14px;
}

.optional-details .form-row {
  padding: 0 14px;
}

.optional-details .form-row + .form-row {
  margin-top: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

label span {
  color: var(--gray);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16, 24, 40, 0.22);
  border-radius: 7px;
  font: inherit;
  font-weight: 520;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 181, 27, 0.34);
  border-color: var(--copper);
}

.checkbox-line {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.checkbox-line input {
  min-height: auto;
  margin-top: 2px;
}

.form-button {
  width: 100%;
  border: 0;
}

.privacy-note,
.form-status {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-note a {
  color: var(--teal);
  font-weight: 800;
}

.form-status {
  min-height: 20px;
  font-weight: 760;
}

.form-status.success {
  color: #2e6f40;
}

.form-status.error {
  color: #a6422c;
}

.terms-grid {
  grid-template-columns: 0.75fr 1.25fr;
}

.terms-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.terms-list article {
  padding: 20px;
  background: var(--white);
}

.terms-list strong {
  display: block;
  color: var(--teal);
  margin-bottom: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 38px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--storm-2);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong {
  color: var(--white);
  margin-bottom: 4px;
}

.site-footer a {
  margin-top: 8px;
  color: var(--sun);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer p {
  max-width: 580px;
  margin: 0;
  line-height: 1.45;
}

.policy-page {
  background: var(--mist);
}

.policy-main {
  padding: 128px 0 70px;
}

.policy-content {
  max-width: 880px;
}

.policy-content h1 {
  max-width: 760px;
  margin: 10px 0 18px;
  color: var(--storm);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.policy-content h2 {
  margin: 34px 0 10px;
  color: var(--teal);
  font-size: 22px;
}

.policy-content p {
  max-width: 780px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.65;
}

.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  color: var(--white);
  background: var(--copper);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(6, 51, 72, 0.32);
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    padding: 12px 20px;
  }

  .brand img {
    width: 164px;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-photo {
    background-position: 58% center;
  }

  .hero-setup {
    min-height: 760px;
  }

  .hero-setup .hero-photo {
    background-size: 620px auto;
    background-position: right -64px bottom -24px;
  }

  .hero-setup .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(6, 51, 72, 0.98) 0%,
        rgba(6, 51, 72, 0.9) 58%,
        rgba(6, 51, 72, 0.3) 78%,
        rgba(6, 51, 72, 0.08) 100%
      );
  }

  .hero-setup .hero-inner {
    padding-top: 132px;
    padding-bottom: 260px;
  }

  .hero-inner {
    width: min(100% - 36px, 720px);
    padding: 132px 0 44px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: 48px;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 18px;
  }

  .trust-strip,
  .offer-grid,
  .setup-offer-grid,
  .setup-proof-layout,
  .two-column,
  .match-layout,
  .terms-grid,
  .terms-list {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    min-height: 0;
  }

  .intro-band,
  .offers-band,
  .inventory-band,
  .proof-band,
  .match-band,
  .terms-band {
    padding: 56px 0;
  }

  h2 {
    font-size: 34px;
  }

  .offer-card,
  .proof-grid div {
    min-height: 0;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    background: rgba(6, 51, 72, 0.72);
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-photo {
    background-position: 64% center;
  }

  .hero-setup .hero-photo {
    background-size: 470px auto;
    background-position: center bottom -14px;
  }

  .hero-setup {
    min-height: 780px;
  }

  .hero-setup .hero-inner {
    padding-top: 150px;
    padding-bottom: 284px;
  }

  .hero-shade {
    background: rgba(4, 25, 34, 0.66);
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding-top: 152px;
  }

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

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .form-row,
  .spec-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  h2 {
    font-size: 30px;
  }

  .unit-row {
    grid-template-columns: 1fr;
  }

  .unit-row p {
    white-space: normal;
  }

  .lead-form {
    padding: 20px;
  }

  input,
  select,
  textarea,
  .optional-details summary {
    min-height: 50px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 20px;
  }

  .sticky-cta {
    display: flex;
  }
}

.setup-quiz-page .site-header {
  position: absolute;
  min-height: 66px;
  background: rgba(6, 51, 72, 0.9);
}

.setup-quiz-hero {
  min-height: 100svh;
  padding: 106px 0 58px;
  color: var(--white);
  background: var(--storm);
}

.setup-quiz-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 520px);
  gap: 44px;
  align-items: center;
}

.setup-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  font-weight: 900;
}

.setup-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.42;
  font-weight: 650;
}

.setup-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.setup-trust-chips span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 850;
}

.quiz-form {
  padding: 0;
  overflow: hidden;
}

.quiz-card {
  padding: 24px;
}

.quiz-meter {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--proof);
  font-size: 13px;
  font-weight: 900;
}

.quiz-meter i {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.12);
}

.quiz-meter b {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 160ms ease;
}

.quiz-step[hidden],
.quiz-back[hidden] {
  display: none;
}

.quiz-question {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 900;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-button {
  min-height: 54px;
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid rgba(16, 24, 40, 0.18);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.choice-button:hover,
.choice-button:focus-visible,
.choice-button.is-selected {
  outline: 3px solid rgba(255, 181, 27, 0.28);
  border-color: var(--teal);
  background: #f2fbfa;
}

.quiz-back {
  margin-top: 14px;
  padding: 0;
  color: var(--teal);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.quiz-result {
  margin-bottom: 14px;
  padding: 14px;
  color: var(--proof);
  background: #f5fbfb;
  border: 1px solid rgba(8, 124, 137, 0.22);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.quiz-contact-step {
  display: grid;
  gap: 14px;
}

.setup-proof-strip .trust-item {
  min-height: 112px;
}

.setup-options-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.compact-option-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.compact-option-list article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.compact-option-list strong,
.compact-option-list span {
  display: block;
}

.compact-option-list strong {
  color: var(--teal);
  margin-bottom: 5px;
}

.compact-option-list span {
  color: var(--gray);
  line-height: 1.45;
}

@media (max-width: 920px) {
  .setup-quiz-shell,
  .setup-options-grid {
    grid-template-columns: 1fr;
  }

  .setup-quiz-hero {
    padding-top: 96px;
  }
}

@media (max-width: 640px) {
  .setup-quiz-page .site-header {
    min-height: 60px;
    padding: 12px 16px;
  }

  .setup-quiz-page .brand img {
    width: 156px;
  }

  .setup-quiz-page .nav-links {
    display: none;
  }

  .setup-quiz-hero {
    min-height: auto;
    padding: 86px 0 34px;
  }

  .setup-quiz-shell {
    width: calc(100% - 28px);
    gap: 18px;
  }

  .setup-hero-copy h1 {
    max-width: 350px;
    font-size: 34px;
    line-height: 1.03;
  }

  .setup-hero-copy p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.4;
  }

  .setup-trust-chips {
    gap: 6px;
    margin-top: 14px;
  }

  .setup-trust-chips span {
    min-height: 32px;
    padding: 7px 8px;
    font-size: 12px;
  }

  .quiz-card {
    padding: 16px;
  }

  .quiz-question {
    font-size: 21px;
  }

  .choice-grid {
    gap: 8px;
  }

  .choice-button {
    min-height: 50px;
  }
}
