:root {
  --navy-950: #071a2b;
  --navy-900: #0b2238;
  --navy-800: #12304b;
  --navy-700: #1d4567;
  --navy-100: #e9f1f6;
  --blue: #1d73a8;
  --blue-soft: #e8f4fb;
  --teal: #31b7a6;
  --teal-dark: #138778;
  --teal-soft: #e4f7f4;
  --amber: #e8a542;
  --amber-soft: #fff5e6;
  --red: #bd6258;
  --red-soft: #fff0ed;
  --ink: #172b3d;
  --body: #4f6271;
  --muted: #7a8b98;
  --line: #dce5eb;
  --surface: #ffffff;
  --background: #f5f8fa;
  --shadow: 0 22px 60px rgba(22, 54, 77, .12);
  --shadow-soft: 0 12px 34px rgba(22, 54, 77, .08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

body,
button,
input {
  font: inherit;
}

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

.screen-state {
  position: fixed;
  pointer-events: none;
  opacity: 0;
}

.app {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(13, 43, 66, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand,
.header-link,
.back-link,
.button,
.answer,
.text-button {
  cursor: pointer;
  user-select: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--navy-900);
  color: var(--teal);
}

.brand-mark svg {
  width: 30px;
  stroke-width: 2.2;
}

.brand strong {
  display: block;
  color: var(--navy-900);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  letter-spacing: .18em;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-700);
  font-size: 13px;
  font-weight: 700;
}

.header-link svg {
  width: 19px;
  height: 19px;
}

main {
  display: flex;
  flex: 1;
}

.screen {
  display: none;
  width: 100%;
  animation: screen-in .38s ease both;
}

#screen-login:checked ~ .app .screen-login,
#screen-flowchart:checked ~ .app .screen-flowchart,
#screen-q1:checked ~ .app .screen-q1,
#screen-q2:checked ~ .app .screen-q2,
#screen-q3:checked ~ .app .screen-q3,
#screen-qualified:checked ~ .app .screen-qualified,
#screen-not-facility:checked ~ .app .screen-not-facility,
#screen-not-bundle:checked ~ .app .screen-not-bundle,
#screen-not-fee:checked ~ .app .screen-not-fee {
  display: block;
}

#screen-qualified:target ~ .app .screen-login {
  display: none;
}

#screen-qualified:target ~ .app .screen-qualified {
  display: block;
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-layout {
  display: grid;
  min-height: calc(100vh - 78px);
  grid-template-columns: minmax(0, 1.14fr) minmax(440px, .86fr);
}

.intro-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 690px;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(7, 26, 43, .98), rgba(13, 51, 75, .96)),
    var(--navy-950);
  color: white;
}

.intro-panel::before {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, .02),
    0 0 0 180px rgba(255, 255, 255, .015);
  content: "";
}

.intro-panel::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 42%;
  background: linear-gradient(135deg, transparent, rgba(49, 183, 166, .07));
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
}

.intro-content {
  position: relative;
  z-index: 2;
  width: min(650px, calc(100% - 100px));
  padding: 70px 0;
}

.eyebrow {
  display: flex;
  margin: 0 0 28px;
  align-items: center;
  gap: 12px;
  color: #b9d6df;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--teal);
}

.intro-content h1 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 66px);
  letter-spacing: -.04em;
  line-height: 1.32;
}

.intro-content h1 em,
.question-card h1 em,
.result-hero h1 em {
  color: var(--teal);
  font-style: normal;
}

.intro-content .lead {
  max-width: 590px;
  margin: 25px 0 34px;
  color: #d2e0e7;
  font-size: 15px;
  line-height: 2;
}

.product-lockup {
  display: flex;
  max-width: 610px;
  align-items: stretch;
  gap: 12px;
}

.product-chip {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
}

.product-chip small,
.product-chip strong {
  display: block;
}

.product-chip small {
  margin-bottom: 4px;
  color: #a9bfca;
  font-size: 10px;
}

.product-chip strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  letter-spacing: .01em;
}

.product-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: rgba(49, 183, 166, .13);
  color: var(--teal);
}

.product-icon svg {
  width: 28px;
  height: 28px;
}

.product-icon-vision {
  background: rgba(232, 165, 66, .13);
  color: #f2bc68;
}

.plus {
  display: grid;
  flex: 0 0 26px;
  place-items: center;
  color: var(--teal);
  font-size: 24px;
  font-weight: 300;
}

.fact-row {
  display: flex;
  margin-top: 33px;
  color: #9db1bc;
  font-size: 11px;
}

.fact-row span {
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.fact-row span:first-child {
  padding-left: 0;
  border-left: 0;
}

.fact-row strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-size: 13px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  bottom: -70px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: rgba(49, 183, 166, .13);
}

.orb-two {
  top: 18%;
  right: 7%;
  width: 18px;
  height: 18px;
  background: var(--amber);
  box-shadow: 0 0 50px 15px rgba(232, 165, 66, .2);
}

.login-card-wrap {
  display: grid;
  place-items: center;
  padding: 70px 54px;
  background:
    radial-gradient(circle at 100% 0, rgba(49, 183, 166, .11), transparent 34%),
    var(--background);
}

.login-card {
  width: min(460px, 100%);
  padding: 44px 42px 35px;
  border: 1px solid rgba(24, 66, 94, .08);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step-kicker,
.question-number {
  margin: 0;
  color: var(--teal-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.login-card h2 {
  margin: 11px 0 12px;
  color: var(--navy-900);
  font-size: 26px;
  letter-spacing: -.02em;
}

.card-copy {
  margin: 0 0 30px;
  color: var(--body);
  font-size: 13px;
}

.field-label {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.text-field {
  display: flex;
  height: 54px;
  margin-bottom: 17px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid #ccd8df;
  border-radius: 12px;
  background: #fbfcfd;
  transition: border .2s, box-shadow .2s;
}

.text-field:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(49, 183, 166, .12);
}

.text-field svg {
  width: 20px;
  color: var(--muted);
}

.text-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.text-field input::placeholder {
  color: #a5b1b9;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal-dark);
  box-shadow: 0 10px 22px rgba(19, 135, 120, .22);
  color: white;
}

.button-primary:hover {
  background: #0e7568;
  box-shadow: 0 14px 28px rgba(19, 135, 120, .28);
}

.button-secondary {
  border-color: #cbd8df;
  background: white;
  color: var(--navy-700);
}

.button-large {
  width: 100%;
  min-height: 56px;
  font-size: 14px;
}

.button svg {
  width: 18px;
}

.text-button {
  display: flex;
  margin: 20px auto 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 700;
}

.text-button svg {
  width: 14px;
}

.privacy-note {
  display: flex;
  margin: 28px -5px 0;
  padding-top: 23px;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.privacy-note svg {
  flex: 0 0 15px;
  width: 15px;
  margin-top: 1px;
}

.site-footer {
  display: flex;
  min-height: 58px;
  padding: 14px 5%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  background: white;
  color: var(--muted);
  font-size: 10px;
}

.site-footer p {
  margin: 0;
}

.page-shell {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 70px;
}

.page-topbar,
.wizard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 700;
}

.back-link svg {
  width: 17px;
}

.status-pill {
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.page-heading {
  margin: 51px 0 30px;
  text-align: center;
}

.page-heading h1 {
  margin: 10px 0 12px;
  color: var(--navy-900);
  font-size: clamp(27px, 4vw, 38px);
  letter-spacing: -.03em;
}

.page-heading > p:last-child {
  margin: 0;
  color: var(--body);
  font-size: 13px;
}

.flow-card {
  padding: 36px 52px 42px;
  border: 1px solid rgba(24, 66, 94, .08);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.flow-start {
  width: 74px;
  margin: 0 auto;
  padding: 8px 0;
  border-radius: 999px;
  background: var(--navy-900);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-align: center;
}

.flow-line {
  width: 1px;
  height: 21px;
  margin: 0 auto;
  background: #b7c8d1;
}

.flow-question {
  display: flex;
  max-width: 540px;
  min-height: 76px;
  margin: 0 auto;
  padding: 14px 20px;
  align-items: center;
  gap: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcfd;
}

.flow-question > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--navy-100);
  color: var(--navy-700);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.flow-question small,
.flow-question strong,
.flow-goal small,
.flow-goal strong {
  display: block;
}

.flow-question small,
.flow-goal small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.flow-question strong {
  color: var(--ink);
  font-size: 13px;
}

.flow-branch {
  display: flex;
  width: 330px;
  height: 27px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 9px;
  font-weight: 700;
}

.flow-branch span {
  padding: 3px 9px;
  border-radius: 999px;
}

.branch-yes {
  background: var(--teal-dark);
}

.branch-no {
  background: #8b9aa5;
}

.flow-goal {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  padding: 18px 21px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(49, 183, 166, .42);
  border-radius: 14px;
  background: var(--teal-soft);
}

.flow-goal svg {
  width: 37px;
  height: 37px;
  padding: 8px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: white;
  stroke-width: 2.4;
}

.flow-goal strong {
  color: var(--navy-900);
  font-size: 15px;
}

.notice,
.result-caution {
  display: flex;
  margin-top: 20px;
  padding: 16px 18px;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid #f0d3a9;
  border-radius: 12px;
  background: var(--amber-soft);
  color: #765930;
  font-size: 11px;
  line-height: 1.75;
}

.notice svg,
.result-caution svg {
  flex: 0 0 19px;
  width: 19px;
  margin-top: 1px;
}

.notice p,
.result-caution p {
  margin: 0;
}

.flow-cta {
  display: flex;
  width: 240px;
  margin: 26px auto 0;
}

.wizard-shell {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 75px;
}

.wizard-top > span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.progress {
  overflow: hidden;
  width: 100%;
  height: 4px;
  margin: 22px 0 38px;
  border-radius: 999px;
  background: #dfe8ed;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  animation: progress-in .6s ease both;
}

@keyframes progress-in {
  from { transform: scaleX(.2); transform-origin: left; }
}

.question-card {
  padding: 48px 58px 54px;
  border: 1px solid rgba(24, 66, 94, .08);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.question-number {
  margin-bottom: 22px;
}

.question-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 22px;
  background: var(--blue-soft);
  color: var(--blue);
}

.question-icon svg {
  width: 40px;
  height: 40px;
}

.question-icon-duo {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.question-icon-yen {
  background: var(--amber-soft);
  color: #b57922;
}

.question-icon-yen span {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 700;
}

.question-category {
  margin: 0 0 11px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
}

.question-card h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(27px, 4vw, 37px);
  letter-spacing: -.03em;
  line-height: 1.5;
}

.question-hint {
  margin: 15px 0 31px;
  color: var(--body);
  font-size: 12px;
  line-height: 1.7;
}

.answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}

.answer {
  display: flex;
  min-height: 86px;
  padding: 16px 15px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcfd;
  transition: border .2s, transform .2s, box-shadow .2s, background .2s;
}

.answer:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.answer-yes:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.answer-no:hover {
  border-color: #c3cdd3;
  background: #f3f6f8;
}

.answer-symbol {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.answer-no .answer-symbol {
  background: #edf1f3;
  color: #7a8993;
}

.answer-symbol svg {
  width: 20px;
  stroke-width: 2.3;
}

.answer > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.answer strong,
.answer small {
  display: block;
}

.answer strong {
  color: var(--ink);
  font-size: 14px;
}

.answer small {
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.answer-arrow {
  width: 17px;
  color: #98a8b2;
}

.result-shell {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 70px;
}

.result-hero {
  text-align: center;
}

.result-check {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  box-shadow: 0 0 0 9px rgba(49, 183, 166, .07);
}

.result-check svg {
  width: 38px;
  stroke-width: 2.5;
}

.result-hero h1 {
  margin: 12px 0 13px;
  color: var(--navy-900);
  font-size: clamp(29px, 4.2vw, 42px);
  letter-spacing: -.04em;
  line-height: 1.45;
}

.result-hero > p:last-child {
  margin: 0;
  color: var(--body);
  font-size: 12px;
}

.benefit-card {
  display: grid;
  max-width: 730px;
  min-height: 145px;
  margin: 35px auto 24px;
  padding: 22px 40px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 20%, rgba(49, 183, 166, .2), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
  color: white;
}

.benefit-label {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #b8ccd7;
  font-size: 9px;
  font-weight: 700;
}

.benefit-card h2 {
  margin: 8px 0 0;
  font-size: 18px;
}

.benefit-card > p {
  margin: 0;
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, .18);
  color: #c3d3dc;
  font-size: 11px;
  line-height: 1.8;
}

.benefit-number {
  display: flex;
  align-items: center;
  color: var(--teal);
  font-family: Arial, Helvetica, sans-serif;
}

.benefit-number strong {
  font-size: 78px;
  letter-spacing: -.08em;
  line-height: .85;
}

.benefit-number > span {
  display: flex;
  margin-left: 8px;
  flex-direction: column;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.benefit-number small {
  margin-top: 7px;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.summary-card,
.next-card {
  padding: 27px 28px;
  border: 1px solid rgba(24, 66, 94, .09);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.card-title small,
.card-title h2 {
  display: block;
  margin: 0;
}

.card-title small {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.card-title h2 {
  margin-top: 3px;
  font-size: 16px;
}

.mini-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.mini-icon-amber {
  background: var(--amber-soft);
  color: #b57922;
}

.mini-icon svg {
  width: 20px;
}

.check-list,
.step-list {
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  padding: 11px 0;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.check-list span {
  color: var(--muted);
}

.check-list strong {
  font-size: 11px;
}

.step-list li {
  display: flex;
  margin-top: 13px;
  align-items: flex-start;
  gap: 11px;
}

.step-list li > span {
  display: grid;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-700);
  font-size: 10px;
  font-weight: 800;
}

.step-list p {
  margin: 0;
}

.step-list strong,
.step-list small {
  display: block;
}

.step-list strong {
  font-size: 11px;
}

.step-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.result-caution {
  max-width: 730px;
  margin: 22px auto 0;
}

.result-actions {
  display: flex;
  margin-top: 27px;
  justify-content: center;
  gap: 12px;
}

.result-actions .button {
  min-width: 185px;
}

.contact-card {
  display: grid;
  overflow: hidden;
  margin-top: 28px;
  grid-template-columns: .78fr 1.22fr;
  border: 1px solid rgba(24, 66, 94, .09);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-intro {
  position: relative;
  overflow: hidden;
  padding: 44px 35px;
  background:
    radial-gradient(circle at 100% 100%, rgba(49, 183, 166, .18), transparent 40%),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: white;
}

.contact-intro::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, .025);
  content: "";
}

.contact-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 17px;
  background: rgba(49, 183, 166, .16);
  color: var(--teal);
}

.contact-icon svg {
  width: 31px;
}

.contact-intro .step-kicker {
  color: var(--teal);
}

.contact-intro h2 {
  margin: 10px 0 15px;
  font-size: 26px;
  letter-spacing: -.03em;
  line-height: 1.55;
}

.contact-intro > p:not(.step-kicker) {
  margin: 0;
  color: #c7d7df;
  font-size: 11px;
  line-height: 1.9;
}

.contact-intro ul {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  list-style: none;
}

.contact-intro li {
  display: flex;
  margin-top: 11px;
  align-items: center;
  gap: 8px;
  color: #d9e5ea;
  font-size: 10px;
}

.contact-intro li svg {
  width: 17px;
  color: var(--teal);
  stroke-width: 2.4;
}

.contact-form {
  display: grid;
  padding: 39px 38px;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.contact-field {
  min-width: 0;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-field > label {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.contact-field > label span {
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 8px;
}

.contact-field > label small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #ccd8df;
  border-radius: 10px;
  outline: none;
  background: #fbfcfd;
  color: var(--ink);
  font-size: 12px;
  transition: border .2s, box-shadow .2s, background .2s;
}

.contact-field input {
  height: 47px;
  padding: 0 13px;
}

.contact-field textarea {
  min-height: 118px;
  padding: 12px 13px;
  line-height: 1.7;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(49, 183, 166, .12);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9ba9b3;
}

.contact-field-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--body);
  font-size: 10px;
  line-height: 1.65;
}

.contact-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--teal-dark);
}

.contact-consent a {
  color: var(--teal-dark);
  font-weight: 700;
  text-underline-offset: 2px;
}

.contact-recaptcha {
  min-height: 78px;
}

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

.contact-submit p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.brand,
.button {
  text-decoration: none;
}

.status-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(49, 183, 166, .13), transparent 30%),
    var(--background);
}

.status-main {
  display: grid;
  min-height: calc(100vh - 78px);
  padding: 60px 20px;
  place-items: center;
}

.status-card {
  width: min(560px, 100%);
  padding: 55px 48px;
  border: 1px solid rgba(24, 66, 94, .09);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.status-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
}

.status-icon svg {
  width: 39px;
  stroke-width: 2.4;
}

.status-icon-success {
  background: var(--teal-soft);
  color: var(--teal-dark);
  box-shadow: 0 0 0 9px rgba(49, 183, 166, .07);
}

.status-icon-error {
  background: var(--red-soft);
  color: var(--red);
}

.status-card h1 {
  margin: 12px 0 16px;
  color: var(--navy-900);
  font-size: clamp(28px, 5vw, 39px);
  letter-spacing: -.04em;
  line-height: 1.5;
}

.status-card > p:not(.step-kicker) {
  margin: 0 auto 29px;
  color: var(--body);
  font-size: 12px;
  line-height: 1.9;
}

.status-card .button {
  width: min(260px, 100%);
}

.negative-shell {
  width: min(630px, calc(100% - 40px));
  margin: 0 auto;
  padding: 85px 0;
  text-align: center;
}

.negative-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
}

.negative-icon svg {
  width: 43px;
}

.negative-icon-neutral {
  background: var(--amber-soft);
  color: #ad7728;
}

.negative-shell h1 {
  margin: 13px 0 17px;
  color: var(--navy-900);
  font-size: clamp(28px, 4.2vw, 39px);
  letter-spacing: -.04em;
  line-height: 1.5;
}

.negative-copy {
  max-width: 560px;
  margin: 0 auto;
  color: var(--body);
  font-size: 13px;
  line-height: 1.9;
}

.negative-reason {
  display: flex;
  max-width: 480px;
  margin: 29px auto 0;
  padding: 18px 21px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  box-shadow: var(--shadow-soft);
  font-size: 11px;
  text-align: left;
}

.negative-reason span {
  color: var(--muted);
}

@media (max-width: 940px) {
  .login-layout {
    grid-template-columns: 1fr;
  }

  .intro-panel {
    min-height: auto;
  }

  .intro-content {
    width: min(680px, calc(100% - 64px));
    padding: 75px 0 68px;
  }

  .login-card-wrap {
    padding: 60px 32px 75px;
  }
}

@media (max-width: 680px) {
  .header-inner {
    width: calc(100% - 32px);
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 7px;
  }

  .header-link {
    font-size: 0;
  }

  .header-link svg {
    width: 23px;
    height: 23px;
  }

  .intro-content {
    width: calc(100% - 40px);
    padding: 55px 0 50px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .intro-content h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .intro-content .lead {
    margin: 21px 0 28px;
    font-size: 13px;
    line-height: 1.9;
  }

  .product-lockup {
    flex-direction: column;
  }

  .plus {
    min-height: 20px;
  }

  .fact-row {
    flex-wrap: wrap;
    gap: 16px 0;
  }

  .fact-row span {
    width: 50%;
    padding: 0 12px;
  }

  .fact-row span:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .login-card-wrap {
    padding: 42px 20px 55px;
  }

  .login-card {
    padding: 35px 24px 29px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .page-shell,
  .wizard-shell,
  .result-shell {
    width: calc(100% - 28px);
  }

  .page-heading {
    margin-top: 42px;
  }

  .flow-card {
    padding: 30px 14px 34px;
  }

  .flow-question {
    padding: 12px;
    gap: 11px;
  }

  .flow-question > span {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .flow-question strong {
    font-size: 11px;
  }

  .flow-branch {
    width: 270px;
  }

  .flow-goal {
    padding: 15px;
  }

  .question-card {
    padding: 38px 18px 25px;
  }

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

  .answer {
    min-height: 76px;
  }

  .benefit-card {
    padding: 25px 23px;
    grid-template-columns: 1fr auto;
    gap: 15px;
  }

  .benefit-card > p {
    grid-column: 1 / -1;
    padding: 15px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }

  .benefit-number strong {
    font-size: 62px;
  }

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

  .summary-card,
  .next-card {
    padding: 24px 20px;
  }

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

  .contact-intro {
    padding: 36px 25px;
  }

  .contact-form {
    padding: 31px 22px;
    grid-template-columns: 1fr;
  }

  .contact-field-wide {
    grid-column: auto;
  }

  .contact-recaptcha {
    overflow-x: auto;
  }

  .result-actions {
    flex-direction: column-reverse;
  }

  .result-actions .button {
    width: 100%;
  }

  .negative-shell {
    padding: 65px 0;
  }

  .negative-reason {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .status-main {
    min-height: calc(100vh - 68px);
    padding: 35px 14px;
  }

  .status-card {
    padding: 45px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .result-actions {
    display: none;
  }

  body {
    background: white;
  }

  .screen {
    animation: none;
  }

  .result-shell {
    padding-top: 20px;
  }
}
