:root {
  --ink: #0e2022;
  --ink-soft: #1a3335;
  --paper: #f3f0e8;
  --paper-deep: #e8e4db;
  --white: #fffdf8;
  --orange: #ff6a3d;
  --mint: #a4d9cd;
  --line: rgba(14, 32, 34, 0.18);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(243, 240, 232, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  background: currentColor;
}

.brand-mark::before {
  width: 2px;
  height: 35px;
}

.brand-mark::after {
  width: 35px;
  height: 2px;
}

.brand-mark span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 12px 15px;
  border: 1px solid var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(130px, 15vh, 180px) clamp(24px, 5vw, 76px) 38px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  column-gap: clamp(48px, 8vw, 120px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(14, 32, 34, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 32, 34, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, #000 50%, transparent 90%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(64px, 8.25vw, 132px);
}

.hero h1 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86em;
  font-weight: 400;
  letter-spacing: -0.075em;
  text-transform: none;
}

.hero-intro {
  max-width: 615px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  align-self: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  top: 3%;
  right: -10%;
  width: min(38vw, 570px);
  height: min(38vw, 570px);
  background: var(--mint);
}

.orb-two {
  right: 47%;
  bottom: 4%;
  width: 210px;
  height: 210px;
  border: 2px solid var(--orange);
}

.signal-card {
  position: absolute;
  top: 13%;
  right: 6%;
  width: min(92%, 470px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(14, 32, 34, 0.94);
  color: var(--white);
  box-shadow: 0 35px 70px rgba(14, 32, 34, 0.24);
  transform: rotate(4deg);
}

.signal-card::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.signal-head,
.signal-display,
.signal-grid {
  position: relative;
  z-index: 1;
}

.signal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.live-dot,
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 106, 61, 0.15);
}

.signal-display {
  display: flex;
  min-height: 285px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.signal-number {
  font-family: var(--display);
  font-size: clamp(120px, 15vw, 210px);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.signal-label {
  padding-left: 16px;
  border-left: 2px solid var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  line-height: 1.6;
}

.signal-grid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: repeat(2, 1fr);
}

.signal-grid span {
  padding: 13px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.hero-stamp {
  position: absolute;
  right: 1%;
  bottom: 7%;
  z-index: 3;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-10deg);
}

.hero-footer {
  display: flex;
  align-items: center;
  align-self: end;
  grid-column: 1 / -1;
  gap: 18px;
  padding-top: 44px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-line {
  width: 72px;
  height: 1px;
  background: var(--line);
}

.section {
  padding: clamp(92px, 12vw, 175px) clamp(24px, 5vw, 76px);
}

.services {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 72px;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: clamp(40px, 10vw, 170px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section h2 {
  font-size: clamp(52px, 6vw, 94px);
}

.section-heading > p:last-child {
  max-width: 480px;
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  position: relative;
  display: grid;
  min-height: 340px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  z-index: 2;
  box-shadow: 0 22px 55px rgba(14, 32, 34, 0.12);
  transform: translateY(-5px);
}

.service-card-featured {
  background: var(--mint);
}

.service-card-dark {
  background: var(--ink);
  color: var(--white);
}

.service-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.service-card > div:nth-child(2) {
  align-self: end;
  max-width: 450px;
}

.service-card h3 {
  max-width: 430px;
  margin: 0 0 17px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-card p {
  max-width: 420px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.76;
}

.card-arrow {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 22px;
  transition: transform 180ms ease;
}

.service-card:hover .card-arrow {
  transform: translate(4px, -4px);
}

.approach {
  display: grid;
  background: var(--ink);
  color: var(--white);
  grid-template-columns: 0.8fr 1.2fr;
  column-gap: clamp(60px, 10vw, 160px);
}

.eyebrow-light > span {
  background: var(--mint);
}

.approach-intro h2 {
  max-width: 640px;
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-steps li {
  display: grid;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: 64px 1fr;
}

.approach-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.step-index {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.approach-steps h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 33px;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.approach-steps p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.7;
}

.company {
  display: grid;
  background: var(--paper-deep);
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(60px, 11vw, 170px);
}

.company-copy h2 {
  max-width: 700px;
}

.company-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 32px 0 28px;
  font-size: 17px;
  line-height: 1.7;
}

.company-facts {
  margin: 0;
}

.company-facts > div {
  display: grid;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 0.75fr 1.25fr;
}

.company-facts > div:last-child {
  border-bottom: 1px solid var(--line);
}

.company-facts dt {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: #35a66f;
  box-shadow: 0 0 0 4px rgba(53, 166, 111, 0.13);
}

.contact {
  background: var(--white);
}

.contact-card {
  position: relative;
  display: grid;
  min-height: 480px;
  align-items: end;
  padding: clamp(30px, 5vw, 72px);
  background: var(--orange);
  grid-template-columns: 1.2fr 0.8fr;
  column-gap: clamp(40px, 9vw, 130px);
  overflow: hidden;
}

.contact-card > *:not(.contact-orbit) {
  position: relative;
  z-index: 2;
}

.contact-card h2 {
  max-width: 730px;
}

.contact-card address {
  align-self: center;
  font-size: 17px;
  font-style: normal;
  line-height: 1.8;
}

.button-light {
  width: max-content;
  align-self: start;
  background: var(--white);
  color: var(--ink);
}

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

.contact-orbit {
  position: absolute;
  right: -120px;
  bottom: -310px;
  width: 620px;
  height: 620px;
  border: 2px solid rgba(14, 32, 34, 0.23);
  border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  border: 2px solid rgba(14, 32, 34, 0.23);
  border-radius: 50%;
  content: "";
}

.contact-orbit::before {
  inset: 90px;
}

.contact-orbit::after {
  inset: 180px;
  background: var(--ink);
}

.site-footer {
  display: grid;
  align-items: center;
  padding: 34px clamp(24px, 5vw, 76px);
  background: var(--ink);
  color: var(--white);
  grid-template-columns: 1fr auto auto;
  gap: 48px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.72, 0.27, 1),
    transform 700ms cubic-bezier(0.2, 0.72, 0.27, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr 0.78fr;
    column-gap: 30px;
  }

  .signal-card {
    right: -12%;
  }

  .signal-display {
    min-height: 230px;
  }

  .signal-number {
    font-size: 145px;
  }

  .approach,
  .company {
    column-gap: 70px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p:first-of-type {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    height: 72px;
    padding-inline: 22px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .brand-mark::before {
    height: 31px;
  }

  .brand-mark::after {
    width: 31px;
  }

  .menu-toggle {
    z-index: 2;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 110px 24px 30px;
    background: var(--paper);
    flex-direction: column;
    font-family: var(--display);
    font-size: 34px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(0.2, 0.72, 0.27, 1);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-cta {
    margin-top: 24px;
    font-family: var(--body);
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 120px 22px 30px;
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 88px);
  }

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

  .hero-visual {
    min-height: 485px;
    margin-top: 54px;
  }

  .orb-one {
    right: -26%;
    width: 430px;
    height: 430px;
  }

  .signal-card {
    top: 10%;
    right: -3%;
    width: 96%;
  }

  .signal-display {
    min-height: 245px;
  }

  .signal-number {
    font-size: clamp(128px, 42vw, 170px);
  }

  .hero-stamp {
    right: -4px;
    bottom: 7%;
    width: 108px;
    height: 108px;
    font-size: 8px;
  }

  .hero-footer {
    margin-top: 16px;
    flex-wrap: wrap;
  }

  .section {
    padding: 90px 22px;
  }

  .section-heading,
  .approach,
  .company,
  .contact-card {
    display: block;
  }

  .section-heading > p:last-child {
    margin-top: 30px;
  }

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

  .service-card {
    min-height: 305px;
    padding: 24px;
  }

  .approach-intro {
    margin-bottom: 64px;
  }

  .company-copy {
    margin-bottom: 66px;
  }

  .company-facts > div {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 610px;
    padding: 34px 25px;
  }

  .contact-card address {
    margin: 54px 0 30px;
  }

  .contact-orbit {
    right: -230px;
    bottom: -280px;
  }

  .site-footer {
    display: flex;
    align-items: flex-start;
    padding: 38px 22px;
    flex-direction: column;
    gap: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
