*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1763e7;
  --blue-dark: #174bd2;
  --blue-soft: #eaf3ff;
  --green: #16a34a;
  --green-dark: #11863b;
  --green-soft: #eafaf1;
  --text: #242b38;
  --muted: #687384;
  --muted-light: #a6afbf;
  --line: #e3e8f0;
  --line-strong: #d6dde8;
  --panel: #ffffff;
  --cream: #fff9e7;
  --amber: #f5ba2f;
  --ease: cubic-bezier(.22,.9,.32,1);
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: #f0f2f6;
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-wrap {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  background:
    radial-gradient(circle at 25% 10%, rgba(23, 99, 231, .06), transparent 28rem),
    #f0f2f6;
}

.phone-shell {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  box-shadow: 0 22px 70px rgba(21, 35, 58, .12);
}

.topbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: calc(12px + env(safe-area-inset-top)) 20px 12px;
  border-bottom: 1px solid #eff2f6;
  background: rgba(255, 255, 255, .96);
  flex-shrink: 0;
  z-index: 5;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: #7b8493;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
}

.brand-logo {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: block;
}

.secure-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 7px 12px;
  border: 1px solid #d7f2df;
  border-radius: 999px;
  background: #effbf3;
  color: #078439;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.secure-pill img {
  width: 12px;
  height: 12px;
  display: block;
}

.phone-shell.intro-active .secure-pill {
  opacity: 0;
  transform: translateY(-2px);
  pointer-events: none;
}

.app-stage {
  flex: 1;
  min-height: 0;
  position: relative;
  display: flex;
}

.screen {
  width: 100%;
  flex: 1;
  display: none;
  flex-direction: column;
  min-height: 0;
  padding: 22px 24px calc(22px + env(safe-area-inset-bottom));
  overflow: visible;
  overscroll-behavior: auto;
}

.screen.active {
  display: flex;
}

.screen.enter-forward {
  animation: screenForward .42s var(--ease) both;
}

.screen.enter-back {
  animation: screenBack .42s var(--ease) both;
}

@keyframes screenForward {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes screenBack {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

.intro-screen {
  padding-top: 40px;
  text-align: center;
  overflow: hidden;
}

.intro-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-chip {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin: 2px auto 32px;
  animation: floatIn .65s var(--ease) both;
}

.hero-logo {
  width: 96px;
  height: 96px;
  display: block;
  image-rendering: auto;
  animation: tilePulse 3.6s ease-in-out infinite;
}

.check-badge {
  position: absolute;
  right: -5px;
  top: -7px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 3px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(34, 177, 76, .28);
  animation: badgePop .58s cubic-bezier(.34,1.56,.64,1) .28s both;
}

.check-badge img {
  width: 24px;
  height: 24px;
  display: block;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(12px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes tilePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(.55) rotate(-18deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.protocol-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 7px 15px;
  border: 1px solid #cae0ff;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
  animation: fadeRise .45s ease .12s both;
}

.protocol-pill span,
.license-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #74a9ff;
}

.intro-screen h1 {
  max-width: 330px;
  margin: 24px auto 0;
  font-size: 24px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
  animation: fadeRise .45s ease .18s both;
}

.intro-copy {
  max-width: 310px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
  animation: fadeRise .45s ease .24s both;
}

.feature-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
  animation: fadeRise .45s ease .3s both;
}

.feature-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 42px;
}

.feature-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eef5ff;
  color: var(--blue);
}

.feature-item img {
  width: 20px;
  height: 20px;
  display: block;
}

.feature-item small {
  color: #667085;
  font-size: 11px;
  font-weight: 700;
}

@keyframes fadeRise {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

.bottom-action {
  margin-top: auto;
  padding-top: 22px;
}

.primary-btn {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 15px 18px;
  color: #fff;
  background: #dfe4ec;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-align: center;
  transition: transform .16s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), opacity .2s var(--ease);
  user-select: none;
}

.primary-btn:active {
  transform: scale(.985);
}

.primary-btn.blue,
.primary-btn.is-ready {
  background: linear-gradient(180deg, #1769ec, #1c54d9);
  box-shadow: 0 12px 28px rgba(24, 91, 220, .28);
}

.primary-btn:disabled {
  color: #a6afbf;
  background: #e1e5eb;
  box-shadow: none;
  cursor: not-allowed;
}

.primary-btn:not(:disabled).pulse {
  position: relative;
  overflow: hidden;
}

.primary-btn:not(:disabled).pulse::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -45%;
  width: 38%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: shine 3.2s ease-in-out infinite;
}

@keyframes shine {
  0%, 35% { left: -45%; }
  60%, 100% { left: 115%; }
}

.trust-line,
.form-trust {
  max-width: 300px;
  margin: 18px auto 0;
  color: #a5adbb;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.quiz-screen h2 {
  margin-top: 7px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.33;
  font-weight: 900;
  letter-spacing: 0;
  animation: fadeRise .42s ease .06s both;
}

.progress-wrap {
  margin-top: 0;
  margin-bottom: 28px;
  animation: fadeRise .35s ease both;
}

.progress-track {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: #dceaff;
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1265ef, #3f8cff);
  transition: width .75s var(--ease);
}

.progress-value {
  margin-top: 7px;
  color: #075df0;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.step-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  animation: fadeRise .42s ease .02s both;
}

.select-box {
  position: relative;
  margin-top: 34px;
  z-index: 3;
  animation: fadeRise .42s ease .1s both;
}

.select-trigger {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: #9aa4b5;
  font-size: 16px;
  text-align: left;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
}

.select-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform .18s var(--ease);
}

.select-box.open .select-trigger,
.select-trigger.has-value {
  border-color: var(--blue);
  color: var(--text);
  box-shadow: 0 0 0 4px rgba(23,99,231,.08);
}

.select-box.open .select-arrow {
  transform: rotate(180deg);
}

.select-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  max-height: 280px;
  overflow-y: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(31, 43, 60, .13);
  border: 1px solid #edf0f5;
  padding: 2px 0;
}

.select-box.open .select-menu {
  display: block;
  animation: menuIn .22s var(--ease) both;
}

@keyframes menuIn {
  from { opacity: 0; transform: translateY(-6px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.select-menu button {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid #f1f3f6;
  transition: background-color .16s var(--ease), color .16s var(--ease);
}

.select-menu button:active,
.select-menu button:hover {
  background: #f5f9ff;
  color: var(--blue);
}

.notice-card {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid #b8d5ff;
  border-radius: 14px;
  background: #e9f2ff;
  color: #0f4dd1;
  animation: fadeRise .42s ease .14s both;
}

.notice-card img,
.info-panel img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.notice-card p,
.info-panel p {
  font-size: 14px;
  line-height: 1.43;
}

.option-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.option-card {
  width: 100%;
  min-height: 96px;
  display: grid;
  grid-template-columns: 48px 1fr 22px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  text-align: left;
  box-shadow: 0 4px 12px rgba(26, 38, 59, .06);
  transition: transform .16s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
  animation: cardIn .4s var(--ease) both;
}

.option-card:nth-child(2) { animation-delay: .07s; }
.option-card:active { transform: scale(.985); }

.option-card.selected {
  border-color: var(--blue);
  background: #eaf2ff;
  box-shadow: 0 7px 18px rgba(23, 99, 231, .12);
}

.option-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #f3f7fd;
  color: var(--blue);
}

.option-icon img {
  width: 23px;
  height: 23px;
  display: block;
}

.option-text {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.option-text strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.18;
}

.option-card.selected .option-text strong {
  color: var(--blue);
}

.option-text small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.radio-img {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

.option-list.compact {
  margin-top: 26px;
  gap: 18px;
}

.option-list.compact .option-card {
  min-height: 64px;
  grid-template-columns: 22px 1fr;
  padding: 18px 20px;
}

.option-list.compact .option-text strong {
  font-size: 14px;
  line-height: 1.38;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.info-panel {
  display: flex;
  gap: 13px;
  margin-top: 6px;
  padding: 16px;
  border: 1px solid #b8d5ff;
  border-radius: 14px;
  background: #e9f2ff;
  color: #144bc4;
  animation: fadeRise .42s ease .08s both;
}

.analysis-screen {
  justify-content: center;
  padding-top: 40px;
}

.analysis-center {
  width: 100%;
  display: grid;
  justify-items: center;
  transform: translateY(-12px);
}

.analysis-orbit {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border: 6px solid var(--blue);
  border-radius: 50%;
  position: relative;
  animation: orbitBreathe 1.6s ease-in-out infinite;
}

.analysis-orbit::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(23,99,231,.16);
  animation: orbitRing 1.7s ease-out infinite;
}

.analysis-orbit img {
  width: 64px;
  height: 64px;
  display: block;
  max-width: none;
}

.analysis-orbit.ty-orbit img {
  width: 34px;
  height: 34px;
}

@keyframes orbitBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

@keyframes orbitRing {
  from { opacity: .8; transform: scale(.86); }
  to { opacity: 0; transform: scale(1.22); }
}

.analysis-center h2 {
  margin-bottom: 28px;
  font-size: 19px;
  font-weight: 900;
}

.ty-copy {
  max-width: 330px;
  margin: -14px auto 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.ty-list {
  margin-top: 4px;
}

.analysis-list {
  width: min(100%, 312px);
  display: grid;
  gap: 18px;
  margin: 0 auto;
}

.analysis-list div {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
  opacity: 0;
  animation: statusReveal .36s var(--ease) forwards;
}

.analysis-list div:nth-child(1) { animation-delay: .25s; }
.analysis-list div:nth-child(2) { animation-delay: .75s; }
.analysis-list div:nth-child(3) { animation-delay: 1.25s; }

.analysis-list span {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
}

.analysis-list img {
  width: 20px;
  height: 20px;
  display: block;
}

@keyframes statusReveal {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.benefit-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid #edf0f5;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(29, 41, 57, .07);
  animation: cardIn .42s var(--ease) both;
}

.benefit-card:nth-child(2) { animation-delay: .07s; }
.benefit-card:nth-child(3) { animation-delay: .14s; }

.benefit-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eef5ff;
  color: var(--blue);
}

.benefit-card img {
  width: 22px;
  height: 22px;
  display: block;
}

.benefit-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.18;
}

.benefit-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.result-btn {
  background: #a7b0bd;
  box-shadow: none;
}

.result-btn.ready {
  background: linear-gradient(180deg, #1ca34c, #11873b);
  box-shadow: 0 13px 30px rgba(17, 135, 59, .26);
}

.result-screen {
  padding: 0;
  background: #fff;
}

.result-hero {
  min-height: 323px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 24px 28px;
  text-align: center;
  background:
    radial-gradient(circle at 82% 22%, rgba(69, 197, 164, .18), transparent 170px),
    linear-gradient(180deg, #edf5ff 0%, #f1fff5 100%);
}

.access-card {
  width: 258px;
  min-height: 98px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 36px rgba(22, 163, 74, .25);
  animation: successIn .55s cubic-bezier(.34,1.56,.64,1) both;
}

.access-check {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}

.access-check img {
  width: 30px;
  height: 30px;
  display: block;
}

.access-card strong {
  font-size: 23px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

@keyframes successIn {
  from { opacity: 0; transform: translateY(12px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.license-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  margin-top: 10px;
  padding: 7px 15px;
  border: 1px solid #f5cc4a;
  border-radius: 999px;
  background: #fff8d7;
  color: #9a4d10;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  animation: fadeRise .4s ease .12s both;
}

.license-pill span {
  background: #ffc648;
}

.result-hero h2 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 900;
  animation: fadeRise .4s ease .17s both;
}

.result-hero p {
  max-width: 335px;
  margin-top: 8px;
  color: #526071;
  font-size: 15px;
  line-height: 1.48;
  animation: fadeRise .4s ease .22s both;
}

.form-area {
  padding: 22px 24px calc(24px + env(safe-area-inset-bottom));
}

.important-card {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 18px 16px;
  border: 1px solid #ffd86b;
  border-radius: 14px;
  background: var(--cream);
  color: #92400e;
  margin-bottom: 24px;
  animation: cardIn .42s var(--ease) both;
}

.important-phone {
  width: 22px;
  height: 22px;
  display: block;
  margin-top: 1px;
  object-fit: contain;
}

.important-card img {
  width: 21px;
  height: 21px;
  margin-top: 1px;
}

.important-card p {
  font-size: 14px;
  line-height: 1.38;
}

.important-card strong {
  display: block;
  margin-bottom: 8px;
  color: #8b3d0f;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #485467;
  font-size: 14px;
  font-weight: 500;
}

.field input {
  width: 100%;
  height: 54px;
  border: 2px solid #e2e7ee;
  border-radius: 14px;
  padding: 0 16px;
  outline: none;
  background: #fbfcfe;
  color: var(--text);
  font-size: 16px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}

.field input::placeholder {
  color: #9fa9b8;
}

.field input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23,99,231,.08);
}

.field input.error {
  border-color: #e25252;
  box-shadow: 0 0 0 4px rgba(226,82,82,.08);
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 5px;
  color: #d63d3d;
  font-size: 12px;
  line-height: 1.25;
}

#f-website {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: flex-start;
  margin: 6px 0 24px;
  color: #566174;
  font-size: 14px;
  line-height: 1.36;
  cursor: pointer;
  user-select: none;
}

.checkbox {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border: 2px solid #9aa6b8;
  border-radius: 3px;
  color: #fff;
  transition: background-color .16s var(--ease), border-color .16s var(--ease), transform .16s var(--ease);
}

.checkbox svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
  opacity: 0;
}

.consent-row.checked .checkbox {
  border-color: var(--blue);
  background: var(--blue);
  transform: scale(1.05);
}

.consent-row.checked .checkbox svg {
  opacity: 1;
}

.api-error {
  min-height: 18px;
  margin-bottom: 10px;
  color: #d63d3d;
  font-size: 13px;
  text-align: center;
}

.submit-btn:not(:disabled) {
  background: linear-gradient(180deg, #19a54b, #11873b);
  box-shadow: 0 13px 30px rgba(17, 135, 59, .26);
}

.spinner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  animation: spin .75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (min-width: 560px) {
  .page-wrap {
    padding: 28px 0;
  }

  .phone-shell {
    min-height: 860px;
    max-height: none;
    border-radius: 26px;
  }
}

@media (max-width: 374px) {
  .topbar {
    padding-left: 18px;
    padding-right: 18px;
  }

  .screen {
    padding-left: 20px;
    padding-right: 20px;
  }

  .secure-pill {
    padding: 7px 9px;
    font-size: 12px;
  }

  .intro-screen h1 {
    font-size: 22px;
  }

  .primary-btn {
    font-size: 14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .option-card {
    grid-template-columns: 44px 1fr 20px;
    gap: 12px;
    padding: 17px;
  }

  .option-text strong {
    font-size: 15px;
  }

  .benefit-card {
    grid-template-columns: 40px 1fr;
    gap: 13px;
    padding: 17px;
  }

  .form-area {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
    scroll-behavior: auto !important;
  }
}
