:root {
  --ink: #141414;
  --paper: #f4f0e7;
  --cream: #fffdf7;
  --orange: #ff5a36;
  --yellow: #ffd756;
  --lime: #d9f558;
  --line: rgba(20, 20, 20, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

main {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(420px, 0.86fr);
}

.intro-panel {
  padding: 30px clamp(30px, 5vw, 76px) 72px;
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 16px;
}

.brand {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.eyebrow,
.kicker,
.form-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-copy {
  padding: clamp(54px, 8vh, 96px) 0 42px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
}

.kicker span {
  color: var(--orange);
  font-size: 17px;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7.3vw, 112px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

h1 em {
  display: inline-block;
  color: var(--orange);
  font-weight: 400;
  transform: rotate(-3deg);
}

.intro {
  max-width: 560px;
  margin: 30px 0 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.intro a {
  font-weight: 800;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--ink);
}

.stat {
  min-width: 0;
  padding: 22px 18px 20px 0;
}

.stat + .stat {
  border-left: 1px solid var(--ink);
  padding-left: 22px;
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 54px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.stat span {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
  padding-top: 62px;
}

.photo-frame {
  position: relative;
  margin: 0;
  background: var(--yellow);
  border: 1px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-2deg);
}

.photo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.92) contrast(1.04);
}

.photo-frame figcaption {
  position: absolute;
  right: -14px;
  bottom: 16px;
  padding: 8px 12px;
  background: var(--lime);
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.story-copy {
  font-size: 17px;
  line-height: 1.55;
}

.story-copy p {
  margin: 0 0 24px;
}

.story-copy .story-note {
  margin-top: -8px;
  color: #6f685f;
  font-size: 12px;
  line-height: 1.35;
}

.story-copy strong {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 6px;
  text-underline-offset: -3px;
  text-decoration-skip-ink: none;
}

.story-copy .statement {
  margin: 32px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.statement span {
  color: var(--orange);
}

.form-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(28px, 4vw, 64px);
  background: var(--orange);
  border-left: 1px solid var(--ink);
}

.form-card {
  width: 100%;
  max-width: 650px;
  margin: auto;
  padding: clamp(26px, 3.2vw, 48px);
  background: var(--cream);
  border: 1px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}

.form-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 30px;
}

.step {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.form-kicker {
  margin: 0 0 7px;
  color: var(--orange);
}

.form-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.form-heading div > p:last-child {
  margin: 12px 0 0;
  color: #5e5a53;
  font-size: 14px;
}

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

label > span,
legend {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

label > span b {
  color: var(--orange);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

input[type="text"],
input[type="email"] {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9b968d;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  box-shadow: 4px 4px 0 var(--yellow);
  transform: translate(-2px, -2px);
}

fieldset {
  min-width: 0;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

legend {
  width: 100%;
  padding: 0;
}

legend small {
  float: right;
  color: #777067;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.social-field {
  display: grid;
  grid-template-columns: minmax(42px, max-content) 1fr;
}

.social-field > span {
  display: grid;
  place-items: center;
  height: 44px;
  margin: 0;
  padding: 0 10px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-right: 0;
  font-size: 11px;
}

.social-field input {
  height: 44px;
}

.goal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.goal-chip {
  cursor: pointer;
}

.goal-chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.goal-chip span {
  display: block;
  margin: 0;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.goal-chip:hover span {
  transform: translateY(-2px);
}

.goal-chip input:focus-visible + span {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.goal-chip input:checked + span {
  background: var(--ink);
  color: #fff;
}

.other-goal {
  display: none;
  margin-top: 12px;
}

.goal-grid:has(input[value="Other"]:checked) + .other-goal {
  display: block;
}

.message-field {
  display: block;
  margin-top: 18px;
}

.message-field small {
  color: #777067;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.form-error {
  margin: 18px 0 0;
  padding: 12px;
  background: #ffe1d9;
  border: 1px solid var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.submit-button {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.submit-button:hover:not(:disabled) {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.submit-button span:last-child {
  font-size: 23px;
}

.privacy-note {
  margin: 14px 0 0;
  color: #777067;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.side-note {
  margin: 34px 0 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.success-state {
  padding: 46px 8px 30px;
  text-align: center;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 32px;
  font-weight: 900;
}

.success-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.success-state h3 {
  margin: 0 auto 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.success-state > p:not(.success-kicker) {
  max-width: 360px;
  margin: 0 auto;
  color: #5e5a53;
  line-height: 1.5;
}

.text-button {
  margin-top: 26px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

@media (max-width: 1080px) {
  main {
    grid-template-columns: 1fr;
  }

  .form-panel {
    min-height: auto;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .intro-panel {
    padding: 22px 20px 58px;
  }

  .hero-copy {
    padding: 58px 0 34px;
  }

  h1 {
    font-size: clamp(56px, 17vw, 82px);
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 17px 0;
  }

  .stat + .stat {
    border-top: 1px solid var(--ink);
    border-left: 0;
    padding-left: 0;
  }

  .stat strong {
    font-size: 40px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .photo-frame {
    width: calc(100% - 12px);
  }

  .form-panel {
    padding: 38px 16px 40px;
  }

  .form-card {
    padding: 28px 20px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .field-row,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .form-heading {
    grid-template-columns: 1fr;
  }

  legend small {
    display: block;
    float: none;
    margin-top: 4px;
  }

  textarea {
    min-height: 92px;
  }
}

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

[hidden] {
  display: none !important;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
