:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-soft: #edf3fa;
  --ink: #071331;
  --muted: #5c6680;
  --line: #dbe4f0;
  --brand: #061747;
  --brand-2: #0d2b66;
  --accent: #09a8e8;
  --accent-dark: #0577b6;
  --accent-soft: #e5f7ff;
  --shadow: 0 22px 60px rgba(6, 23, 71, 0.14);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  max-width: none;
  min-height: min(760px, 88vh);
  margin: 0 auto;
  padding: 72px max(24px, calc((100vw - 1120px) / 2)) 64px;
  background:
    linear-gradient(120deg, rgba(9, 168, 232, 0.16), transparent 34%),
    linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}

.hero__content {
  min-width: 0;
  max-width: 740px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 34px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  padding: 0 13px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  overflow-wrap: break-word;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.button--primary {
  background: var(--brand);
  color: #fff;
}

.button--primary:hover {
  background: var(--brand-2);
}

.button--secondary {
  border-color: var(--line);
  background: #fff;
}

.hero .button--primary {
  background: #fff;
  color: var(--brand);
}

.hero .button--primary:hover {
  background: var(--accent-soft);
}

.hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #fff;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.quick-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 28px;
  box-shadow: var(--shadow);
}

.quick-card__label {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

.quick-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-card li {
  position: relative;
  padding-left: 28px;
  font-weight: 750;
  overflow-wrap: break-word;
}

.quick-card li::before,
.pay-list li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.section {
  padding: 72px 24px;
}

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

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
  min-width: 0;
}

.section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  overflow-wrap: break-word;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.steps article,
.check-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  overflow: hidden;
}

.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.steps p,
.check-grid p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

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

.check-grid strong {
  display: block;
  margin-bottom: 8px;
}

.pay-list {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}

.pay-list ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pay-list li {
  position: relative;
  padding-left: 28px;
  overflow-wrap: break-word;
}

.application {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 44px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 78px 24px 96px;
}

.application__copy {
  position: sticky;
  top: 28px;
  min-width: 0;
  align-self: start;
}

.application__copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.note {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

.form {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 26px;
  box-shadow: var(--shadow);
}

.field,
.choice-field {
  margin-bottom: 16px;
}

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

label,
legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(9, 168, 232, 0.2);
  border-color: var(--accent);
}

.choice-field {
  display: grid;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.choice-field label,
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.choice-field input,
.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.consent {
  margin: 20px 0;
}

.form__submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.form__fineprint {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.response-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(9, 168, 232, 0.16), transparent 34%),
    linear-gradient(135deg, var(--brand), var(--brand-2));
}

.status {
  width: min(100%, 720px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #fff;
  padding: clamp(28px, 6vw, 52px);
  box-shadow: var(--shadow);
}

.status .brand {
  width: fit-content;
  border-color: var(--brand);
  color: var(--brand);
}

.status h1 {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.status p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.1rem;
}

@media (max-width: 860px) {
  .hero,
  .split,
  .application {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .quick-card,
  .application__copy {
    position: static;
  }

  .steps,
  .check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .application {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding-top: 24px;
  }

  .brand {
    min-height: 34px;
    margin-bottom: 24px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(1.92rem, 8.7vw, 2.28rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.82rem, 8vw, 2.25rem);
    line-height: 1.08;
  }

  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .lead,
  .section p,
  .application__copy p {
    font-size: 1rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .trust-list li {
    width: 100%;
    border-radius: 8px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .quick-card {
    padding: 20px;
    overflow: hidden;
  }

  .quick-card ul {
    gap: 11px;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .application {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .field-group {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form {
    padding: 18px;
  }
}
