:root {
  color-scheme: light;
  --ink: #14213d;
  --muted: #526070;
  --line: #d9e2ec;
  --soft: #f5f8fb;
  --accent: #0f62fe;
  --accent-dark: #003f9e;
  --ok: #176f4d;
  --warn: #8a5a00;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
}

body {
  margin: 0;
}

a {
  color: var(--accent);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 10;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: currentColor;
  stroke: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
}

.nav-links .nav-cta {
  color: var(--white);
  background: var(--accent);
  border-radius: 8px;
  padding: 10px 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
}

.button.secondary {
  background: var(--white);
  color: var(--accent);
}

.hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.compact-hero {
  padding-bottom: 42px;
}

.eyebrow {
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  margin: 0 0 16px;
}

.lead {
  font-size: 1.18rem;
  max-width: 760px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--soft);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.notice {
  border-left: 4px solid var(--accent);
  background: #edf5ff;
  padding: 18px 20px;
  border-radius: 8px;
}

.notice p:last-child,
.card p:last-child {
  margin-bottom: 0;
}

.list {
  padding-left: 20px;
  color: var(--muted);
}

.list li {
  margin: 10px 0;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.status.available {
  color: #0f5132;
  background: #dff5e8;
  border: 1px solid #b9e6cc;
}

.status.partial {
  color: #744d00;
  background: #fff1c7;
  border: 1px solid #efd68b;
}

.status.planned {
  color: #475467;
  background: #eef2f6;
  border: 1px solid #d5dde8;
}

.feature-section {
  margin-bottom: 54px;
}

.feature-heading {
  max-width: 820px;
  margin-bottom: 20px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.feature-table th,
.feature-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.feature-table th {
  color: var(--ink);
  background: #f7fbff;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-table td {
  color: var(--muted);
}

.feature-table td:first-child {
  color: var(--ink);
  font-weight: 800;
  width: 28%;
}

.feature-table td:nth-child(2) {
  width: 50%;
}

.feature-table td:nth-child(3) {
  width: 22%;
}

.feature-table tr:last-child td {
  border-bottom: 0;
}

.feature-callout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #f7fbff;
}

.feature-callout p {
  max-width: 760px;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
}

textarea {
  min-height: 120px;
}

.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.checkbox input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 4px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.legal main {
  padding: 48px 0 72px;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.legal p,
.legal li {
  max-width: 880px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: #101828;
}

.site-footer p,
.site-footer a {
  color: #d8dee9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  align-items: center;
}

.site-footer .footer-links a {
  white-space: nowrap;
}

@media (max-width: 820px) {
  .nav,
  .nav-links,
  .actions,
  .footer-links,
  .feature-callout {
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    padding: 16px 0;
  }

  .grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-callout {
    flex-direction: column;
  }
}
