:root {
  --green: #123a32;
  --green2: #0b2b25;
  --cream: #fffaf2;
  --oat: #f4eddf;
  --coral: #f36a45;
  --lilac: #d8c8ff;
  --gold: #e9bb54;
  --ink: #17211e;
  --mono: "DM Mono", monospace;
  --sans: "DM Sans", sans-serif;
  --display: "Fraunces", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
}
a,
button,
input,
select,
textarea {
  font: inherit;
}
a,
button {
  touch-action: manipulation;
}
.signup-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid #fff4;
  background: linear-gradient(180deg, #092d29d9, transparent);
}
.signup-brand {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}
.signup-brand > span {
  font: 700 clamp(25px, 2.3vw, 35px) var(--display);
  letter-spacing: -0.05em;
}
.signup-brand i {
  color: var(--coral);
  font-weight: 600;
}
.signup-brand small {
  font: 500 8px var(--mono);
  letter-spacing: 0.24em;
  margin-top: 6px;
}
.back-link {
  color: white;
  text-decoration: none;
  font-size: 13px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.back-link span {
  color: var(--coral);
}
main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.86fr);
  min-height: 100svh;
}
.signup-intro {
  position: sticky;
  top: 0;
  height: 100svh;
  background: var(--green);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.intro-image,
.intro-wash {
  position: absolute;
  inset: 0;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}
.intro-wash {
  background:
    linear-gradient(0deg, #082822f2 0%, #123a3288 54%, #092d2940),
    linear-gradient(90deg, #092d2995, transparent);
}
.intro-copy {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 clamp(28px, 6vw, 90px) clamp(52px, 8vh, 90px);
  max-width: 850px;
}
.eyebrow {
  font: 500 10px var(--mono);
  letter-spacing: 0.13em;
}
.eyebrow b {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #f36a4530;
  margin-right: 10px;
}
.intro-copy h1 {
  font: 700 clamp(68px, 7vw, 118px) / 0.91 var(--display);
  letter-spacing: -0.05em;
  margin: 24px 0;
}
.intro-copy h1 em,
.form-heading h2 em,
.success-card h2 em {
  color: var(--coral);
  font-weight: 600;
}
.intro-copy > p {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
  max-width: 620px;
}
.quick-proof {
  display: flex;
  gap: 1px;
  background: #fff4;
  margin-top: 34px;
}
.quick-proof span {
  flex: 1;
  background: #0a2c26d9;
  padding: 16px;
  font: 10px var(--mono);
  line-height: 1.45;
}
.quick-proof strong {
  display: block;
  color: var(--lilac);
  font: 700 17px var(--display);
  margin-bottom: 3px;
}
.form-side {
  background: var(--cream);
  padding: 125px clamp(24px, 5vw, 72px) 0;
  min-width: 0;
}
.form-shell {
  max-width: 680px;
  margin: 0 auto;
}
.form-heading > span {
  font: 500 10px var(--mono);
  letter-spacing: 0.13em;
  color: var(--coral);
}
.form-heading h2,
.success-card h2 {
  font: 700 clamp(54px, 5.2vw, 82px) / 0.94 var(--display);
  letter-spacing: -0.045em;
  margin: 18px 0;
}
.form-heading > p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}
form {
  margin-top: 46px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.field {
  display: block;
  margin-bottom: 20px;
}
.field > span,
legend {
  display: block;
  font: 500 10px var(--mono);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.field > span small {
  opacity: 0.55;
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  border: 1px solid #173b333c;
  background: white;
  border-radius: 0;
  padding: 15px 14px;
  min-height: 50px;
  color: var(--ink);
  outline: 0;
  transition:
    0.2s border-color,
    0.2s box-shadow;
}
.field textarea {
  resize: vertical;
  line-height: 1.5;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px #f36a4520;
}
.field > small {
  display: block;
  font-size: 10px;
  opacity: 0.55;
  margin-top: 6px;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 22px;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.choice-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}
.choice-grid label {
  position: relative;
}
.choice-grid input,
.map-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-grid span {
  min-height: 50px;
  border: 1px solid #173b3340;
  background: white;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 8px;
  font-size: 13px;
  cursor: pointer;
}
.choice-grid input:checked + span {
  background: var(--lilac);
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}
.choice-grid input:focus-visible + span,
.map-choice input:focus-visible + span {
  outline: 3px solid #f36a4550;
  outline-offset: 2px;
}
.mini-map {
  height: 330px;
  background: var(--lilac);
  position: relative;
  overflow: hidden;
}
.mini-map > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-road {
  fill: none;
  stroke: #fff;
  stroke-width: 14;
  opacity: 0.63;
}
.map-route {
  fill: none;
  stroke: var(--coral);
  stroke-width: 4;
  stroke-dasharray: 10 8;
}
.map-choice {
  position: absolute;
  z-index: 3;
}
.map-choice span {
  min-height: 44px;
  background: white;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  font: 600 9px var(--mono);
  letter-spacing: 0.04em;
  box-shadow: 3px 4px 0 #123a3230;
  cursor: pointer;
}
.map-choice b {
  width: 10px;
  height: 10px;
  border: 2px solid var(--green);
  border-radius: 50%;
}
.map-choice input:checked + span {
  background: var(--green);
  color: white;
  box-shadow: 4px 5px 0 var(--coral);
}
.map-choice input:checked + span b {
  background: var(--coral);
  border-color: var(--coral);
}
.providence {
  left: 43%;
  top: 45%;
}
.willoughby {
  right: 6%;
  top: 12%;
}
.wynfield {
  left: 7%;
  bottom: 8%;
}
.elsewhere {
  left: 7%;
  top: 12%;
}
.map-truck {
  position: absolute;
  z-index: 2;
  left: 59%;
  top: 60%;
  width: 86px;
  filter: drop-shadow(5px 7px 0 #123a3235);
}
.map-truck span {
  position: absolute;
  right: -7px;
  top: -10px;
  background: var(--coral);
  padding: 4px 6px;
  font: 700 8px var(--mono);
}
.map-truck svg {
  width: 100%;
  display: block;
}
.map-help {
  font-size: 10px;
  opacity: 0.58;
  line-height: 1.5;
  margin: 8px 0 0;
}
.check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin: 14px 0;
  align-items: start;
  font-size: 11px;
  line-height: 1.5;
}
.check input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--green);
}
.sms-consent {
  opacity: 0.78;
}
.submit-button {
  width: 100%;
  min-height: 62px;
  border: 0;
  background: var(--coral);
  color: #111;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin-top: 28px;
  cursor: pointer;
  transition:
    0.2s transform,
    0.2s box-shadow;
}
.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 9px 10px 0 var(--green);
}
.submit-button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}
.submit-button b {
  font-size: 21px;
}
.privacy-note {
  font-size: 9px;
  line-height: 1.5;
  opacity: 0.5;
  margin: 12px 0 0;
}
.form-error {
  background: #ffe0d7;
  border-left: 4px solid var(--coral);
  padding: 12px 14px;
  font-size: 13px;
  margin-top: 18px;
}
.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.success-card {
  background: var(--lilac);
  padding: clamp(30px, 5vw, 55px);
  box-shadow: 14px 16px 0 var(--green);
  margin-top: 40px;
}
.success-mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral);
  font-size: 28px;
}
.success-kicker {
  font: 500 10px var(--mono);
  letter-spacing: 0.12em;
  margin-top: 25px;
}
.success-card > p:not(.success-kicker) {
  line-height: 1.65;
}
.success-card > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 25px;
  background: var(--green);
  color: white;
  text-decoration: none;
  padding: 0 18px;
  font-weight: 700;
  margin-top: 12px;
}
.form-side footer {
  font: 9px var(--mono);
  letter-spacing: 0.08em;
  opacity: 0.45;
  border-top: 1px solid #173b3325;
  padding: 28px 0;
  margin-top: 70px;
}
@media (max-width: 980px) {
  main {
    grid-template-columns: 1fr;
  }
  .signup-intro {
    position: relative;
    height: min(760px, 88svh);
    min-height: 650px;
  }
  .intro-copy {
    padding-left: 24px;
    padding-right: 24px;
  }
  .form-side {
    padding-top: 78px;
  }
  .signup-nav {
    position: absolute;
  }
  .quick-proof {
    max-width: 620px;
  }
}
@media (max-width: 560px) {
  .signup-nav {
    height: 76px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .back-link {
    font-size: 0;
    min-width: 44px;
    justify-content: center;
  }
  .back-link span {
    font-size: 20px;
  }
  .signup-intro {
    height: 760px;
    min-height: 760px;
  }
  .intro-copy {
    padding-bottom: 45px;
  }
  .intro-copy h1 {
    font-size: 59px;
    line-height: 0.95;
    margin: 19px 0;
  }
  .intro-copy > p {
    font-size: 15px;
    line-height: 1.55;
  }
  .quick-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
  }
  .quick-proof span {
    padding: 12px 9px;
  }
  .quick-proof strong {
    font-size: 15px;
  }
  .form-side {
    padding: 68px 20px 0;
  }
  .form-heading h2,
  .success-card h2 {
    font-size: 54px;
  }
  .form-heading > p {
    font-size: 14px;
  }
  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .choice-grid span {
    min-height: 52px;
  }
  .mini-map {
    height: 360px;
  }
  .providence {
    left: 37%;
    top: 47%;
  }
  .willoughby {
    right: 4%;
    top: 13%;
  }
  .wynfield {
    left: 4%;
    bottom: 8%;
  }
  .elsewhere {
    left: 4%;
    top: 13%;
  }
  .map-truck {
    left: 58%;
    top: 63%;
  }
  .check {
    font-size: 10px;
  }
  .success-card {
    box-shadow: 8px 9px 0 var(--green);
  }
  .form-side footer {
    line-height: 1.5;
  }
}
@media (max-width: 340px) {
  .intro-copy h1 {
    font-size: 52px;
  }
  .quick-proof strong {
    font-size: 14px;
  }
  .form-side {
    padding-left: 16px;
    padding-right: 16px;
  }
  .map-choice span {
    padding: 8px;
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .submit-button {
    transition: none;
  }
}
