:root {
  --ink: #071f35;
  --ink-soft: #496276;
  --ink-muted: #6d8190;
  --navy: #062a46;
  --navy-2: #0a3d61;
  --navy-3: #0f517b;
  --teal: #00a59b;
  --green: #2eb978;
  --aqua: #c9f4ef;
  --mist: #eef7f8;
  --surface: #ffffff;
  --surface-soft: #f6fbfc;
  --surface-blue: #eaf5f8;
  --line: #d7e7ed;
  --line-strong: #bfd5df;
  --shadow-soft: 0 20px 60px rgba(6, 42, 70, 0.1);
  --shadow-lift: 0 30px 80px rgba(6, 42, 70, 0.16);
  --radius: 8px;
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 52px);
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background:
    linear-gradient(90deg, rgba(6, 42, 70, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #ffffff 0%, #f8fcfd 42%, #ffffff 100%);
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: white;
  font-weight: 800;
  background: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px var(--gutter);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(215, 231, 237, 0.82);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 820;
}

.brand-logo {
  width: clamp(156px, 18vw, 238px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  color: white;
  font-size: 12px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 12px 24px rgba(6, 42, 70, 0.16);
}

.nav {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 5px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  background: rgba(238, 247, 248, 0.72);
  border: 1px solid rgba(215, 231, 237, 0.8);
  border-radius: 999px;
}

.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover {
  color: var(--navy);
  background: white;
}

.header-cta {
  display: none;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: white;
  font-size: 14px;
  font-weight: 850;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(6, 42, 70, 0.18);
}

.section,
.section-band {
  padding: clamp(72px, 9vw, 120px) 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 86px);
  padding-bottom: clamp(42px, 5vw, 70px);
  background:
    linear-gradient(120deg, #ffffff 0 54%, rgba(234, 245, 248, 0.86) 54% 100%),
    linear-gradient(180deg, #fafdfe 0%, #ffffff 76%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 53%, rgba(0, 165, 155, 0.09) 53% calc(53% + 1px), transparent calc(53% + 1px)),
    linear-gradient(180deg, transparent 0 23%, rgba(6, 42, 70, 0.06) 23% calc(23% + 1px), transparent calc(23% + 1px));
}

.hero-grid,
.two-column,
.split-grid,
.registration-grid,
.faq-grid {
  display: grid;
  gap: clamp(36px, 6vw, 78px);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: none;
}

h1 span {
  color: var(--teal);
  display: block;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.hero-subheadline {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  touch-action: manipulation;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, var(--teal), var(--green));
  box-shadow: 0 18px 36px rgba(0, 165, 155, 0.3);
}

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

.button-primary:hover {
  box-shadow: 0 24px 46px rgba(0, 165, 155, 0.36);
}

.qualification-pill {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 10px 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(6, 42, 70, 0.08);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-proof-strip {
  grid-column: 1 / -1;
  margin-top: clamp(4px, 2vw, 16px);
}

.trust-badges li {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 18px 18px 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(6, 42, 70, 0.07);
}

.trust-badges li::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  content: "";
  background: var(--teal);
}

.trust-badges strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.trust-badges span {
  color: var(--ink-muted);
  font-size: 14px;
}

.hero-visual {
  align-self: center;
  margin: 0;
  min-width: 0;
}

.visual-frame {
  position: relative;
  max-width: 560px;
  margin-left: auto;
  padding: clamp(16px, 2.5vw, 24px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(0, 165, 155, 0.18), rgba(6, 42, 70, 0.08));
  border: 1px solid rgba(191, 213, 223, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}

.visual-frame::before {
  position: absolute;
  inset: 12px;
  z-index: -1;
  content: "";
  background: var(--navy);
  border-radius: var(--radius);
  transform: translate(12px, 12px);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 28px 42px rgba(6, 42, 70, 0.12));
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(215, 231, 237, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(6, 42, 70, 0.16);
  backdrop-filter: blur(14px);
}

.floating-card span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card strong {
  color: var(--navy);
  font-size: 17px;
}

.floating-card small {
  color: var(--ink-muted);
  font-size: 13px;
}

.assignment-card {
  left: 18px;
  bottom: 46px;
  width: min(245px, 68%);
}

.payout-card {
  right: 18px;
  top: 40px;
  min-width: 132px;
}

.payout-card strong {
  font-size: 34px;
  line-height: 1;
}

.hero-visual figcaption {
  max-width: 440px;
  margin: 16px auto 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.two-column {
  align-items: start;
}

.lead-panel {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.lead-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.lead-panel p:last-of-type {
  margin-bottom: 0;
}

.lead-panel strong {
  color: var(--navy);
}

.model-line {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.model-line span {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  color: var(--ink-soft);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.model-line strong {
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(234, 245, 248, 0.8), rgba(246, 251, 252, 0.95)),
    var(--surface-soft);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.steps {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(6, 42, 70, 0.06);
}

.steps span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: white;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 44%),
    var(--navy);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(6, 42, 70, 0.18);
}

.steps p,
.benefit-card p,
.task-panel p {
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  gap: 16px;
}

.benefit-card,
.criteria-panel,
.task-panel,
.contact-form,
.success-dialog {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit-card {
  position: relative;
  min-height: 248px;
  padding: 26px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(6, 42, 70, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.benefit-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 22px 52px rgba(6, 42, 70, 0.1);
  transform: translateY(-3px);
}

.icon-wrap {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--teal);
  background: linear-gradient(180deg, #effcfa, #dff7f1);
  border: 1px solid #beeae4;
  border-radius: var(--radius);
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-split {
  background:
    linear-gradient(90deg, rgba(6, 42, 70, 0.05), transparent 45%),
    white;
}

.criteria-panel,
.task-panel {
  padding: clamp(28px, 5vw, 46px);
  box-shadow: var(--shadow-soft);
}

.criteria-panel {
  background:
    linear-gradient(180deg, white, #fbfefe);
}

.task-panel {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(130deg, rgba(0, 165, 155, 0.22), transparent 34%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
  border-color: rgba(255, 255, 255, 0.18);
}

.task-panel::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 120px;
  height: 120px;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px) 0 0 / 20px 20px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px) 0 0 / 20px 20px;
  opacity: 0.55;
}

.task-panel > * {
  position: relative;
  z-index: 1;
}

.task-panel h2,
.task-panel h3,
.task-panel strong {
  color: white;
}

.task-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 52px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.45;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-list li::before {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: white;
  content: "✓";
  font-size: 13px;
  font-weight: 900;
  background: var(--teal);
  border-radius: 50%;
}

.mini-stats {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.mini-stats span {
  display: grid;
  gap: 2px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.mini-stats strong {
  font-size: 17px;
}

.faq-intro {
  max-width: 520px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(6, 42, 70, 0.045);
}

summary {
  position: relative;
  padding: 21px 56px 21px 22px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--teal);
  content: "+";
  font-size: 24px;
  line-height: 1;
  background: var(--mist);
  border-radius: 50%;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 22px 21px;
  margin-bottom: 0;
}

.registration-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 74px 74px,
    linear-gradient(140deg, #041e33 0%, var(--navy) 48%, #073b50 100%);
}

.registration-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.registration-grid {
  position: relative;
  z-index: 1;
}

.registration-section h2,
.registration-copy .eyebrow {
  color: white;
}

.registration-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.registration-note {
  padding: 20px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.registration-note strong {
  color: white;
}

.contact-form {
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

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

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: var(--ink);
  background: #f9fcfd;
  border: 1px solid #c9dde6;
  border-radius: var(--radius);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  min-height: 116px;
  padding-top: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: white;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 165, 155, 0.15);
}

.privacy {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 18px;
}

.privacy input {
  width: 18px;
  min-height: auto;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.privacy span {
  color: var(--ink-soft);
  font-weight: 650;
  line-height: 1.5;
}

.privacy a,
.legal-content a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-error {
  min-height: 24px;
  margin: 12px 0 8px;
  color: #a5212d;
  font-size: 15px;
  font-weight: 780;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(8, 35, 58, 0.62);
}

.success-modal.is-visible {
  display: grid;
}

.success-dialog {
  position: relative;
  width: min(100%, 460px);
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow-lift);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink-soft);
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.modal-close:hover {
  background: var(--surface-soft);
}

.success-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
}

.success-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-dialog h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #041e33;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  width: fit-content;
  padding: 10px 12px;
  background: white;
  border-radius: var(--radius);
}

.footer-brand img {
  width: min(250px, 68vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: white;
}

.legal-page {
  background: linear-gradient(180deg, #f8fcfd 0%, #ffffff 34%, #f6fbfc 100%);
}

.legal-hero {
  padding: clamp(58px, 8vw, 98px) 0 clamp(30px, 5vw, 54px);
  background:
    linear-gradient(115deg, transparent 0 55%, rgba(0, 165, 155, 0.08) 55% 100%),
    linear-gradient(180deg, #ffffff, #f8fcfd);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(42px, 7vw, 76px);
}

.legal-section {
  padding: clamp(42px, 7vw, 86px) 0 clamp(76px, 10vw, 124px);
}

.legal-content {
  max-width: 920px;
  padding: clamp(26px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 26px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0 0 22px;
}

@media (min-width: 640px) {
  .trust-badges,
  .benefit-grid,
  .form-grid,
  .mini-stats,
  .model-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .full-width {
    grid-column: 1 / -1;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 860px) {
  .nav,
  .header-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.82fr);
    align-items: center;
  }

  .two-column,
  .faq-grid,
  .registration-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .split-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }

  .steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .steps::before {
    position: absolute;
    top: 47px;
    left: 7%;
    right: 7%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  }

  .steps li {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    font-size: 15px;
  }

  .brand-logo {
    width: min(190px, 54vw);
  }

  .trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof-strip {
    margin-top: 10px;
  }

  .trust-badges li {
    min-height: 76px;
    padding: 14px;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
  }

  .qualification-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: var(--radius);
  }

  .visual-frame {
    display: none;
  }

  .hero-visual figcaption {
    display: none;
  }

  .assignment-card {
    left: 10px;
    bottom: 16px;
    width: calc(100% - 20px);
  }

  .payout-card {
    right: 10px;
    top: 12px;
  }

  .steps li {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .steps span {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
