:root {
  color-scheme: light;
  font-family: "Segoe UI Variable", "Segoe UI", sans-serif;
  color: #18283a;
  background: #f7f8fa;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --navy: #064d91;
  --blue: #0876c9;
  --red: #e30613;
  --muted: #637184;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(ellipse at 50% -15%, rgb(8 118 201 / 9%), transparent 48rem),
    #f7f8fa;
}

.page-shell {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  width: min(100% - 48px, 1056px);
  flex-direction: column;
  margin: 0 auto;
  padding: 54px 0 12px;
}

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

.brand-logo {
  display: block;
  width: min(250px, 68vw);
  height: auto;
  margin-bottom: 35px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  color: #10243a;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.12;
}

.intro-copy {
  max-width: 640px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.7;
}

.options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.option-card {
  display: flex;
  min-height: 298px;
  flex-direction: column;
  align-items: center;
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid #e4e8ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 36px rgb(19 46 76 / 6%);
  text-align: center;
}

.option-card:first-child {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.card-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 14px;
  background: #edf5fc;
  color: var(--navy);
}

.card-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  stroke: none;
}

.option-card:nth-child(2) .card-icon {
  background: #fff1f1;
  color: var(--red);
}

.option-card:nth-child(2) .card-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.option-card:first-child .card-icon {
  background: rgb(255 255 255 / 16%);
  color: #fff;
}

h2 {
  margin-bottom: 10px;
  color: #152a40;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.option-card:first-child h2 {
  color: #fff;
}

.option-card p {
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.option-card:first-child p {
  color: rgb(255 255 255 / 88%);
}

.action-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: auto;
  padding: 0 21px;
  border: 2px solid transparent;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.action-primary {
  background: #fff;
  color: var(--navy);
}

.action-primary:hover {
  transform: translateY(-1px);
  background: #eef5fc;
}

.action-secondary {
  border-color: #c9d9e9;
  background: #fff;
  color: var(--navy);
}

.action-secondary:hover {
  border-color: var(--navy);
  background: #f1f7fc;
}

.arrow {
  font-size: 1.12rem;
  line-height: 1;
}

a:focus-visible {
  outline: 3px solid #f2a900;
  outline-offset: 4px;
}

.page-footer {
  margin-top: auto;
  padding-top: 34px;
  padding-bottom: 0;
  text-align: center;
}

.help-text {
  margin-bottom: 23px;
  color: #34465a;
  font-size: 0.95rem;
}

.help-text a {
  margin-left: 4px;
  color: var(--navy);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.copyright {
  margin: 0;
  color: #8390a0;
  font-size: 0.82rem;
}

.copyright span {
  padding: 0 5px;
  color: var(--red);
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 36px, 440px);
    padding: 32px 0 12px;
  }

  .brand-logo {
    width: min(210px, 62vw);
    margin-bottom: 28px;
  }

  .intro-copy {
    margin-bottom: 27px;
  }

  .options {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .option-card {
    min-height: 0;
    padding: 24px;
  }

  .card-icon {
    margin-bottom: 17px;
  }

  .option-card p {
    margin-bottom: 22px;
  }

  .page-footer {
    padding-top: 27px;
    padding-bottom: 0;
  }

  .help-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.6;
  }

  .help-text a {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
