:root {
  --ink: #11110f;
  --paper: #f3f1eb;
  --card: #fffdf8;
  --coral: #e94f37;
  --coral-bright: #ff5c35;
  --amber: #f2a23a;
  --muted: #66625b;
  --line: rgba(17, 17, 15, 0.14);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
}

.announcement {
  min-height: 40px;
  padding: 8px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: #d8d4cb;
  font-size: 12px;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #86ef9d;
  box-shadow: 0 0 0 5px rgba(134, 239, 157, 0.1);
}

.announcement a {
  margin-left: 10px;
  display: inline-flex;
  gap: 5px;
  color: #fff;
  font-weight: 700;
}

.site-header {
  height: 84px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(243, 241, 235, 0.9);
  backdrop-filter: blur(18px);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-select {
  min-width: 62px;
  height: 42px;
  padding: 0 28px 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  appearance: none;
  background-color: rgba(255, 253, 248, 0.75);
  background-image:
    linear-gradient(45deg, transparent 50%, #4b4841 50%),
    linear-gradient(135deg, #4b4841 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 18px,
    calc(100% - 10px) 18px;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.language-select:focus-visible {
  outline: 3px solid rgba(233, 79, 55, 0.35);
  outline-offset: 2px;
}

.brand,
.mini-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.brand__mark {
  display: block;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border-radius: 8px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  color: #4b4841;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a,
.text-link {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--coral);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(233, 79, 55, 0.35);
  outline-offset: 3px;
}

.button--dark {
  justify-self: end;
  min-height: 42px;
  background: var(--ink);
  color: white;
  font-size: 13px;
}

.button--coral {
  background: var(--coral-bright);
  color: #160b08;
  box-shadow: 0 12px 30px rgba(255, 92, 53, 0.2);
}

.button--coral:hover {
  background: #ff714f;
  box-shadow: 0 16px 34px rgba(255, 92, 53, 0.28);
}

.hero {
  min-height: calc(100svh - 124px);
  padding: clamp(68px, 8vw, 118px) clamp(20px, 4vw, 64px) 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(40px, 5vw, 86px);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #68645d;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  color: var(--coral);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(56px, 6.4vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 760;
}

.hero h1 em {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero__lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: #5f5b53;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.hero__proof {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: #6d6961;
  font-size: 12px;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__proof i {
  color: var(--coral);
  font-style: normal;
  font-weight: 900;
}

.hero__visual {
  position: relative;
  min-width: 0;
  perspective: 1500px;
}

.visual-glow {
  position: absolute;
  inset: -12% -6% -18%;
  background: radial-gradient(circle at 48% 52%, rgba(255, 92, 53, 0.33), transparent 61%);
  filter: blur(20px);
  pointer-events: none;
}

.product-window {
  position: relative;
  min-height: 440px;
  aspect-ratio: 1.23;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  overflow: hidden;
  background: #161714;
  color: #f8f5ee;
  box-shadow: 0 40px 90px rgba(31, 24, 19, 0.23), 0 3px 0 rgba(255, 255, 255, 0.1) inset;
  transform: rotateY(-3deg) rotateX(1deg);
}

.window-top {
  height: 49px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #74766e;
  font-family: var(--mono);
  font-size: 9px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4d4f48;
}

.live-pill {
  justify-self: end;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #b8bbb1;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7be598;
}

.window-body {
  height: calc(100% - 49px);
  display: grid;
  grid-template-columns: 142px 1fr;
}

.window-nav {
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #131411;
}

.mini-brand {
  gap: 7px;
  font-size: 13px;
}

.mini-brand .brand__mark {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  border-radius: 5px;
}

.window-nav__items {
  margin-top: 35px;
  display: grid;
  gap: 7px;
}

.window-nav__items span {
  padding: 9px 10px;
  border-radius: 8px;
  color: #777a72;
  font-size: 10px;
}

.window-nav__items .is-active {
  background: rgba(255, 255, 255, 0.065);
  color: #f8f5ee;
}

.project-panel {
  min-width: 0;
  padding: clamp(22px, 3vw, 40px);
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.panel-heading div {
  display: grid;
  gap: 6px;
}

.panel-heading span,
.note-card small {
  color: #777a72;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.panel-heading strong {
  font-size: clamp(17px, 2vw, 26px);
  letter-spacing: -0.04em;
}

.panel-heading > small {
  color: #a6a89f;
  font-family: var(--mono);
  font-size: 8px;
}

.progress-track {
  height: 4px;
  margin-top: 20px;
  border-radius: 99px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral-bright), var(--amber));
}

.stage-grid {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}

.stage-card {
  min-height: 62px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  background: rgba(17, 18, 15, 0.7);
  color: #666960;
}

.stage-card > span {
  font-family: var(--mono);
  font-size: 8px;
}

.stage-card div {
  display: grid;
  gap: 3px;
}

.stage-card small {
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-card strong {
  color: #9b9e95;
  font-size: 11px;
}

.stage-card > i {
  color: #7be598;
  font-style: normal;
}

.stage-card.is-current {
  border-color: rgba(255, 104, 66, 0.45);
  background: rgba(255, 92, 53, 0.08);
}

.stage-card.is-current strong {
  color: #f8f5ee;
}

.stage-card.is-current > i {
  width: 8px;
  height: 8px;
  border: 2px solid var(--coral-bright);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1.8s linear infinite;
}

.note-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  background: #f2efe7;
  color: #171713;
}

.note-card__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--coral-bright);
}

.note-card > div {
  display: grid;
  gap: 4px;
}

.note-card strong {
  font-size: 11px;
}

.note-card p {
  margin: 0;
  color: #6f6a60;
  font-size: 9px;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 13px;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 36px rgba(26, 20, 15, 0.13);
  backdrop-filter: blur(12px);
  color: #5e5b54;
  font-size: 10px;
}

.floating-chip strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.floating-chip span {
  display: block;
  margin-top: 2px;
}

.chip-one {
  left: -30px;
  bottom: 44px;
}

.chip-two {
  right: -18px;
  top: 70px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.chip-two i {
  color: var(--coral);
  font-style: normal;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: white;
  transition: transform 180ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  inset: 124px 0 0;
  z-index: 29;
  padding: 28px 24px 40px;
  background: var(--paper);
  overflow-y: auto;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  min-height: 62px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.capabilities {
  min-height: 88px;
  padding: 22px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #444139;
  font-family: var(--mono);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}

.capabilities i {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--coral);
}

.services-section {
  padding: clamp(96px, 11vw, 152px) clamp(20px, 4vw, 64px);
  background: var(--ink);
  color: #f5f1e9;
}

.services-intro {
  max-width: 1160px;
}

.services-intro .eyebrow {
  color: #77766f;
}

.services-intro h2 {
  max-width: 1060px;
  margin: 0;
  color: #706f68;
  font-size: clamp(40px, 5.8vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 620;
}

.services-intro strong {
  color: #f5f1e9;
  font-weight: 650;
}

.service-grid {
  margin-top: clamp(72px, 9vw, 124px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card {
  min-height: 380px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background: #161714;
  transition: background 200ms ease;
}

.service-card:hover {
  background: #1c1d19;
}

.service-card--feature {
  grid-column: span 3;
  min-height: 440px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto 1fr;
  align-items: end;
}

.service-card--feature .card-number {
  grid-column: 1 / -1;
}

.service-card--feature > div:last-of-type {
  align-self: end;
}

.card-number {
  align-self: start;
  color: #666961;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.service-card h3 {
  max-width: 530px;
  margin: 0;
  font-size: clamp(25px, 2.8vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.service-card:not(.service-card--feature) h3 {
  font-size: clamp(24px, 2.1vw, 34px);
}

.service-card p {
  max-width: 480px;
  margin: 18px 0 0;
  color: #8f918a;
  font-size: 14px;
  line-height: 1.65;
}

.card-arrow {
  position: absolute;
  right: 26px;
  top: 24px;
  color: #5d5f59;
  font-size: 22px;
  transition: color 160ms ease, transform 160ms ease;
}

.service-card:hover .card-arrow {
  color: var(--coral-bright);
  transform: translate(2px, -2px);
}

.service-icon {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--coral-bright);
  font-family: Georgia, serif;
  font-size: 37px;
  box-shadow: inset 0 0 30px rgba(255, 92, 53, 0.06);
}

.service-graphic {
  width: min(100%, 560px);
  min-height: 235px;
  justify-self: end;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: #11120f;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.25);
}

.dashboard-graphic {
  display: grid;
  grid-template-columns: 26% 1fr 1fr;
  grid-template-rows: 50px 1fr;
  gap: 10px;
  padding: 14px;
}

.graphic-sidebar {
  grid-row: 1 / -1;
  border-radius: 8px;
  background: #1d1e1a;
}

.graphic-title {
  grid-column: 2 / -1;
  width: 42%;
  height: 13px;
  align-self: center;
  border-radius: 99px;
  background: #343630;
}

.dashboard-graphic i {
  min-height: 105px;
  border-radius: 9px;
  background: linear-gradient(145deg, #22231f, #191a17);
}

.dashboard-graphic i:nth-of-type(1) {
  background: linear-gradient(145deg, rgba(255, 92, 53, 0.35), rgba(255, 92, 53, 0.06));
}

.dashboard-graphic i:nth-of-type(3) {
  display: none;
}

.method-section {
  padding: clamp(96px, 11vw, 152px) clamp(20px, 4vw, 64px);
  background: #f5f2ea;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  column-gap: 6vw;
}

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

.section-heading h2,
.sectors-copy h2,
.made-copy h2,
.contact-inner h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.section-heading > p:last-child {
  max-width: 460px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.method-list {
  margin: clamp(70px, 9vw, 120px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.method-list li {
  min-width: 0;
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: 50px 1fr;
}

.step-index {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 9px;
}

.step-marker {
  grid-column: 2;
  height: 1px;
  margin-top: 5px;
  position: relative;
  background: rgba(17, 17, 15, 0.18);
}

.step-marker i {
  position: absolute;
  left: -1px;
  top: -5px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 1px var(--coral);
}

.method-list li:last-child .step-marker {
  background: linear-gradient(90deg, rgba(17, 17, 15, 0.18), transparent);
}

.method-list li > div:last-child {
  grid-column: 2;
  padding-right: 28px;
}

.step-label {
  color: #89857c;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.method-list h3 {
  margin: 13px 0 15px;
  font-size: clamp(25px, 2.2vw, 34px);
  letter-spacing: -0.05em;
}

.method-list p {
  max-width: 245px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.sectors-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--coral);
  color: #180d0a;
}

.sectors-copy {
  padding: clamp(88px, 9vw, 132px) clamp(20px, 6vw, 96px);
  align-self: center;
}

.sectors-copy .eyebrow {
  color: rgba(24, 13, 10, 0.62);
}

.sectors-copy .eyebrow span {
  color: #180d0a;
}

.sectors-copy h2 {
  font-size: clamp(44px, 5vw, 76px);
}

.sectors-copy > p:last-child {
  max-width: 510px;
  margin: 30px 0 0;
  color: rgba(24, 13, 10, 0.7);
  font-size: 16px;
  line-height: 1.65;
}

.sector-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(24, 13, 10, 0.2);
}

.sector-list article {
  min-height: 300px;
  padding: 28px;
  position: relative;
  border-right: 1px solid rgba(24, 13, 10, 0.2);
  border-bottom: 1px solid rgba(24, 13, 10, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 180ms ease;
}

.sector-list article:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sector-list span {
  font-family: var(--mono);
  font-size: 10px;
}

.sector-list h3 {
  margin: auto 0 0;
  font-size: clamp(25px, 2.8vw, 40px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.sector-list i {
  position: absolute;
  right: 25px;
  top: 23px;
  font-size: 22px;
  font-style: normal;
}

.made-section {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.made-visual {
  padding: clamp(42px, 6vw, 92px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: #f7f3ea;
}

.made-word {
  position: relative;
  z-index: 2;
  font-family: Georgia, serif;
  font-size: clamp(90px, 15vw, 220px);
  font-style: italic;
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.made-rings {
  position: absolute;
  right: -10%;
  top: 44%;
  width: min(40vw, 570px);
  aspect-ratio: 1;
  transform: translateY(-50%);
}

.made-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.made-rings i:nth-child(2) {
  inset: 14%;
  border-color: rgba(233, 79, 55, 0.7);
}

.made-rings i:nth-child(3) {
  inset: 30%;
  background: var(--coral);
  border-color: transparent;
  box-shadow: 0 0 80px rgba(233, 79, 55, 0.32);
}

.made-caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.made-caption span {
  font-family: var(--mono);
  font-size: 10px;
}

.made-caption p {
  margin: 0;
  color: #a4a49d;
  font-size: 12px;
  line-height: 1.7;
  text-align: right;
}

.made-copy {
  padding: clamp(88px, 9vw, 132px) clamp(20px, 7vw, 108px);
  align-self: center;
}

.made-copy h2 {
  font-size: clamp(48px, 5.3vw, 80px);
}

.made-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.made-copy ul {
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.made-copy li {
  min-height: 62px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.made-copy li span {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 9px;
}

.contact-section {
  min-height: 720px;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #f6f2e9;
  text-align: center;
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact-inner .eyebrow {
  justify-content: center;
  color: #777970;
}

.contact-inner h2 {
  font-size: clamp(48px, 6.8vw, 98px);
}

.contact-inner > p:not(.eyebrow) {
  margin: 30px auto 0;
  color: #91938b;
  font-size: 17px;
}

.button--light {
  min-height: 56px;
  margin-top: 38px;
  padding: 0 26px;
  background: #f5f2ea;
  color: var(--ink);
}

.contact-orbit {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(82vw, 1050px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.contact-orbit i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.contact-orbit i:nth-child(2) {
  inset: 14%;
  border-color: rgba(233, 79, 55, 0.17);
}

.contact-orbit i:nth-child(3) {
  inset: 30%;
  border-color: rgba(242, 162, 58, 0.18);
}

.site-footer {
  min-height: 190px;
  padding: 46px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 24px;
}

.site-footer > p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer > div {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
}

.site-footer small {
  grid-column: 1 / -1;
  align-self: end;
  color: #8b877e;
  font-family: var(--mono);
  font-size: 9px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.can-reveal .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 78px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual {
    width: min(760px, 94%);
    justify-self: center;
  }

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

  .service-card--feature {
    grid-column: span 2;
  }

  .service-card:not(.service-card--feature) {
    min-height: 340px;
  }

  .section-heading {
    grid-template-columns: 1fr 1fr;
  }

  .method-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 56px;
  }

  .sectors-section {
    grid-template-columns: 1fr;
  }

  .sector-list {
    border-top: 1px solid rgba(24, 13, 10, 0.2);
    border-left: 0;
  }

  .made-section {
    grid-template-columns: 1fr;
  }

  .made-visual {
    min-height: 620px;
  }

  .made-rings {
    width: min(72vw, 560px);
  }
}

@media (max-width: 640px) {
  .announcement {
    justify-content: flex-start;
    font-size: 10px;
  }

  .announcement a {
    margin-left: auto;
  }

  .site-header {
    height: 72px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    inset: 112px 0 0;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button--coral {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero__visual {
    width: 100%;
    max-width: 100%;
    transform: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-window {
    width: 100%;
    min-width: 0;
    height: 500px;
    min-height: 0;
    aspect-ratio: auto;
    transform: none;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-nav {
    display: none;
  }

  .project-panel {
    padding: 24px 18px;
  }

  .floating-chip,
  .chip-one,
  .chip-two {
    position: static;
    inset: auto;
    width: 100%;
    min-width: 0;
    box-shadow: none;
  }

  .chip-two {
    min-height: 44px;
    justify-content: center;
  }

  .capabilities {
    min-height: 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
  }

  .capabilities span {
    min-width: 0;
    min-height: 64px;
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }

  .capabilities span:nth-of-type(odd):not(:last-of-type) {
    border-right: 1px solid var(--line);
  }

  .capabilities span:last-of-type {
    grid-column: 1 / -1;
    border-bottom: 0;
    justify-content: center;
  }

  .capabilities i {
    display: none;
  }

  .services-section {
    padding-top: 88px;
  }

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

  .service-card,
  .service-card:not(.service-card--feature) {
    min-height: 320px;
  }

  .service-card--feature {
    grid-column: span 1;
    min-height: 620px;
    display: flex;
  }

  .service-card--feature .card-number {
    align-self: start;
  }

  .service-graphic {
    width: 100%;
    min-height: 210px;
    order: 2;
  }

  .service-card--feature > div:last-of-type {
    order: 3;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .method-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .method-list li {
    min-height: 180px;
    grid-template-columns: 34px 22px minmax(0, 1fr);
    grid-template-rows: 1fr;
  }

  .step-index {
    grid-column: 1;
    grid-row: 1;
    padding-top: 3px;
  }

  .step-marker {
    grid-column: 2;
    grid-row: 1;
    width: 1px;
    height: 100%;
    margin: 0 0 0 6px;
    background: rgba(17, 17, 15, 0.18);
  }

  .step-marker i {
    left: -5px;
    top: 3px;
  }

  .method-list li:last-child .step-marker {
    background: linear-gradient(rgba(17, 17, 15, 0.18), transparent);
  }

  .method-list li > div:last-child {
    grid-column: 3;
    grid-row: 1;
    margin: 0;
    min-width: 0;
    padding: 0 0 48px;
  }

  .method-list li:last-child > div:last-child {
    padding-bottom: 0;
  }

  .sector-list {
    grid-template-columns: 1fr;
  }

  .sector-list article {
    min-height: 210px;
  }

  .made-section {
    min-height: 0;
  }

  .made-visual {
    min-height: 480px;
  }

  .made-rings {
    width: 90vw;
  }

  .contact-section {
    min-height: 650px;
  }

  .contact-inner h2 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .button--light {
    width: 100%;
    padding: 0 18px;
  }

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

  .site-footer > div {
    flex-wrap: wrap;
  }

  .site-footer small {
    grid-column: 1;
    margin-top: 20px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
