/* Contact route: a compact, conversion-first conversation flow. */
:root {
  --contact-lime: #cfff00;
  --contact-cream: #f4f1e8;
  --contact-ink: #0d0f10;
  --contact-muted: rgba(244, 241, 232, 0.68);
  --contact-line: rgba(244, 241, 232, 0.15);
  --contact-soft-line: rgba(13, 15, 16, 0.16);
}

body.contact-page-body {
  background: var(--contact-ink);
  color: var(--contact-cream);
}

.contact-app {
  position: relative;
  overflow: clip;
  background: var(--contact-ink);
}

.contact-app .topbar {
  z-index: 5;
  margin-bottom: 0;
}

.contact-content {
  position: relative;
}

.contact-container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.contact-hero {
  position: relative;
  padding: 112px 0 104px;
  border-bottom: 1px solid var(--contact-line);
  background-color: var(--contact-ink);
  background-image:
    linear-gradient(rgba(244, 241, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 232, 0.035) 1px, transparent 1px);
  background-position: center center;
  background-size: 76px 76px;
}

.contact-hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 30%, rgba(207, 255, 0, 0.12), transparent 24%);
  content: '';
  pointer-events: none;
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: 82px;
  align-items: center;
}

.contact-hero-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 18px 0 30px;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--contact-lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-eyebrow-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--contact-lime);
  box-shadow: 0 0 20px rgba(207, 255, 0, 0.68);
}

.contact-hero h1 {
  max-width: 9ch;
  margin: 0;
  color: var(--contact-cream);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}

.contact-hero h1 > span:last-of-type,
.contact-section-heading h2 span {
  color: var(--contact-lime);
}

.contact-hero-lead {
  max-width: 49ch;
  margin: 0;
  color: var(--contact-muted);
  font-size: 18px;
  line-height: 1.62;
  text-wrap: pretty;
}

.contact-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  border-top: 1px solid var(--contact-line);
  border-bottom: 1px solid var(--contact-line);
}

.contact-proof-item {
  display: grid;
  gap: 5px;
  padding: 16px 16px 17px 0;
}

.contact-proof-item + .contact-proof-item {
  padding-left: 16px;
  border-left: 1px solid var(--contact-line);
}

.contact-proof-item strong {
  color: var(--contact-cream);
  font-size: 14px;
  font-weight: 600;
}

.contact-proof-item span {
  color: rgba(244, 241, 232, 0.54);
  font-size: 12px;
}

.contact-direct-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: rgba(244, 241, 232, 0.54);
  font-size: 13px;
}

.contact-direct-links a,
.contact-form-note a,
.contact-last-word a {
  color: var(--contact-cream);
  text-decoration-color: rgba(207, 255, 0, 0.72);
  text-underline-offset: 4px;
}

.contact-direct-links a:hover,
.contact-form-note a:hover,
.contact-last-word a:hover {
  color: var(--contact-lime);
}

.contact-form-card {
  padding: 32px;
  border: 1px solid rgba(13, 15, 16, 0.22);
  border-radius: 10px;
  background: var(--contact-cream);
  color: var(--contact-ink);
  box-shadow: 22px 26px 0 rgba(207, 255, 0, 0.13), 0 28px 80px rgba(0, 0, 0, 0.32);
}

.contact-form-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--contact-soft-line);
}

.contact-step-number,
.contact-item-number,
.contact-list-number {
  color: #697700;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-form-kicker {
  margin: 0;
  color: var(--contact-ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.1;
}

.contact-form-subtitle {
  max-width: 38ch;
  margin: 7px 0 0;
  color: rgba(13, 15, 16, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.contact-lead-form {
  margin-top: 23px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--contact-ink);
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field-grid label {
  display: grid;
  gap: 8px;
}

.contact-field-grid label > span {
  color: rgba(13, 15, 16, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-field-grid label em {
  color: rgba(13, 15, 16, 0.48);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
}

.contact-field-grid input,
.contact-field-grid textarea {
  width: 100%;
  border: 1px solid rgba(13, 15, 16, 0.18);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--contact-ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-field-grid input {
  min-height: 48px;
  padding: 13px 14px;
}

.contact-field-grid textarea {
  min-height: 118px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-field-grid input::placeholder,
.contact-field-grid textarea::placeholder {
  color: rgba(13, 15, 16, 0.42);
}

.contact-field-grid input:focus,
.contact-field-grid textarea:focus {
  border-color: #7a9200;
  background: #fffdf6;
  box-shadow: 0 0 0 3px rgba(207, 255, 0, 0.34);
}

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

.contact-form-bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.contact-form-bottom p {
  max-width: 25ch;
  margin: 0;
  color: rgba(13, 15, 16, 0.55);
  font-size: 12px;
  line-height: 1.4;
}

.contact-lock {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  margin-right: 4px;
  border: 1px solid rgba(13, 15, 16, 0.34);
  border-radius: 50%;
  color: #697700;
  font-size: 10px;
}

.contact-submit {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--contact-ink);
  border-radius: 3px;
  background: var(--contact-lime);
  color: var(--contact-ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-submit:hover {
  background: #e2ff62;
  box-shadow: 5px 5px 0 rgba(13, 15, 16, 0.18);
  transform: translate(-2px, -2px);
}

.contact-submit:active {
  box-shadow: none;
  transform: translate(0, 1px);
}

.contact-submit:focus-visible,
.contact-text-link:focus-visible,
.contact-fit-list a:focus-visible,
.contact-direct-links a:focus-visible,
.contact-form-note a:focus-visible,
.contact-last-word a:focus-visible {
  outline: 2px solid var(--contact-lime);
  outline-offset: 4px;
}

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

.contact-form-note {
  margin: 18px 0 0;
  color: rgba(13, 15, 16, 0.54);
  font-size: 12px;
  line-height: 1.45;
}

.contact-form-error {
  margin: 14px 0 0;
  color: #9d342b;
  font-size: 12px;
  line-height: 1.45;
}

.contact-success {
  padding: 44px 0 30px;
}

.contact-success-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--contact-lime);
  color: var(--contact-ink);
  font-size: 22px;
  font-weight: 700;
}

.contact-success h2 {
  max-width: 12ch;
  margin: 10px 0 12px;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 0.98;
}

.contact-success > p:last-child {
  max-width: 34ch;
  margin: 0;
  color: rgba(13, 15, 16, 0.62);
  line-height: 1.55;
}

.contact-process {
  padding: 108px 0 124px;
  border-bottom: 1px solid var(--contact-line);
}

.contact-section-heading {
  display: grid;
  gap: 21px;
  max-width: 720px;
}

.contact-section-heading h2,
.contact-fit h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--contact-cream);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

.contact-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--contact-line);
  border-bottom: 1px solid var(--contact-line);
}

.contact-process-item {
  min-height: 230px;
  padding: 25px 34px 28px 0;
}

.contact-process-item + .contact-process-item {
  padding-left: 34px;
  border-left: 1px solid var(--contact-line);
}

.contact-process-item h3 {
  max-width: 14ch;
  margin: 52px 0 14px;
  color: var(--contact-cream);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}

.contact-process-item p {
  max-width: 31ch;
  margin: 0;
  color: var(--contact-muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-fit {
  padding: 108px 0 116px;
  background: var(--contact-cream);
  color: var(--contact-ink);
}

.contact-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 86px;
  align-items: start;
}

.contact-fit-copy {
  position: sticky;
  top: 32px;
}

.contact-fit .contact-eyebrow {
  color: #687800;
}

.contact-fit .contact-eyebrow-mark {
  background: #88a000;
  box-shadow: none;
}

.contact-fit h2 {
  max-width: 10ch;
  margin-top: 24px;
  color: var(--contact-ink);
}

.contact-fit-copy > p:not(.contact-eyebrow) {
  max-width: 37ch;
  margin: 26px 0 28px;
  color: rgba(13, 15, 16, 0.62);
  font-size: 17px;
  line-height: 1.58;
}

.contact-text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--contact-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #91ab00;
  text-underline-offset: 4px;
}

.contact-text-link:hover {
  color: #697700;
}

.contact-fit-list {
  border-top: 1px solid var(--contact-soft-line);
}

.contact-fit-list a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 30px;
  gap: 16px;
  align-items: center;
  min-height: 102px;
  border-bottom: 1px solid var(--contact-soft-line);
  color: var(--contact-ink);
  text-decoration: none;
  transition: background-color 180ms ease, padding 180ms ease;
}

.contact-fit-list a:hover {
  padding-right: 10px;
  padding-left: 10px;
  background: rgba(207, 255, 0, 0.28);
}

.contact-fit-list strong,
.contact-fit-list small {
  display: block;
}

.contact-fit-list strong {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.1;
}

.contact-fit-list small {
  margin-top: 7px;
  color: rgba(13, 15, 16, 0.56);
  font-size: 13px;
  line-height: 1.4;
}

.contact-list-arrow {
  color: #697700;
  font-size: 18px;
  text-align: right;
}

.contact-last-word {
  padding: 25px 0;
  border-bottom: 1px solid var(--contact-line);
  background: #151819;
}

.contact-last-word-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-last-word p {
  margin: 0;
  color: rgba(244, 241, 232, 0.57);
  font-size: 13px;
}

.contact-last-word-inner > div {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 13px;
}

.contact-last-word-inner > div > span {
  color: rgba(244, 241, 232, 0.33);
}

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

  .contact-hero-copy {
    max-width: 700px;
    padding-bottom: 0;
  }

  .contact-hero h1 {
    max-width: 12ch;
  }

  .contact-form-card {
    max-width: 760px;
  }

  .contact-fit-copy {
    position: static;
  }

  .contact-fit h2 {
    max-width: 13ch;
  }
}

@media (max-width: 900px) {
  .contact-container {
    width: min(100% - 40px, 720px);
  }

  .contact-hero {
    padding: 64px 0 80px;
  }

  .contact-hero h1 {
    font-size: 31px;
  }

  .contact-process,
  .contact-fit {
    padding: 82px 0 92px;
  }

  .contact-section-heading h2,
  .contact-fit h2 {
    font-size: 23px;
  }

  .contact-process-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .contact-process-item,
  .contact-process-item + .contact-process-item {
    min-height: 0;
    padding: 24px 0 28px;
    border-left: 0;
  }

  .contact-process-item h3 {
    margin-top: 28px;
  }

  .contact-fit-grid {
    gap: 45px;
  }
}

@media (max-width: 600px) {
  .contact-container {
    width: calc(100% - 32px);
  }

  .contact-hero {
    padding: 49px 0 68px;
    background-size: 54px 54px;
  }

  .contact-hero h1 {
    max-width: 10ch;
    font-size: 24px;
  }

  .contact-hero-lead {
    font-size: 16px;
  }

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

  .contact-proof-item,
  .contact-proof-item + .contact-proof-item {
    grid-template-columns: 115px minmax(0, 1fr);
    gap: 10px;
    align-items: baseline;
    padding: 12px 0;
    border-left: 0;
  }

  .contact-proof-item + .contact-proof-item {
    border-top: 1px solid var(--contact-line);
  }

  .contact-form-card {
    padding: 23px 18px 20px;
    border-radius: 8px;
    box-shadow: 10px 12px 0 rgba(207, 255, 0, 0.13), 0 18px 45px rgba(0, 0, 0, 0.28);
  }

  .contact-form-heading {
    gap: 10px;
    padding-bottom: 19px;
  }

  .contact-form-kicker {
    font-size: 18px;
  }

  .contact-form-subtitle {
    font-size: 13px;
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .contact-field-full {
    grid-column: auto;
  }

  .contact-form-bottom {
    display: grid;
    gap: 15px;
    margin-top: 15px;
  }

  .contact-form-bottom p {
    max-width: none;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-section-heading h2,
  .contact-fit h2 {
    font-size: 20px;
  }

  .contact-process,
  .contact-fit {
    padding: 70px 0 78px;
  }

  .contact-fit-list strong {
    font-size: 16px;
  }

  .contact-fit-list a {
    grid-template-columns: 27px minmax(0, 1fr) 22px;
    gap: 9px;
    min-height: 105px;
  }

  .contact-fit-list a:hover {
    padding-right: 0;
    padding-left: 0;
  }

  .contact-last-word-inner {
    display: grid;
    gap: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-submit,
  .contact-fit-list a,
  .contact-field-grid input,
  .contact-field-grid textarea {
    transition: none;
  }
}
