:root {
  --font-geist-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ink: #191413;
  --muted: #726965;
  --line: #e2d7d2;
  --paper: #f6f0ec;
  --white: #fffaf7;
  --signal: #ff7963;
  --orange: #ff7451;
  --blue: #6f87ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.shell {
  width: min(100% - 64px, 1360px);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100vh;
  max-height: 940px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(255, 121, 99, 0.17), transparent 26%),
    linear-gradient(145deg, #17110f 0%, #201614 52%, #120e0d 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 10%, black 75%);
}

.nav {
  position: relative;
  z-index: 10;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -1.5px;
}

.brand span {
  color: var(--signal);
}

.navLinks {
  display: flex;
  gap: 36px;
  margin-left: 100px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.64);
}

.navLinks a,
.navCta,
.productLink,
.introCopy a,
.footer a {
  transition: opacity 180ms ease, color 180ms ease, transform 180ms ease;
}

.navLinks a:hover,
.navLinks a:focus-visible {
  color: var(--white);
}

.navCta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.navCta span {
  color: var(--signal);
  font-size: 17px;
}

.heroGrid {
  position: relative;
  z-index: 2;
  height: calc(100% - 156px);
  display: grid;
  grid-template-columns: 1.17fr 0.83fr;
  align-items: center;
  gap: 70px;
  padding-bottom: 36px;
}

.heroCopy {
  padding-top: 4vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(255, 121, 99, 0.12);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(255, 121, 99, 0.025);
  }
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(62px, 7.3vw, 112px);
  font-weight: 470;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero h1 em {
  color: var(--signal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.heroLead {
  max-width: 575px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
  line-height: 1.65;
}

.heroActions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 230px;
  min-height: 58px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 620;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.buttonLight {
  color: var(--ink);
  background: var(--white);
}

.buttonLight:hover {
  background: var(--signal);
}

.heroNote {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.signal {
  width: 100%;
  max-width: 490px;
  aspect-ratio: 0.9;
  justify-self: end;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
}

.signalTop,
.signalBottom {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.signalCore {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  margin: 16px 0;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.signalCore::before,
.signalCore::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.08);
}

.signalCore::before {
  width: 1px;
  height: 100%;
}

.signalCore::after {
  width: 100%;
  height: 1px;
}

.core {
  position: relative;
  z-index: 5;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--signal);
  font-family: Georgia, serif;
  font-size: 32px;
  box-shadow: 0 0 46px rgba(255, 121, 99, 0.23);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: rotate 24s linear infinite;
}

.orbitOne {
  width: 220px;
  height: 220px;
}

.orbitTwo {
  width: 345px;
  height: 345px;
  animation-direction: reverse;
  animation-duration: 32s;
}

.orbit span {
  position: absolute;
  top: -11px;
  left: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.node {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  background: #201614;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.nodeOne {
  top: 15%;
  right: 14%;
}

.nodeTwo {
  bottom: 22%;
  left: 8%;
}

.nodeThree {
  right: 7%;
  bottom: 11%;
}

.signalBottom {
  align-items: center;
  gap: 12px;
}

.signalLine {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.signalLine i {
  position: absolute;
  top: -1px;
  left: 0;
  width: 42%;
  height: 3px;
  background: var(--signal);
}

.heroFooter {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 140px 0;
}

.sectionLabel {
  margin: 0;
  color: #747873;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sectionLabel::before {
  content: "●";
  margin-right: 9px;
  color: var(--ink);
  font-size: 6px;
  vertical-align: 2px;
}

.introStatement {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: end;
  margin-top: 50px;
}

.introStatement h2,
.sectionHeader h2,
.approach h2,
.cta h2 {
  margin: 0;
  font-size: clamp(44px, 5.3vw, 78px);
  font-weight: 480;
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.introStatement h2 span,
.cta h2 span {
  color: #aaaDA7;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.introCopy {
  padding-bottom: 4px;
}

.introCopy p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.introCopy a {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 620;
}

.introCopy a:hover {
  gap: 24px;
}

.products {
  padding-top: 18px;
  background: var(--white);
}

.sectionHeader {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.sectionHeader h2 {
  margin-top: 23px;
  font-size: clamp(40px, 4.2vw, 62px);
}

.sectionHeader > p {
  max-width: 390px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.productGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.product {
  position: relative;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
}

.productResume,
.productClicks {
  grid-column: span 6;
}

.productQa {
  grid-column: span 12;
  min-height: 480px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-rows: auto 1fr;
  margin-top: 0;
}

.productMeta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
}

.productNumber {
  color: #6f736d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.status {
  padding: 6px 9px;
  border-radius: 20px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.statusLive {
  color: #6c281c;
  background: #ffe0d9;
}

.statusBuild {
  color: #59605a;
  background: #e3e5df;
}

.resumeVisual,
.clicksVisual {
  position: relative;
  min-height: 330px;
  margin: 0 24px;
  overflow: hidden;
}

.resumeVisual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 56%, rgba(218, 226, 255, 0.28), transparent 33%),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    #5269f3;
  background-size: auto, 30px 30px, 30px 30px, auto;
}

.resumeTemplate {
  position: absolute;
  width: 152px;
  height: 226px;
  object-fit: cover;
  object-position: top center;
  border: 4px solid #f8f5e7;
  box-shadow: 0 22px 40px rgba(23, 29, 77, 0.26);
}

.resumeTemplateLeft {
  z-index: 1;
  transform: translate(-142px, 19px) rotate(-7deg);
  filter: saturate(0.92);
}

.resumeTemplateCenter {
  z-index: 3;
  width: 170px;
  height: 250px;
  transform: translateY(9px);
}

.resumeTemplateRight {
  z-index: 2;
  transform: translate(142px, 19px) rotate(7deg);
  filter: saturate(0.84);
}

.resumeVisualTop {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.11em;
}

.resumeVisualTop b {
  color: #dbe1ff;
  font-weight: 600;
}

.resumeVisual > .resumeProof {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 16px;
  padding: 8px 10px;
  color: #243072;
  background: #dfe4ff;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.clicksVisual {
  display: grid;
  place-items: center;
  background: #24282e;
}

.clickPath {
  position: absolute;
  z-index: 2;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: #2e333a;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.clickPath b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--signal);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.clickPath span {
  font-size: 11px;
}

.pathOne {
  transform: translate(-150px, 20px) rotate(-5deg);
}

.pathTwo {
  transform: translate(0, -18px) rotate(2deg);
}

.pathThree {
  transform: translate(150px, 20px) rotate(6deg);
}

.pathThree b {
  color: var(--white);
  background: var(--blue);
}

.connector {
  position: absolute;
  width: 78px;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.28);
}

.connectorOne {
  transform: translate(-75px, 11px) rotate(-10deg);
}

.connectorTwo {
  transform: translate(76px, 10px) rotate(11deg);
}

.productContent {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 32px 30px 30px;
}

.productType {
  margin: 0 0 11px;
  color: #7b7f79;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.productContent h3 {
  margin: 0 0 13px;
  font-size: 30px;
  font-weight: 530;
  letter-spacing: -0.045em;
}

.productContent > p:not(.productType) {
  max-width: 490px;
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.productLink {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 620;
}

.productResume:hover .productLink {
  color: #b64330;
}

.qaVisual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 430px;
  display: grid;
  place-items: center;
  margin: 22px;
  overflow: hidden;
  background: #dfe4dc;
}

.qaVisual::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(#aab0a7 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.55;
}

.qaFrame {
  position: relative;
  z-index: 2;
  width: 78%;
  min-width: 420px;
  overflow: hidden;
  border: 6px solid #252925;
  border-radius: 7px;
  background: #161916;
  box-shadow: 18px 22px 0 rgba(72, 80, 71, 0.16);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.qaBar {
  height: 39px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid #333832;
}

.qaBar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5a6058;
}

.qaBar i:first-child {
  background: var(--signal);
}

.qaBar span {
  margin-left: auto;
  color: #70776e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.qaBody {
  height: 260px;
  display: flex;
}

.qaSide {
  width: 54px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding-top: 25px;
  border-right: 1px solid #333832;
}

.qaSide i {
  width: 21px;
  height: 4px;
  background: #4d534c;
}

.qaCode {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px 28px;
}

.qaCode i {
  width: 82%;
  height: 6px;
  background: #3e443d;
}

.qaCode .codeGreen {
  width: 58%;
  background: #ef715c;
}

.qaCode .codeShort {
  width: 42%;
}

.qaCode .codeMid {
  width: 68%;
}

.qaCheck {
  align-self: center;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-right: 28px;
  border: 1px solid #4a5248;
  border-radius: 50%;
  color: var(--signal);
  font-size: 28px;
}

.productQa .productMeta {
  grid-column: 1;
}

.productQa .productContent {
  grid-column: 1;
  padding: 54px 48px 38px;
}

.productQa .productContent h3 {
  font-size: 42px;
}

.productLinkMuted {
  color: #7b7f79;
}

.approach {
  color: var(--white);
  background: #191211;
}

.sectionLabelLight {
  color: rgba(255, 255, 255, 0.42);
}

.sectionLabelLight::before {
  color: var(--signal);
}

.approachTitle {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 45px 0 90px;
}

.approachTitle h2 {
  max-width: 720px;
  font-size: clamp(56px, 7vw, 100px);
  color: var(--signal);
}

.approachTitle > span {
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.principles article {
  min-height: 270px;
  padding: 24px 28px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.principles article:not(:first-child) {
  padding-left: 28px;
}

.principles article:last-child {
  border-right: 0;
}

.principles article > span {
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.principles h3 {
  margin: 76px 0 14px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.principles p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.65;
}

.cta {
  padding: 130px 0;
  background: var(--signal);
}

.ctaInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta .sectionLabel {
  color: #722e23;
}

.cta h2 {
  margin-top: 35px;
}

.cta h2 span {
  color: #913b2d;
}

.ctaCircle {
  width: 210px;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  transition: transform 220ms ease;
}

.ctaCircle:hover {
  transform: rotate(-4deg) scale(1.03);
}

.ctaCircle > span:last-child {
  align-self: flex-end;
  color: var(--signal);
  font-size: 24px;
}

.footer {
  padding: 80px 0 34px;
  background: var(--paper);
}

.footerTop {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}

.brandDark {
  font-size: 31px;
}

.footerTop p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footerBottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #787c76;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footerBottom a:last-child {
  color: var(--ink);
}

@media (max-width: 1000px) {
  .hero {
    min-height: 880px;
    height: auto;
    max-height: none;
  }

  .heroGrid {
    min-height: 710px;
    grid-template-columns: 1fr 0.7fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(62px, 8.6vw, 86px);
  }

  .signal {
    max-width: 390px;
  }

  .introStatement {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .introCopy {
    max-width: 560px;
  }

  .sectionHeader {
    align-items: start;
  }

  .product {
    min-height: 590px;
  }

  .productQa {
    min-height: 440px;
  }

  .qaFrame {
    min-width: 350px;
  }

  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles article:nth-child(2) {
    border-right: 0;
  }

  .principles article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 36px, 1360px);
  }

  .hero {
    min-height: 900px;
  }

  .nav {
    height: 76px;
  }

  .navLinks {
    display: none;
  }

  .navCta {
    gap: 8px;
  }

  .heroGrid {
    min-height: 790px;
    display: block;
    padding: 70px 0 90px;
  }

  .heroCopy {
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(50px, 14.5vw, 75px);
    line-height: 0.93;
  }

  .heroLead {
    margin-top: 28px;
    font-size: 15px;
  }

  .heroActions {
    margin-top: 30px;
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .signal {
    display: none;
  }

  .heroFooterCenter {
    display: none;
  }

  .section {
    padding: 90px 0;
  }

  .introStatement {
    margin-top: 36px;
  }

  .introStatement h2,
  .sectionHeader h2,
  .cta h2 {
    font-size: 42px;
  }

  .sectionHeader {
    display: block;
    margin-bottom: 40px;
  }

  .sectionHeader > p {
    margin-top: 24px;
  }

  .productGrid {
    display: block;
  }

  .product {
    min-height: 575px;
    margin-bottom: 16px;
  }

  .resumeVisual,
  .clicksVisual {
    min-height: 280px;
    margin: 0 16px;
  }

  .clickPath {
    width: 88px;
    height: 100px;
  }

  .resumeTemplate {
    width: 124px;
    height: 190px;
  }

  .resumeTemplateCenter {
    width: 142px;
    height: 212px;
  }

  .resumeTemplateLeft {
    transform: translate(-108px, 22px) rotate(-7deg);
  }

  .resumeTemplateRight {
    transform: translate(108px, 22px) rotate(7deg);
  }

  .pathOne {
    transform: translate(-110px, 18px) rotate(-5deg);
  }

  .pathThree {
    transform: translate(110px, 18px) rotate(6deg);
  }

  .productQa {
    min-height: auto;
    display: flex;
  }

  .qaVisual {
    order: 2;
    width: calc(100% - 32px);
    min-height: 285px;
    margin: 0 16px;
  }

  .qaFrame {
    min-width: 0;
    width: 86%;
  }

  .qaBody {
    height: 175px;
  }

  .qaCheck {
    width: 46px;
    height: 46px;
    margin-right: 14px;
    font-size: 18px;
  }

  .productQa .productContent {
    order: 3;
    padding: 34px 24px 28px;
  }

  .productQa .productContent h3 {
    font-size: 32px;
  }

  .approachTitle {
    margin-bottom: 55px;
  }

  .approachTitle h2 {
    max-width: 330px;
    font-size: 58px;
  }

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

  .principles article,
  .principles article:not(:first-child) {
    min-height: auto;
    padding: 24px 0 40px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .principles h3 {
    margin-top: 38px;
  }

  .cta {
    padding: 85px 0;
  }

  .ctaInner {
    display: block;
  }

  .ctaCircle {
    width: 170px;
    height: 170px;
    margin: 55px 0 0 auto;
    padding: 29px;
  }

  .footerTop {
    display: block;
    padding-bottom: 55px;
  }

  .footerTop p {
    margin-top: 28px;
  }

  .footerBottom {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .footerBottom a:nth-child(3) {
    text-transform: lowercase;
  }
}

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

  .pulse,
  .orbit {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}

/* Static contact page */
.contactPage {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 121, 99, 0.17), transparent 27%),
    linear-gradient(145deg, #17110f 0%, #201614 52%, #120e0d 100%);
}

.contactPage .nav {
  color: var(--white);
}

.contactMain {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 90px;
}

.contactIntro .eyebrow {
  margin-bottom: 30px;
}

.contactIntro h1 {
  margin: 0;
  font-size: clamp(62px, 7.6vw, 112px);
  font-weight: 470;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.contactIntro h1 em {
  color: var(--signal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.contactIntro > p {
  max-width: 500px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.7;
}

.directEmail {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.directEmail span {
  color: var(--signal);
}

.contactPanel {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
}

.contactPanelTop {
  display: flex;
  justify-content: space-between;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-geist-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.contactForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fieldFull {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-geist-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  font: inherit;
}

.field textarea {
  min-height: 105px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--signal);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.24);
}

.contactSubmit {
  grid-column: 1 / -1;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 20px;
  border: 0;
  color: var(--ink);
  background: var(--signal);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.contactSubmit:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.formNote {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contactMain {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .contactIntro {
    padding-top: 45px;
  }
}

@media (max-width: 600px) {
  .contactMain {
    padding-top: 45px;
  }

  .contactIntro h1 {
    font-size: 58px;
  }

  .contactPanel {
    padding: 25px 20px;
  }

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

  .fieldFull,
  .contactSubmit,
  .formNote {
    grid-column: 1;
  }
}
