:root {
  color-scheme: light;
  --navy: #0b2d4d;
  --blue: #1269a8;
  --sky: #e9f5fb;
  --ink: #173147;
  --muted: #617384;
  --line: #dce7ee;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(74, 177, 219, .18), transparent 32rem),
    linear-gradient(135deg, #f9fcfe 0%, #edf6fa 100%);
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
}

.card {
  width: min(930px, 100%);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 45, 77, .08);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(25, 65, 91, .16);
}

.photo-wrap { position: relative; min-height: 510px; }
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.eyebrow {
  position: absolute;
  left: 22px;
  top: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.content { padding: 50px 46px; align-self: center; }
.progress { height: 6px; border-radius: 99px; background: var(--sky); overflow: hidden; margin-bottom: 25px; }
.progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, #1d92c2, var(--blue)); }
.step { margin: 0 0 10px; color: var(--blue); font-size: .82rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
h1 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -.035em; }
.intro { margin: 18px 0 28px; color: var(--muted); font-size: 1.05rem; line-height: 1.62; }
.choices { display: grid; gap: 12px; }
.choice {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 21px;
  border-radius: 13px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.choice:hover { transform: translateY(-2px); }
.choice:focus-visible { outline: 4px solid rgba(29,146,194,.28); outline-offset: 2px; }
.primary { color: var(--white); background: linear-gradient(135deg, var(--blue), var(--navy)); box-shadow: 0 10px 24px rgba(18,105,168,.23); }
.secondary { color: var(--navy); border-color: var(--line); background: #f8fbfd; }
.secondary:hover { background: var(--sky); }
.privacy { margin: 19px 0 0; color: #7a8996; font-size: .8rem; text-align: center; }

.card.compact { width: min(660px, 100%); display: block; }
.notice { text-align: center; padding: 60px; }
.notice-icon { width: 52px; height: 52px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: var(--sky); color: var(--blue); font-size: 1.5rem; font-weight: 900; }
.centered { width: min(250px, 100%); justify-content: center; margin: 10px auto 0; }

@media (max-width: 760px) {
  .shell { padding: 14px; align-items: start; }
  .card { grid-template-columns: 1fr; border-radius: 19px; }
  .photo-wrap { min-height: 230px; max-height: 32vh; }
  .content { padding: 32px 24px 28px; }
  h1 { font-size: 2.15rem; }
  .notice { padding: 46px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .choice { transition: none; }
}
