:root {
  --green: #113f35;
  --green-2: #24594d;
  --ink: #172720;
  --muted: #53645e;
  --gold: #b0873d;
  --pale: #edf3f1;
  --canvas: #f7f9f8;
  --rule: #c8d6d1;
  --white: #ffffff;
  --page: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  display: flex;
  width: min(var(--page), calc(100% - 64px));
  min-height: 126px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand {
  display: block;
  width: min(500px, 42vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  color: var(--green-2);
}

.sign-in-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--green);
  border-radius: 4px;
}

.sign-in-copy-mobile {
  display: none;
}

.hero {
  display: grid;
  min-height: min(690px, calc(100vh - 126px));
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 84px;
  padding: 78px max(32px, calc((100vw - var(--page)) / 2));
  overflow: hidden;
  background: var(--canvas);
  border-top: 1px solid var(--rule);
  border-left: 12px solid var(--green);
  border-bottom: 1px solid var(--rule);
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 5.15rem;
  line-height: 0.96;
}

.hero-statement {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.12;
}

.hero-support {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

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

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

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

.button-secondary:hover {
  background: var(--pale);
}

.definition-flow {
  position: relative;
  display: grid;
  width: 100%;
  justify-items: center;
  padding: 34px 38px 38px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 5px solid var(--green);
}

.flow-kicker {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.flow-input {
  width: min(100%, 430px);
  padding: 17px 20px;
  text-align: center;
  background: var(--canvas);
  border: 1px solid var(--rule);
}

.flow-input span,
.flow-core span,
.flow-choice span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.flow-input strong {
  display: block;
  font-size: 0.94rem;
}

.flow-connector {
  position: relative;
  width: 2px;
  height: 25px;
  background: var(--green);
}

.flow-connector::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 7px solid var(--green);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
  transform: translateX(-50%);
}

.flow-connector-split {
  height: 31px;
}

.flow-core {
  display: grid;
  width: min(100%, 520px);
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 8px 16px;
  padding: 23px 26px 20px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
}

.flow-core img {
  width: 34px;
  filter: brightness(0) invert(1);
}

.flow-core span {
  color: #c8d9d4;
}

.flow-core strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.15;
}

.flow-components {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1.45fr 1fr;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.flow-components span {
  display: grid;
  min-height: 38px;
  margin: 0;
  place-items: center;
  padding: 0 10px;
  color: var(--white);
  font-size: 0.68rem;
  text-align: center;
  text-transform: none;
}

.flow-components span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.flow-comparison {
  width: min(100%, 560px);
  text-align: center;
}

.flow-comparison > strong {
  display: block;
  margin-bottom: 11px;
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.dealer-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.dealer-options span {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  background: var(--canvas);
  border: 1px solid var(--rule);
  font-size: 0.76rem;
  font-weight: 700;
}

.dealer-options b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: var(--green-2);
  border-radius: 50%;
  font-size: 0.68rem;
}

.flow-choice {
  display: flex;
  width: min(100%, 520px);
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  background: #f5efe3;
  border: 2px solid var(--gold);
}

.flow-choice span {
  color: #7c5a20;
}

.flow-choice strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}

.flow-choice small {
  max-width: 130px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: right;
}

.request-section {
  display: grid;
  width: min(var(--page), calc(100% - 64px));
  grid-template-columns: minmax(300px, 0.75fr) minmax(560px, 1.25fr);
  gap: 94px;
  margin: 0 auto;
  padding: 104px 0 118px;
}

.request-intro h2 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 3.2rem;
  line-height: 1.04;
}

.request-intro > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.05rem;
}

.access-note {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.access-note-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.access-note p {
  margin: 0;
  color: var(--muted);
}

.access-note strong {
  color: var(--ink);
}

.form-panel {
  padding: 38px;
  background: var(--canvas);
  border: 1px solid var(--rule);
}

.mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 34px;
  border: 1px solid var(--green);
  border-radius: 4px;
  overflow: hidden;
}

.mode-switch button {
  min-height: 48px;
  color: var(--green);
  background: var(--white);
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.mode-switch button + button {
  border-left: 1px solid var(--green);
}

.mode-switch button[aria-selected="true"] {
  color: var(--white);
  background: var(--green);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #9fb2ab;
  border-radius: 3px;
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 132px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
}

.consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-status {
  margin: 0;
  color: #8a2d2d;
  font-size: 0.88rem;
}

.trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success-panel {
  min-height: 460px;
  padding: 64px 42px;
  text-align: center;
}

.success-panel > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 26px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
}

.success-panel h3 {
  margin-bottom: 16px;
  font-size: 2rem;
}

.success-panel p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: var(--muted);
}

footer {
  display: grid;
  min-height: 92px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px max(32px, calc((100vw - var(--page)) / 2));
  color: #dbe7e3;
  background: var(--green);
  font-size: 0.78rem;
}

footer img {
  width: 34px;
  filter: brightness(0) invert(1);
}

footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .definition-flow {
    max-width: 860px;
  }

  .request-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 20px);
    min-height: 78px;
    gap: 6px;
  }

  .brand {
    width: min(250px, calc(100vw - 100px));
    max-width: none;
  }

  nav {
    gap: 12px;
  }

  nav > a:first-child {
    display: none;
  }

  .sign-in-link {
    min-height: 40px;
    padding: 0 9px;
    font-size: 0.74rem;
  }

  .sign-in-copy {
    display: none;
  }

  .sign-in-copy-mobile {
    display: inline;
  }

  .hero {
    min-height: calc(100vh - 78px);
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
    padding: 58px 20px 46px;
    border-left-width: 7px;
  }

  h1 {
    font-size: 3.45rem;
  }

  .hero-statement {
    font-size: 1.75rem;
  }

  .hero-support {
    font-size: 1rem;
  }

  .definition-flow {
    padding: 28px 16px 26px;
  }

  .flow-kicker {
    margin-bottom: 18px;
  }

  .flow-core {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 20px 18px 17px;
  }

  .flow-core img {
    width: 29px;
  }

  .flow-core strong {
    font-size: 1.02rem;
  }

  .flow-components span {
    padding: 0 6px;
    font-size: 0.61rem;
  }

  .dealer-options {
    gap: 6px;
  }

  .dealer-options span {
    min-height: 48px;
    gap: 5px;
    font-size: 0.65rem;
  }

  .dealer-options b {
    width: 22px;
    height: 22px;
  }

  .flow-choice {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .flow-choice small {
    max-width: none;
    text-align: left;
  }

  .request-section {
    width: calc(100% - 30px);
    padding: 72px 0 82px;
  }

  .request-intro h2 {
    font-size: 2.35rem;
  }

  .form-panel {
    padding: 24px 18px;
  }

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

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  footer {
    grid-template-columns: auto 1fr;
    padding: 24px 20px;
  }

  footer p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 980px) and (max-height: 560px) and (orientation: landscape) {
  .site-header {
    width: calc(100% - 24px);
    min-height: 62px;
    gap: 10px;
  }

  .brand {
    width: min(240px, calc(100vw - 116px));
  }

  nav {
    gap: 10px;
  }

  nav > a:first-child {
    display: none;
  }

  .sign-in-link {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .sign-in-copy {
    display: none;
  }

  .sign-in-copy-mobile {
    display: inline;
  }

  .hero {
    min-height: calc(100vh - 62px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
