:root {
  --navy-950: #041d35;
  --navy-900: #062d53;
  --navy-800: #0a406e;
  --blue-700: #0b6d8a;
  --blue-600: #0b7895;
  --red-600: #c43535;
  --red-50: #fff4f2;
  --ink: #152638;
  --muted: #5d6c7a;
  --line: #dce4ea;
  --surface: #ffffff;
  --canvas: #f3f6f8;
  --success: #23835a;
  --radius-sm: .5rem;
  --radius-md: .75rem;
  --radius-lg: 1rem;
  --shadow: 0 1rem 2.5rem rgba(4, 29, 53, .1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 20rem;
  min-height: 100vh;
  background:
    linear-gradient(180deg, var(--navy-900) 0, var(--navy-900) 27rem, transparent 27rem),
    var(--canvas);
  color: var(--ink);
  line-height: 1.55;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--navy-900);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform .15s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.header-inner,
.page-shell,
.site-footer {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.75rem;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: #fff;
}

.brand-sun {
  position: absolute;
  top: .48rem;
  width: .72rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red-600);
}

.brand-path {
  position: absolute;
  bottom: -.8rem;
  width: 2.35rem;
  height: 2.35rem;
  border: .36rem solid var(--navy-800);
  border-radius: 50%;
}

.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-size: 1rem; letter-spacing: -.01em; }
.brand-copy small { margin-top: .2rem; color: #c8d9e8; font-size: .7rem; }

.secure-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #dbe9f4;
  font-size: .82rem;
  font-weight: 700;
}

.secure-label svg { width: 1.1rem; fill: currentColor; }

.page-shell { padding-block: 3rem 2rem; }

.intro { max-width: 48rem; color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  color: #dbe9f4;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow strong {
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  color: #fff;
}

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

h1 {
  max-width: 42rem;
  margin-bottom: .75rem;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.lead {
  max-width: 42rem;
  margin-bottom: 1.75rem;
  color: #d5e3ee;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.process {
  display: flex;
  align-items: center;
  max-width: 45rem;
  margin-bottom: 2rem;
}

.process-item { display: flex; align-items: center; gap: .65rem; min-width: 0; }

.process-item > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.15rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  font-size: .7rem;
  font-weight: 800;
}

.process-item p { display: grid; margin: 0; line-height: 1.3; }
.process-item strong { font-size: .8rem; }
.process-item small { margin-top: .15rem; color: #c6d7e5; font-size: .65rem; }
.process-line { flex: 1 1 2.5rem; min-width: 1.5rem; height: 1px; margin-inline: .75rem; background: rgba(255, 255, 255, .24); }

.content-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 21rem) minmax(0, 1fr);
  align-items: start;
  gap: 1.25rem;
}

.payment-summary,
.form-panel {
  border: 1px solid rgba(220, 228, 234, .9);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.payment-summary { padding: 1.5rem; }

.summary-heading { display: flex; align-items: center; gap: .8rem; }

.summary-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: #eaf5f7;
  color: var(--blue-700);
}

.summary-icon svg { width: 1.4rem; fill: currentColor; }
.summary-heading p, .form-heading p { margin-bottom: .15rem; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.summary-heading h2, .form-heading h2 { margin: 0; color: var(--navy-950); font-size: 1.2rem; letter-spacing: -.02em; }

.summary-list { margin: 1.5rem 0; }

.summary-list div {
  display: grid;
  gap: .25rem;
  padding-block: .9rem;
  border-top: 1px solid var(--line);
}

.summary-list div:last-child { border-bottom: 1px solid var(--line); }
.summary-list dt { color: var(--muted); font-size: .75rem; }
.summary-list dd { margin: 0; color: var(--ink); font-size: .9rem; font-weight: 700; }
.status-dot { display: inline-block; width: .5rem; aspect-ratio: 1; margin-right: .35rem; border-radius: 50%; background: #df9f21; }

.notice {
  display: flex;
  gap: .65rem;
  padding: .9rem;
  border: 1px solid #f2d8d4;
  border-radius: var(--radius-md);
  background: var(--red-50);
  color: #73302d;
}

.notice svg { flex: 0 0 auto; width: 1.1rem; margin-top: .1rem; fill: var(--red-600); }
.notice p { margin: 0; font-size: .78rem; }
.support { margin: 1rem 0 0; color: var(--muted); font-size: .74rem; }
.support a { color: var(--blue-700); font-weight: 750; }

.form-panel { overflow: hidden; }

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.form-heading > span { color: var(--red-600); font-size: .72rem; font-weight: 800; }
.form-content { position: relative; min-height: 26rem; padding: 1.25rem; }
.ooef { min-height: 23.5rem; }
.orderonline-embed-form { min-height: 23.5rem; }

.noscript-message {
  margin: 0 1.5rem 1.5rem;
  padding: .85rem;
  border: 1px solid #f2d8d4;
  border-radius: var(--radius-sm);
  background: var(--red-50);
  color: #73302d;
}

.legal-note { max-width: 48rem; margin: 1.25rem auto 0; color: var(--muted); font-size: .75rem; text-align: center; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
}

.site-footer p { margin: 0; }

:focus-visible { outline: 3px solid #f2b84b; outline-offset: 3px; }

@media (max-width: 48rem) {
  body { background: linear-gradient(180deg, var(--navy-900) 0, var(--navy-900) 26rem, transparent 26rem), var(--canvas); }
  .page-shell { padding-top: 2.25rem; }
  .process { align-items: flex-start; justify-content: space-between; }
  .process-item { display: grid; justify-items: center; gap: .4rem; text-align: center; }
  .process-item p { max-width: 6.5rem; }
  .process-item small { display: none; }
  .process-line { margin-top: 1.05rem; }
  .content-grid { grid-template-columns: 1fr; }
  .payment-summary { order: 2; }
  .form-panel { order: 1; }
}

@media (max-width: 30rem) {
  .header-inner, .page-shell, .site-footer { width: min(100% - 1rem, 72rem); }
  .header-inner { min-height: 4.4rem; }
  .brand-copy small, .secure-label span { display: none; }
  .secure-label svg { width: 1.25rem; }
  h1 { font-size: 2.05rem; }
  .lead { font-size: .95rem; }
  .form-heading, .payment-summary { padding: 1.1rem; }
  .form-content { padding: .75rem; }
  .site-footer { display: grid; text-align: center; }
}

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