:root {
  --paper: oklch(96.5% 0.018 82);
  --paper-2: oklch(91.8% 0.036 88);
  --ink: oklch(23% 0.055 333);
  --muted: oklch(43% 0.035 318);
  --green: oklch(50% 0.115 168);
  --blue: oklch(42% 0.108 257);
  --copper: oklch(58% 0.14 48);
  --plum: oklch(36% 0.105 333);
  --line: oklch(81% 0.035 88);
  --white-tint: oklch(98.5% 0.012 88);
  --shadow: 0 24px 70px oklch(23% 0.055 333 / 0.16);
  --radius: 8px;
  font-family: "Anek Latin", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, oklch(91% 0.08 166 / 0.46), transparent 26rem),
    linear-gradient(135deg, var(--paper) 0%, oklch(94% 0.02 62) 52%, oklch(91% 0.035 212) 100%);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.62;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 0 44%, oklch(60% 0.13 48 / 0.12) 44.2% 45.5%, transparent 45.7%),
    linear-gradient(105deg, transparent 0 63%, oklch(47% 0.12 168 / 0.11) 63.2% 64.4%, transparent 64.6%);
  opacity: 0.8;
  z-index: -1;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  background: var(--ink);
  color: var(--white-tint);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: oklch(96.5% 0.018 82 / 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: conic-gradient(from 210deg, var(--green), var(--blue), var(--copper), var(--green));
  box-shadow: inset 0 0 0 7px var(--paper);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.96rem;
}

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

.nav-links a:hover {
  color: var(--ink);
}

.button,
button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white-tint);
  padding: 13px 20px;
  font: 800 0.95rem/1 "Sora", ui-sans-serif, system-ui, sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  cursor: pointer;
}

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

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

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(42px, 7vw, 88px) 0 clamp(28px, 5vw, 64px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--copper));
}

h1,
h2,
h3 {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 11ch;
  margin-top: 18px;
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.hero-text {
  max-width: 64ch;
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  color: var(--muted);
  margin: 24px 0 26px;
}

.hero-bullets {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.hero-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero-bullets li::before {
  content: "";
  flex: 0 0 22px;
  height: 12px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--copper);
}

.visual-wrap {
  position: relative;
  min-height: 320px;
}

.hero-visual {
  width: min(100%, 760px);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.lead-panel {
  background: var(--ink);
  color: var(--white-tint);
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.lead-panel h2,
.lead-panel h3 {
  color: var(--white-tint);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  max-width: none;
}

.lead-panel p {
  color: oklch(90% 0.018 82);
  margin: 10px 0 20px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: oklch(98% 0.012 88);
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: oklch(88% 0.018 82);
  font-size: 0.9rem;
  font-weight: 500;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 5px;
}

.form-error {
  color: oklch(82% 0.14 48);
  font-weight: 800;
  margin: 0;
}

.hp {
  position: absolute;
  left: -9999px;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 108px) 0;
}

.section-wide {
  width: 100%;
  margin: 0;
  padding: clamp(58px, 9vw, 118px) max(16px, calc((100vw - 1160px) / 2));
  background: var(--ink);
  color: var(--white-tint);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-intro p {
  color: var(--muted);
  max-width: 58ch;
  margin: 0;
}

.section-wide .section-intro p {
  color: oklch(88% 0.018 82);
}

.pilot-road {
  display: grid;
  gap: 18px;
}

.road-step {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  padding: 18px 22px 18px 0;
  border-radius: 999px 8px 8px 999px;
  background: linear-gradient(90deg, oklch(98% 0.012 88 / 0.82), oklch(98% 0.012 88 / 0.22));
}

.step-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white-tint);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.road-step:nth-child(2) .step-mark {
  background: var(--blue);
}

.road-step:nth-child(3) .step-mark {
  background: var(--copper);
}

.road-step:nth-child(4) .step-mark {
  background: var(--plum);
}

.road-step p {
  max-width: 72ch;
  margin: 8px 0 0;
  color: var(--muted);
}

.ribbon-lanes {
  display: grid;
  gap: 14px;
}

.lane {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(170px, 0.36fr);
  gap: 20px;
  align-items: center;
  padding: 16px 18px 16px 0;
  border-radius: 999px 8px 8px 999px;
  background: linear-gradient(90deg, oklch(32% 0.07 333), oklch(32% 0.07 333 / 0.08));
}

.lane-code {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--copper);
  color: var(--ink);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.lane h3 {
  color: var(--white-tint);
}

.lane p {
  margin: 6px 0 0;
  color: oklch(87% 0.018 82);
}

.lane-output {
  justify-self: end;
  min-width: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: oklch(96% 0.025 88);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

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

.offer-block {
  padding: 24px 0;
}

.offer-block p {
  margin: 12px 0 0;
  color: var(--muted);
}

.offer-line {
  height: 14px;
  width: 96px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--copper));
}

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

details {
  background: oklch(98% 0.012 88);
  border-radius: 18px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

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

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.plain-list {
  padding-left: 1.1em;
  color: var(--muted);
}

.legal {
  max-width: 820px;
}

.legal h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.legal h2 {
  max-width: none;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin-top: 34px;
}

.footer {
  padding: 34px 0 48px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .hero,
  .section-intro,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 10ch;
  }

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

  .lead-panel {
    border-radius: 22px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.9rem;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero-visual {
    transform: none;
    border-radius: 18px;
  }

  .road-step,
  .lane {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lane-output {
    justify-self: start;
  }

  .footer {
    flex-direction: column;
  }
}
