


@import url("https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap");

:root {
  --bg: #dff2ff;
  --surface: #f9fcff;
  --surface-mute: #f2f8ff;
  --ink: #1b3d5f;
  --ink-strong: #081e33;
  --line-soft: #c2dcf2;
  --line-strong: #5f93c6;
  --accent: #0f69c6;
  --accent-strong: #084796;
  --accent-mint: #37a29f;
  --display-font: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  --body-font: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font: 400 1rem/1.55 var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgb(79 161 231 / 26%) 0%, transparent 40%),
    radial-gradient(circle at 95% 92%, rgb(55 162 159 / 18%) 0%, transparent 38%),
    var(--bg);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, 92vw);
  margin: 1.25rem auto 2rem;
  padding: 0.8rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  position: sticky;
  top: 0.7rem;
  z-index: 20;
  padding: 0.85rem 1rem;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  background: linear-gradient(132deg, #0f69c6 0%, #0b4a95 56%, #0a3169 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgb(10 59 120 / 24%);
}

.brand {
  text-decoration: none;
  color: #eff8ff;
  font: 700 0.95rem/1 var(--display-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.nav-links a {
  text-decoration: none;
  color: #d9ecff;
  font-size: 0.88rem;
}

.nav-links a:hover {
  color: #fff;
}

main {
  display: grid;
  gap: 1rem;
  margin-top: 1.15rem;
}

.hero,
.panel,
footer {
  border: 1px solid var(--line-soft);
  border-radius: 1.25rem;
  background: var(--surface);
  padding: clamp(1.2rem, 4vw, 2.2rem);
  box-shadow: 0 10px 24px rgb(11 65 127 / 11%);
}

.hero {
  position: relative;
  overflow: hidden;
  border-color: rgb(255 255 255 / 26%);
  background:
    linear-gradient(140deg, rgb(9 74 147 / 95%) 0%, rgb(24 126 190 / 84%) 56%, rgb(55 162 159 / 78%) 100%),
    linear-gradient(180deg, rgb(255 255 255 / 12%) 0%, transparent 40%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 15%, rgb(255 255 255 / 24%) 0%, transparent 34%),
    linear-gradient(
      to bottom,
      transparent 54%,
      rgb(255 255 255 / 8%) 57%,
      transparent 60%,
      rgb(255 255 255 / 10%) 68%,
      transparent 71%
    );
}

.hero > * {
  position: relative;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font: 700 0.72rem/1.3 var(--display-font);
  color: #d8efff;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-strong);
}

h1 {
  margin-top: 0.8rem;
  max-width: 16ch;
  font: 800 clamp(2rem, 4.5vw, 3.5rem) / 1.03 var(--display-font);
  letter-spacing: -0.03em;
}

h2 {
  font: 700 clamp(1.3rem, 2.6vw, 1.95rem) / 1.08 var(--display-font);
  letter-spacing: -0.02em;
}

h3 {
  font: 700 1.03rem/1.2 var(--display-font);
}

.hero h1,
.hero .section-copy,
.hero .fineprint,
.hero .fineprint a {
  color: #f2fafe;
}

.section-copy {
  max-width: 66ch;
  margin-top: 0.8rem;
}

.status-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.status-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e5f4ff;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 52%);
  background: rgb(255 255 255 / 18%);
  color: #fff;
  font: 600 0.76rem/1 var(--body-font);
  padding: 0.26rem 0.68rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font: 600 0.9rem/1 var(--body-font);
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #ffffff;
  color: #06356c;
  box-shadow: 0 6px 16px rgb(0 0 0 / 14%);
}

.btn-ghost {
  border-color: rgb(255 255 255 / 55%);
  color: #e9f6ff;
  background: rgb(255 255 255 / 8%);
}

.btn-soft {
  border-color: var(--line-soft);
  color: var(--ink-strong);
  background: #fff;
}

.feature-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.step-card {
  border: 1px solid var(--line-soft);
  border-radius: 1rem;
  background: var(--surface-mute);
  padding: 1rem;
  box-shadow: 0 8px 20px rgb(12 73 142 / 8%);
}

.feature-card p,
.step-card p {
  margin: 0.45rem 0 0;
  color: var(--ink);
  font-size: 0.94rem;
}

.process-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  border: 1px solid #98bfe4;
  background: #e9f4ff;
  color: var(--accent-strong);
  font: 700 0.82rem/1 var(--display-font);
}

.form-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  max-width: 560px;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink-strong);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b7d3ec;
  border-radius: 0.7rem;
  padding: 0.7rem 0.75rem;
  font: 400 0.98rem/1.4 var(--body-font);
  background: #fff;
  color: var(--ink-strong);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(15 105 198 / 12%);
  outline: none;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.55rem;
  align-items: start;
  font-size: 0.9rem;
  color: var(--ink);
}

.checkbox-row input {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
}

.fineprint {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.9;
}

.fineprint a {
  text-underline-offset: 0.12em;
}

.prose-panel h1 {
  max-width: none;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--ink-strong);
}

.prose-panel h2 {
  margin-top: 1.5rem;
  font-size: clamp(1.15rem, 2.1vw, 1.4rem);
}

.prose-panel p,
.prose-panel li {
  max-width: 74ch;
}

.prose-panel ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.prose-panel li + li {
  margin-top: 0.35rem;
}

.center-panel {
  text-align: center;
}

.center-panel h1 {
  max-width: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .topbar {
    border-radius: 1rem;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(1140px, 95vw);
    margin-top: 0.8rem;
    padding: 0.5rem;
  }

  .topbar {
    position: static;
    padding: 0.85rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
  }

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

  h1 {
    max-width: none;
  }
}
