:root {
  --ink: #10120f;
  --paper: #f5f3ed;
  --acid: #d9ff43;
  --muted: #676b62;
  --line: rgba(16, 18, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.header-cta {
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: white;
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 52px;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 36px;
  right: -190px;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  background: var(--acid);
  filter: blur(2px);
  opacity: 0.78;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 28px;
  padding: 9px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(58px, 7.6vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.068em;
  font-weight: 800;
}

h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.hero-copy {
  max-width: 660px;
  margin: 42px 0 0;
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 25px;
  border-radius: 4px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 6px 6px 0 var(--acid);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--acid);
}

.microcopy {
  max-width: 230px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.outcome-grid {
  margin-top: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-grid div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
}

.outcome-grid div:last-child {
  border-right: 0;
}

.outcome-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.section-kicker {
  margin: 0 0 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.section-kicker.light {
  color: var(--acid);
}

.statement-section,
.services-section,
.fit-section,
footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.statement-section {
  padding: 138px 0;
}

.statement-layout,
.fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 80px;
}

.statement-layout h2,
.section-heading h2,
.fit-layout h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.statement-layout div {
  align-self: end;
}

.statement-layout p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.services-section {
  padding: 116px 0 130px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 840px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--paper);
}

.service-number {
  color: var(--muted);
  font-size: 11px;
}

.service-grid h3 {
  margin: 76px 0 20px;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.service-grid strong {
  margin-top: auto;
  padding-top: 40px;
  font-size: 12px;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 100px;
  padding: 130px max(20px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: white;
}

.process-intro h2 {
  margin: 0;
  font-size: clamp(46px, 5.8vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.process-intro > p:last-child {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  line-height: 1.55;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.2);
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.process-list li > span {
  color: var(--acid);
  font-size: 11px;
}

.process-list h3 {
  margin: 0 0 9px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.process-list p {
  margin: 0;
  color: rgba(255,255,255,.62);
  line-height: 1.5;
}

.fit-section {
  padding: 138px 0;
}

.fit-layout ul {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.fit-layout li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
}

.final-cta {
  margin: 0 20px;
  padding: 118px max(20px, calc((100vw - 1180px) / 2));
  background: #5b2cff;
  color: white;
}

.final-cta h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.application-intro > p:not(.section-kicker) {
  max-width: 600px;
  margin: 32px 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.55;
}

.application-form {
  max-width: 920px;
  margin-top: 58px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

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

.application-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition: border-color 160ms ease, background 160ms ease;
}

.application-form input,
.application-form select {
  min-height: 54px;
  padding: 0 15px;
}

.application-form textarea {
  min-height: 110px;
  padding: 14px 15px;
  resize: vertical;
}

.application-form input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: var(--acid);
  background: rgba(255, 255, 255, 0.16);
}

.application-form select option {
  color: var(--ink);
}

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

.form-submit {
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-privacy,
.form-error {
  margin: 14px 0 0;
  font-size: 12px;
}

.form-privacy {
  color: rgba(255, 255, 255, 0.62);
}

.form-error {
  margin-bottom: 16px;
  color: white;
  font-weight: 800;
}

.application-success {
  max-width: 760px;
  margin-top: 58px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.application-success span {
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.application-success h3 {
  margin: 20px 0 12px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.application-success p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.application-success button {
  margin-top: 14px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.inverse-button {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 25px;
  border-radius: 4px;
  background: var(--acid);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

footer {
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  color: var(--muted);
  font-size: 12px;
}

.footer-brand {
  color: var(--ink);
}

@media (max-width: 760px) {
  .site-header,
  .hero {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 72px;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 11px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-glow {
    top: 130px;
    right: -240px;
    width: 420px;
    height: 420px;
  }

  h1 {
    font-size: clamp(50px, 15.5vw, 78px);
  }

  h1 span {
    -webkit-text-stroke-width: 1.4px;
  }

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

  .primary-button {
    width: 100%;
  }

  .outcome-grid {
    margin-top: 70px;
    grid-template-columns: 1fr 1fr;
  }

  .outcome-grid div:nth-child(2) {
    border-right: 0;
  }

  .outcome-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .statement-section,
  .services-section,
  .fit-section,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .statement-section,
  .services-section,
  .fit-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .statement-layout,
  .fit-layout,
  .process-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: 340px;
  }

  .service-grid h3 {
    margin-top: 48px;
  }

  .process-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .final-cta {
    margin: 0;
    padding-top: 88px;
    padding-bottom: 88px;
  }

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

  .application-form {
    margin-top: 44px;
  }

  .application-success {
    margin-top: 44px;
    padding: 28px 22px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 50px 0;
  }

  footer p {
    margin: 0;
  }
}
