:root {
  --paper: #17181b;
  --surface: #23252a;
  --ink: #f4f0e5;
  --muted: #c1bbaf;
  --accent: #fd5d43;
  --accent-strong: #ff917e;
  --accent-soft: #4b170f;
  --on-accent: #17181b;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --text-size: clamp(17px, 1.5vw, 21px);
  --page: 1340px;
  --pad: clamp(22px, 4.4vw, 72px);
}

html[data-theme="dark"] {
  --paper: #17181b;
  --surface: #23252a;
  --ink: #f4f0e5;
  --muted: #c1bbaf;
  --accent: #fd5d43;
  --accent-strong: #ff917e;
  --accent-soft: #4b170f;
  --on-accent: #17181b;
  color-scheme: dark;
}

html[data-theme="light"] {
  --paper: #f4f0e5;
  --surface: #fffaf0;
  --ink: #17181b;
  --muted: #625d54;
  --accent: #fd5d43;
  --accent-strong: #9e2f22;
  --accent-soft: #4b170f;
  --on-accent: #17181b;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-size);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  transition: background-color .28s ease, color .28s ease;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}

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

.site-header {
  display: flex;
  max-width: var(--page);
  min-height: 92px;
  margin: 0 auto;
  padding: 22px var(--pad);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--ink);
}

.wordmark {
  flex: 0 0 auto;
  width: clamp(260px, 27vw, 360px);
  letter-spacing: -.01em;
  text-decoration: none;
}

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

html[data-theme="dark"] .brand-logo--light,
html[data-theme="light"] .brand-logo--dark {
  display: none;
}

.site-header p {
  max-width: 48ch;
  margin: 0;
  text-align: right;
  font-size: var(--text-size);
  font-weight: 650;
  line-height: 1.32;
}

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 56px;
  padding: 14px 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: var(--text-size);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--accent);
  transition: transform .16s ease, box-shadow .16s ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(340px, .64fr);
  max-width: var(--page);
  min-height: min(740px, calc(100vh - 92px));
  margin: 0 auto;
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  display: flex;
  padding: clamp(72px, 9vw, 132px) var(--pad) clamp(74px, 8vw, 112px);
  flex-direction: column;
  justify-content: center;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 12.2ch;
  margin: 0;
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -.036em;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 32px;
  gap: clamp(18px, 2vw, 28px);
}

.hero-points p {
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid var(--ink);
  font-size: var(--text-size);
  line-height: 1.48;
}

.proof-panel {
  display: flex;
  min-height: 100%;
  padding: clamp(44px, 5.5vw, 78px) clamp(30px, 4vw, 58px);
  align-items: center;
  border-left: 1px solid var(--ink);
  background: var(--accent);
  color: var(--on-accent);
  transition: background-color .28s ease, color .28s ease;
}

.proof-statement {
  margin: 0;
  font-size: clamp(39px, 4.1vw, 60px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.proof-statement mark {
  background: transparent;
  color: var(--accent-soft);
  padding: 0 .09em .04em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: background-color .7s ease, color .7s ease;
}

.proof-statement mark.is-active {
  animation: proof-pulse 5s ease-in-out both;
}

@keyframes proof-pulse {
  0% {
    background: transparent;
    color: var(--accent-soft);
  }
  18% {
    background: var(--on-accent);
    color: var(--accent);
  }
  82% {
    background: var(--on-accent);
    color: var(--accent);
  }
  100% {
    background: transparent;
    color: var(--accent-soft);
  }
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, .97fr);
  max-width: var(--page);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 164px) var(--pad);
  gap: clamp(54px, 9vw, 138px);
  border-bottom: 1px solid var(--ink);
}

.section h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(43px, 5.8vw, 82px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.03em;
}

.case-copy {
  max-width: 570px;
  padding-top: 8px;
}

.case-copy p,
.step > p:last-child,
.about-copy p,
.contact-copy > p {
  font-size: var(--text-size);
  line-height: 1.55;
}

.case-copy p {
  margin: 0;
}

.case-copy p + p {
  margin-top: 1.3em;
}

.case-copy p:last-child {
  color: var(--accent-strong);
  font-weight: 750;
}

.how {
  display: block;
  background: var(--surface);
  transition: background-color .28s ease;
}

.how h2 {
  max-width: 18ch;
}

.how h2 span {
  display: block;
}

.how h2 span + span {
  margin-top: .3em;
}

.steps {
  margin-top: clamp(70px, 8vw, 112px);
  border-top: 1px solid var(--ink);
}

.step {
  display: grid;
  grid-template-columns: 72px minmax(240px, .76fr) minmax(320px, 1.24fr);
  padding: 34px 0 40px;
  gap: 28px;
  border-bottom: 1px solid var(--ink);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 4px 0 0;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: var(--text-size);
  font-weight: 850;
  line-height: 1;
}

.step h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.step > p:last-child {
  max-width: 640px;
  margin: 4px 0 0;
}

.story-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--page);
  margin: 0 auto;
  background: var(--accent);
  color: var(--on-accent);
  transition: background-color .28s ease, color .28s ease;
}

.story-line p {
  min-height: 250px;
  margin: 0;
  padding: clamp(44px, 5vw, 72px) var(--pad);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.03em;
}

.story-line p:first-child {
  border-right: 1px solid var(--on-accent);
}

.about {
  background: var(--paper);
}

.about-copy {
  max-width: 590px;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 1.25em;
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, .97fr);
  max-width: var(--page);
  margin: 0 auto;
  padding: clamp(92px, 11vw, 158px) var(--pad);
  gap: clamp(58px, 9vw, 132px);
  border-bottom: 1px solid var(--ink);
  background: var(--accent);
  color: var(--on-accent);
  transition: background-color .28s ease, color .28s ease;
}

.contact h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 86px);
  font-weight: 850;
  line-height: .98;
  letter-spacing: -.03em;
}

.contact-copy > p {
  max-width: 650px;
  margin: 34px 0 0;
}

.contact-copy > p + p {
  margin-top: 18px;
  color: var(--accent-soft);
}

.contact-form {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto minmax(260px, 1fr) auto auto auto;
  align-content: stretch;
  gap: 22px 18px;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.message-field {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--on-accent);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--on-accent);
  font-size: var(--text-size);
}

.contact-form input {
  min-height: 54px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 260px;
  padding: 12px;
  flex: 1;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.contact-form button {
  min-width: 118px;
  min-height: 54px;
  padding: 11px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: var(--text-size);
  font-weight: 850;
  box-shadow: 4px 4px 0 var(--on-accent);
  transition: transform .16s ease, box-shadow .16s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--on-accent);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .72;
}

.form-privacy,
.form-status {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.form-privacy {
  color: var(--accent-soft);
}

.form-privacy a {
  font-weight: 800;
}

.form-status {
  padding-top: 14px;
  border-top: 1px solid var(--on-accent);
  font-weight: 750;
}

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

footer {
  display: flex;
  max-width: var(--page);
  min-height: 104px;
  margin: 0 auto;
  padding: 28px var(--pad);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: var(--text-size);
}

footer p {
  margin: 0;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-wordmark {
  display: block;
  width: min(330px, 72vw);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

footer a {
  font-weight: 750;
  text-underline-offset: 4px;
}

.privacy-page {
  max-width: var(--page);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) var(--pad) clamp(92px, 11vw, 158px);
  border-bottom: 1px solid var(--ink);
}

.privacy-back {
  margin: 0 0 64px;
}

.privacy-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.privacy-page h1 {
  max-width: 10ch;
}

.privacy-copy {
  max-width: 760px;
  margin-top: clamp(64px, 8vw, 100px);
}

.privacy-copy section {
  padding: 30px 0 34px;
  border-top: 1px solid var(--ink);
}

.privacy-copy section:last-child {
  border-bottom: 1px solid var(--ink);
}

.privacy-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.privacy-copy p {
  margin: 18px 0 0;
}

.theme-button {
  padding: 7px 11px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: var(--text-size);
  font-weight: 750;
}

.theme-button:hover,
.theme-button:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 4px;
}

.contact :focus-visible {
  outline-color: var(--on-accent);
}

@media (max-width: 940px) {
  .site-header {
    min-height: 78px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .section,
  .contact {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .section h2,
  .contact h2 {
    max-width: 15ch;
  }

  .step {
    grid-template-columns: 60px minmax(220px, .8fr) 1.2fr;
  }

  .contact-form {
    height: auto;
    grid-template-rows: auto auto auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 18px;
  }

  .site-header p {
    max-width: 24ch;
    line-height: 1.25;
  }

  .hero-copy {
    padding-top: 82px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(54px, 16.3vw, 84px);
  }

  .proof-panel {
    min-height: 430px;
  }

  .step {
    grid-template-columns: 52px 1fr;
    gap: 22px 12px;
  }

  .step > p:last-child {
    grid-column: 2;
  }

  .story-line {
    grid-template-columns: 1fr;
  }

  .story-line p {
    min-height: 190px;
  }

  .story-line p:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--on-accent);
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .site-header p {
    max-width: 30ch;
    text-align: left;
  }

  .wordmark {
    width: min(300px, 100%);
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section h2 {
    font-size: 41px;
  }

  .step h3 {
    font-size: 31px;
  }

  .story-line p {
    font-size: 43px;
  }

  .contact h2 {
    font-size: 45px;
  }

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

  .contact-form > div {
    grid-column: 1 / -1;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .button,
  .contact,
  .theme-button,
  footer {
    display: none;
  }

  body,
  .how {
    background: white;
    color: black;
  }

  .hero,
  .section,
  .story-line {
    max-width: none;
  }
}
