:root {
  --orange: #f26522;
  --orange-bright: #ff7a25;
  --orange-soft: #f8b07f;
  --ink: #0b0c0c;
  --ink-soft: #171919;
  --graphite: #262929;
  --concrete: #d8d7d2;
  --paper: #f3f1eb;
  --paper-deep: #e9e6de;
  --white: #ffffff;
  --muted: #686965;
  --line: rgba(12, 13, 13, 0.14);
  --page: min(1280px, calc(100% - 64px));
  --font-geist-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-locked {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

.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;
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section {
  padding: 128px 0;
}

.section-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(1320px, calc(100% - 36px));
  min-height: 74px;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(10, 11, 11, 0.83);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
  color: var(--white);
  transform: translateX(-50%);
  backdrop-filter: blur(18px) saturate(120%);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: #080808;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 590;
  letter-spacing: 0.03em;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

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

.header-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 18px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.03em;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--orange-bright);
  transform: translateY(-1px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  overflow: hidden;
  background: #0a0b0b;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-media-shade,
.technical-grid,
.flow-plane {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  animation: hero-image-enter 1600ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
  object-fit: cover;
  object-position: center;
}

.hero-media-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.98) 0%, rgba(7, 8, 8, 0.89) 28%, rgba(7, 8, 8, 0.4) 55%, rgba(7, 8, 8, 0.1) 78%),
    linear-gradient(180deg, rgba(7, 8, 8, 0.55) 0%, transparent 32%, transparent 63%, rgba(7, 8, 8, 0.86) 100%);
}

.technical-grid {
  left: 55%;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000 85%, transparent);
}

.level-scan {
  position: absolute;
  z-index: 1;
  top: 26%;
  right: 5%;
  width: 42%;
  height: 1px;
  animation: scan-level 6s ease-in-out 1.2s infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 116, 31, 0.9), transparent);
  box-shadow: 0 0 18px rgba(242, 101, 34, 0.75);
}

.level-scan span {
  position: absolute;
  top: 50%;
  right: 9%;
  width: 7px;
  height: 7px;
  border: 1px solid #ffc199;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(242, 101, 34, 0.14);
  transform: translateY(-50%);
}

.flow-plane {
  top: auto;
  height: 28%;
  opacity: 0.17;
  background: linear-gradient(180deg, transparent, rgba(242, 101, 34, 0.36));
  clip-path: polygon(55% 34%, 100% 0, 100% 100%, 18% 100%);
  animation: flow-shift 5s ease-in-out infinite alternate;
}

.level-nodes {
  position: absolute;
  z-index: 1;
  right: 7%;
  bottom: 21%;
  display: flex;
  width: 39%;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.level-nodes i {
  width: 6px;
  height: 6px;
  margin-bottom: -3px;
  border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.1);
  animation: nodes-settle 2.8s cubic-bezier(0.25, 0.7, 0.2, 1) infinite alternate;
}

.level-nodes i:nth-child(2) { animation-delay: 160ms; }
.level-nodes i:nth-child(3) { animation-delay: 300ms; }
.level-nodes i:nth-child(4) { animation-delay: 440ms; }
.level-nodes i:nth-child(5) { animation-delay: 580ms; }

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 178px;
  padding-bottom: 55px;
}

.hero-copy {
  max-width: 800px;
  animation: hero-copy-enter 900ms cubic-bezier(0.2, 0.75, 0.2, 1) 260ms both;
}

.hero-eyebrow {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.74);
}

.hero-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(242, 101, 34, 0.14);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4.6rem, 7.2vw, 7.8rem);
  font-weight: 690;
  letter-spacing: -0.07em;
  line-height: 0.89;
}

.hero h1 em {
  display: block;
  color: var(--orange-bright);
  font-style: normal;
  font-weight: 730;
}

.hero-summary {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 390;
  letter-spacing: -0.015em;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 730;
  letter-spacing: 0.02em;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    transform 200ms ease;
}

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

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

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: grid;
  width: min(760px, 68%);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  animation: hero-copy-enter 900ms cubic-bezier(0.2, 0.75, 0.2, 1) 680ms both;
}

.hero-proof > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  padding: 20px 24px 0 0;
}

.hero-proof span {
  grid-row: 1 / 3;
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.66rem;
  font-weight: 700;
}

.hero-proof strong {
  font-size: 0.85rem;
  font-weight: 620;
}

.hero-proof small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 32px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--orange);
  font-style: normal;
  writing-mode: horizontal-tb;
}

/* Intro */
.manifesto {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.manifesto::after {
  position: absolute;
  top: -220px;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(12, 13, 13, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(12, 13, 13, 0.015),
    0 0 0 110px rgba(12, 13, 13, 0.01);
  content: "";
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 10%;
  align-items: end;
}

.manifesto h2,
.section-heading h2,
.application h2,
.resource-intro h2,
.closing h2 {
  margin: 28px 0 0;
  font-size: clamp(2.8rem, 4.8vw, 5.6rem);
  font-weight: 610;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.manifesto h2 span,
.closing h2 span {
  color: var(--orange);
}

.manifesto-copy {
  padding-bottom: 8px;
}

.manifesto-copy > p,
.section-heading > p,
.application-title > p,
.resource-intro > p,
.closing-copy > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
  border-bottom: 1px solid var(--ink);
  padding: 0 0 7px;
  font-size: 0.78rem;
  font-weight: 720;
}

.text-link span {
  color: var(--orange);
  transition: transform 180ms ease;
}

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

/* Solutions */
.solutions {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.5fr);
  gap: 12%;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.9rem, 4.5vw, 5rem);
}

.section-heading > p {
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  background: #f7f6f2;
  transition:
    border-color 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.product-card::before {
  position: absolute;
  inset: auto -5% -30% 45%;
  height: 56%;
  background: repeating-linear-gradient(
    -42deg,
    rgba(12, 13, 13, 0.055) 0,
    rgba(12, 13, 13, 0.055) 1px,
    transparent 1px,
    transparent 12px
  );
  content: "";
  opacity: 0.55;
  transform: skewX(-12deg);
}

.product-card:nth-child(2) {
  background: var(--ink);
  color: var(--white);
}

.product-card:nth-child(2)::before {
  background: repeating-linear-gradient(
    -42deg,
    rgba(255, 255, 255, 0.08) 0,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px,
    transparent 12px
  );
}

.product-card:nth-child(3) {
  background: #deddd8;
}

.product-card:hover {
  z-index: 2;
  border-color: rgba(242, 101, 34, 0.6);
  box-shadow: 0 28px 60px rgba(12, 13, 13, 0.13);
  transform: translateY(-7px);
}

.product-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-number {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 750;
}

.product-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
  opacity: 0.32;
}

.product-eyebrow {
  position: relative;
  z-index: 1;
  margin: auto 0 15px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.65rem, 2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.product-card > p:not(.product-eyebrow) {
  position: relative;
  z-index: 1;
  min-height: 68px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.product-card:nth-child(2) > p:not(.product-eyebrow) {
  color: rgba(255, 255, 255, 0.56);
}

.product-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.product-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 620;
}

.product-card:nth-child(2) .product-tags span {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

.product-card > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 720;
}

.product-card:nth-child(2) > a {
  border-color: rgba(255, 255, 255, 0.13);
}

.product-card > a span {
  color: var(--orange);
}

.precision-band {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--orange);
  color: var(--ink);
}

.precision-marquee {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  padding: 20px 0;
  animation: marquee 22s linear infinite;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.precision-marquee i {
  font-style: normal;
}

/* Application */
.application {
  background: #e5e3dd;
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.75fr);
  gap: 7%;
  align-items: start;
}

.application-media {
  position: sticky;
  top: 120px;
  min-height: 680px;
  overflow: hidden;
  background: #b9b8b3;
}

.application-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.application-media img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.application-media:hover img {
  transform: scale(1.025);
}

.media-index {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  width: calc(100% - 48px);
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.media-index span {
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-index strong {
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
}

.media-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(10, 11, 11, 0.7);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 610;
  backdrop-filter: blur(12px);
}

.media-caption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.application-content {
  padding-top: 10px;
}

.application h2 {
  font-size: clamp(2.8rem, 4.3vw, 4.9rem);
}

.application-title > p {
  max-width: 520px;
  margin-top: 25px;
}

.step-list {
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.step-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-list li > span {
  padding-top: 3px;
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 750;
}

.step-list h3 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 680;
  letter-spacing: -0.03em;
}

.step-list p {
  max-width: 470px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* Resources */
.resource-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.resource-section::before {
  position: absolute;
  top: -260px;
  right: -160px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.012),
    0 0 0 140px rgba(255, 255, 255, 0.008);
  content: "";
}

.resource-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.46fr);
  gap: 13%;
  align-items: end;
}

.resource-intro h2 {
  max-width: 820px;
  font-size: clamp(3rem, 4.8vw, 5.5rem);
}

.resource-intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.53);
}

.resource-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 70px;
}

.qr-card {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  background: var(--orange);
  color: var(--ink);
}

.qr-card::after {
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(12, 13, 13, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(12, 13, 13, 0.035);
  content: "";
}

.qr-visual {
  position: relative;
  display: grid;
  width: 144px;
  height: 144px;
  place-items: center;
  overflow: hidden;
  border: 14px solid var(--ink);
  background:
    conic-gradient(from 90deg at 25% 25%, var(--ink) 0 25%, transparent 0 100%) 0 0 / 38px 38px,
    conic-gradient(from 270deg at 75% 75%, var(--ink) 0 25%, transparent 0 100%) 0 0 / 28px 28px,
    var(--paper);
}

.qr-visual span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--orange);
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 900;
}

.qr-card > p:first-of-type {
  margin: auto 0 12px;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.qr-card h3 {
  margin: 0;
  font-size: clamp(2.2rem, 3.2vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.qr-card > p:last-of-type {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 21px 0 0;
  color: rgba(12, 13, 13, 0.68);
  font-size: 0.81rem;
  line-height: 1.63;
}

.qr-status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  font-size: 0.68rem;
  font-weight: 700;
}

.qr-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(12, 13, 13, 0.12);
}

.resource-browser {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121414;
}

.resource-controls {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) auto;
  gap: 18px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-search {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.resource-search > span:not(.sr-only) {
  color: var(--orange);
  font-size: 1.2rem;
}

.resource-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 0.76rem;
}

.resource-search input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.filter-group {
  display: flex;
  gap: 6px;
}

.filter-group button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: transparent;
  color: rgba(255, 255, 255, 0.47);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 650;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.filter-group button:hover,
.filter-group button:focus-visible,
.filter-group button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.resource-list {
  min-height: 392px;
}

.resource-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.file-badge {
  display: grid;
  width: 50px;
  height: 58px;
  place-items: end center;
  padding-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, 72% 0, 100% 24%, 100% 100%, 0 100%);
}

.resource-meta span {
  color: var(--orange-soft);
  font-size: 0.61rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-meta h3 {
  margin: 4px 0;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.resource-meta small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.65rem;
}

.resource-pending {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.61rem;
  font-weight: 650;
}

.resource-download {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid var(--orange);
  border-radius: 100px;
  color: var(--orange-soft);
  font-size: 0.64rem;
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease;
}

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

.resource-empty {
  display: grid;
  min-height: 360px;
  place-content: center;
  text-align: center;
}

.resource-empty strong {
  font-size: 1.1rem;
}

.resource-empty p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.resource-note {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.65rem;
  line-height: 1.5;
}

/* Closing and footer */
.closing {
  background: var(--paper);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.5fr);
  gap: 12%;
  align-items: end;
}

.closing h2 {
  max-width: 760px;
}

.closing-copy {
  padding-bottom: 4px;
}

.button-dark {
  width: 100%;
  margin-top: 18px;
  background: var(--ink);
  color: var(--white);
}

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

.site-footer {
  padding: 70px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 44px;
  align-items: center;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  object-fit: cover;
}

.footer-tagline {
  display: grid;
  gap: 8px;
}

.footer-tagline span {
  color: var(--orange);
  font-size: 0.63rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-tagline strong {
  max-width: 450px;
  font-size: 1.5rem;
  font-weight: 560;
  letter-spacing: -0.04em;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 34px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  transition: color 160ms ease;
}

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

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.62rem;
}

/* Motion */
@keyframes hero-image-enter {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy-enter {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scan-level {
  0%, 12% { opacity: 0; transform: translateY(-130px); }
  28%, 72% { opacity: 1; }
  88%, 100% { opacity: 0; transform: translateY(290px); }
}

@keyframes flow-shift {
  from { clip-path: polygon(55% 34%, 100% 0, 100% 100%, 18% 100%); }
  to { clip-path: polygon(48% 25%, 100% 4%, 100% 100%, 8% 100%); }
}

@keyframes nodes-settle {
  0% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 1080px) {
  :root {
    --page: min(100% - 44px, 1280px);
  }

  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-right: 8px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 50px;
    height: 50px;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--white);
    transition: transform 220ms ease;
  }

  .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);
  }

  .mobile-nav {
    position: fixed;
    z-index: 101;
    inset: -18px -18px auto -18px;
    display: block;
    min-height: 100svh;
    padding: 126px 28px 42px;
    background: #0c0d0d;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition:
      opacity 260ms ease,
      transform 260ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-inner {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .mobile-nav p {
    margin: 0 0 26px;
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-nav a:not(.mobile-resource-link) {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: clamp(2rem, 7vw, 3.7rem);
    font-weight: 580;
    letter-spacing: -0.05em;
  }

  .mobile-nav a > span {
    color: var(--orange);
    font-family: var(--font-geist-mono), monospace;
    font-size: 0.64rem;
    letter-spacing: 0;
  }

  .mobile-resource-link {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .mobile-resource-link span {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 9.5vw, 7.2rem);
  }

  .manifesto-grid,
  .section-heading,
  .resource-intro,
  .closing-grid {
    grid-template-columns: 1fr 0.55fr;
    gap: 7%;
  }

  .application-grid {
    grid-template-columns: 0.85fr 0.75fr;
    gap: 5%;
  }

  .application-media,
  .application-media img {
    min-height: 600px;
    height: 600px;
  }

  .resource-controls {
    grid-template-columns: 1fr;
  }

  .filter-group {
    flex-wrap: wrap;
  }
}

@media (max-width: 780px) {
  :root {
    --page: calc(100% - 34px);
  }

  html {
    scroll-padding-top: 90px;
  }

  .section {
    padding: 88px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    grid-template-columns: 1fr auto;
    padding: 8px;
    border-radius: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-copy span,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 780px;
    height: max(100svh, 780px);
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-media-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 8, 0.96) 0%, rgba(7, 8, 8, 0.76) 72%, rgba(7, 8, 8, 0.4) 100%),
      linear-gradient(180deg, rgba(7, 8, 8, 0.62) 0%, transparent 35%, rgba(7, 8, 8, 0.89) 100%);
  }

  .technical-grid {
    left: 25%;
    background-size: 52px 52px;
  }

  .level-scan,
  .level-nodes {
    right: 4%;
    width: 63%;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: 0.61rem;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(3.9rem, 17vw, 6.5rem);
    line-height: 0.9;
  }

  .hero-summary {
    max-width: 500px;
    margin-top: 22px;
    font-size: 0.92rem;
  }

  .hero-actions {
    margin-top: 27px;
  }

  .button {
    min-height: 54px;
    gap: 20px;
    padding: 0 18px;
  }

  .hero-proof,
  .scroll-cue {
    display: none;
  }

  .manifesto-grid,
  .section-heading,
  .application-grid,
  .resource-intro,
  .resource-layout,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .closing-grid {
    gap: 42px;
  }

  .manifesto h2,
  .section-heading h2,
  .application h2,
  .resource-intro h2,
  .closing h2 {
    font-size: clamp(2.65rem, 12vw, 4.5rem);
  }

  .section-heading,
  .resource-intro {
    gap: 28px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

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

  .product-card {
    min-height: 420px;
  }

  .application-media {
    position: relative;
    top: auto;
    min-height: 450px;
  }

  .application-media img {
    min-height: 450px;
    height: 450px;
  }

  .application-content {
    padding-top: 32px;
  }

  .resource-layout {
    gap: 14px;
    margin-top: 44px;
  }

  .qr-card {
    min-height: 480px;
  }

  .resource-browser {
    padding: 18px;
  }

  .resource-row {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .file-badge {
    width: 44px;
    height: 52px;
  }

  .resource-pending,
  .resource-download {
    grid-column: 2;
    width: fit-content;
  }

  .footer-main {
    grid-template-columns: 92px 1fr;
    gap: 26px;
  }

  .footer-main nav {
    grid-column: 1 / -1;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-brand img {
    width: 82px;
    height: 82px;
  }

  .footer-legal {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .filter-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .filter-group button:first-child {
    grid-column: 1 / -1;
  }

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

  .footer-main nav,
  .footer-tagline {
    grid-column: auto;
  }
}

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

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

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

/* Multi-page navigation */
.desktop-nav { gap: 24px; }
.desktop-nav a[aria-current="page"] { color: var(--white); }
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.mobile-nav a[aria-current="page"] { color: var(--orange-soft); }

/* Internal page hero */
.page-hero {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: flex-end;
  overflow: hidden;
  padding: 190px 0 92px;
  background: var(--ink);
  color: var(--white);
}
.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -360px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.015), 0 0 0 140px rgba(255,255,255,.009);
  content: "";
}
.page-hero-media, .page-hero-media img, .page-hero-shade { position: absolute; inset: 0; }
.page-hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: hero-image-enter 1400ms cubic-bezier(.2,.75,.2,1) both;
}
.page-hero--application .page-hero-media img { object-position: center 58%; }
.page-hero-shade {
  background: linear-gradient(90deg,rgba(7,8,8,.97) 0%,rgba(7,8,8,.83) 42%,rgba(7,8,8,.34) 76%,rgba(7,8,8,.58) 100%), linear-gradient(180deg,rgba(7,8,8,.2),rgba(7,8,8,.88));
}
.page-hero-content { position: relative; z-index: 2; animation: hero-copy-enter 900ms cubic-bezier(.2,.75,.2,1) 180ms both; }
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin: 0 0 30px; color: rgba(255,255,255,.46); font-size: .68rem;
  font-weight: 650; letter-spacing: .08em; text-transform: uppercase;
}
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--white); }
.breadcrumb span:last-child { color: var(--orange-soft); }
.page-hero h1 {
  max-width: 1040px; margin: 0; font-size: clamp(4.2rem,7vw,7.5rem);
  font-weight: 650; letter-spacing: -.07em; line-height: .9;
}
.page-hero h1 em { color: var(--orange-bright); font-style: normal; }
.page-hero-summary {
  max-width: 660px; margin: 30px 0 0; color: rgba(255,255,255,.64);
  font-size: clamp(1rem,1.4vw,1.2rem); line-height: 1.7;
}
.page-hero-index {
  position: absolute; z-index: 2; right: 6%; bottom: 88px;
  color: rgba(255,255,255,.28); font-family: var(--font-geist-mono);
  font-size: .68rem; letter-spacing: .12em; writing-mode: vertical-rl;
}

/* Home page directories */
.explore-section { background: var(--white); }
.explore-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.explore-card {
  position: relative; display: flex; min-height: 340px; flex-direction: column;
  overflow: hidden; padding: 30px; border: 1px solid var(--line); background: #f7f6f2;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.explore-card:nth-child(2), .explore-card:nth-child(5) { background: var(--ink); color: var(--white); }
.explore-card:nth-child(3) { background: var(--orange); }
.explore-card::after {
  position: absolute; right: -90px; bottom: -110px; width: 250px; height: 250px;
  border: 1px solid currentColor; border-radius: 50%; content: ""; opacity: .08;
}
.explore-card:hover, .explore-card:focus-visible {
  z-index: 1; border-color: rgba(242,101,34,.7); box-shadow: 0 24px 55px rgba(12,13,13,.12); transform: translateY(-6px);
}
.explore-card > span { position: relative; z-index: 1; color: var(--orange); font-family: var(--font-geist-mono); font-size: .68rem; font-weight: 750; }
.explore-card:nth-child(3) > span { color: var(--ink); }
.explore-card h3 { position: relative; z-index: 1; margin: auto 0 13px; font-size: clamp(1.65rem,2.6vw,2.6rem); font-weight: 660; letter-spacing: -.055em; }
.explore-card p { position: relative; z-index: 1; max-width: 340px; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.62; }
.explore-card:nth-child(2) p, .explore-card:nth-child(5) p { color: rgba(255,255,255,.5); }
.explore-card:nth-child(3) p { color: rgba(12,13,13,.65); }
.explore-card strong { position: absolute; z-index: 1; top: 25px; right: 28px; color: var(--orange); font-size: 1rem; }
.explore-card:nth-child(3) strong { color: var(--ink); }

/* Product and company content */
.selection-section, .company-values, .contact-section { background: var(--paper); }
.split-heading { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(300px,.58fr); gap: 11%; align-items: start; }
.split-heading h2 {
  max-width: 760px; margin: 27px 0 0; font-size: clamp(2.8rem,4.7vw,5.3rem);
  font-weight: 610; letter-spacing: -.06em; line-height: .98;
}
.selection-list, .value-list { margin: 0; padding: 0; list-style: none; }
.selection-list li, .value-list li { display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line); }
.selection-list li:last-child, .value-list li:last-child { border-bottom: 1px solid var(--line); }
.selection-list > li > span, .value-list > li > span { color: var(--orange); font-family: var(--font-geist-mono); font-size: .67rem; font-weight: 730; }
.selection-list h3, .value-list h3 { margin: 0; font-size: 1.08rem; letter-spacing: -.025em; }
.selection-list p, .value-list p { margin: 8px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.62; }
.notice-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
  margin-top: 64px; padding: 25px 28px; border: 1px solid var(--line); background: var(--white);
}
.notice-card > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--orange); font-weight: 850; }
.notice-card strong { display: block; margin-bottom: 5px; font-size: .92rem; }
.notice-card p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.company-value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 62px; }
.company-value-card { min-height: 320px; padding: 29px; border: 1px solid var(--line); background: var(--white); }
.company-value-card:nth-child(2) { background: var(--ink); color: var(--white); }
.company-value-card > span { color: var(--orange); font-family: var(--font-geist-mono); font-size: .68rem; }
.company-value-card h3 { margin: 145px 0 12px; font-size: 1.65rem; letter-spacing: -.045em; }
.company-value-card p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.62; }
.company-value-card:nth-child(2) p { color: rgba(255,255,255,.52); }

/* Resource page additions */
.resource-section--page { padding-top: 112px; }
.resource-count { margin: 0 0 18px; color: rgba(255,255,255,.36); font-size: .64rem; font-weight: 680; letter-spacing: .08em; text-transform: uppercase; }
[hidden] { display: none !important; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: minmax(280px,.52fr) minmax(0,1fr); gap: 7%; align-items: start; }
.contact-copy h2 { margin: 27px 0 22px; font-size: clamp(2.7rem,4.6vw,4.9rem); font-weight: 610; letter-spacing: -.06em; line-height: .98; }
.contact-copy > p { max-width: 480px; margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.72; }
.contact-direct { display: grid; gap: 5px; margin-top: 38px; padding-top: 23px; border-top: 1px solid var(--line); }
.contact-direct span { color: var(--orange); font-size: .66rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct a { width: fit-content; font-size: 1.05rem; font-weight: 670; border-bottom: 1px solid var(--ink); }
.contact-form { padding: 34px; border: 1px solid var(--line); background: var(--white); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.form-field { display: grid; gap: 9px; }
.form-field--full { grid-column: 1 / -1; }
.form-field span { color: var(--muted); font-size: .66rem; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 0; outline: 0;
  background: #f7f6f2; color: var(--ink); font: inherit; font-size: .84rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-field input, .form-field select { min-height: 52px; padding: 0 14px; }
.form-field textarea { min-height: 160px; padding: 14px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,101,34,.12); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 24px; }
.form-actions .button { border: 0; cursor: pointer; }
.form-note, .form-status { margin: 0; color: var(--muted); font-size: .67rem; line-height: 1.55; }
.form-status { width: 100%; color: #3f6f30; font-weight: 680; }

/* Error page */
.error-page { display: grid; min-height: 100svh; place-items: center; padding: 40px 0; background: var(--ink); color: var(--white); }
.error-content { max-width: 760px; text-align: center; }
.error-code { display: block; color: var(--orange); font-family: var(--font-geist-mono); font-size: .75rem; font-weight: 760; letter-spacing: .15em; }
.error-content h1 { margin: 25px 0 20px; font-size: clamp(3.7rem,8vw,7rem); letter-spacing: -.07em; line-height: .92; }
.error-content p { max-width: 540px; margin: 0 auto 30px; color: rgba(255,255,255,.58); line-height: 1.7; }

@media (max-width:1080px) {
  .page-hero { min-height: 620px; }
  .explore-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width:780px) {
  .mobile-nav { overflow-y: auto; padding-top: 104px; }
  .mobile-nav a:not(.mobile-resource-link) { padding: 13px 0; font-size: clamp(1.75rem,8vw,2.8rem); }
  .page-hero { min-height: 600px; padding: 150px 0 68px; }
  .page-hero h1 { font-size: clamp(3.7rem,15vw,6rem); }
  .page-hero-summary { font-size: .92rem; }
  .page-hero-index { display: none; }
  .explore-grid, .company-value-grid, .split-heading, .contact-grid { grid-template-columns: 1fr; }
  .explore-card { min-height: 300px; }
  .split-heading, .contact-grid { gap: 44px; }
  .notice-card { grid-template-columns: auto 1fr; }
  .notice-card .button { grid-column: 1 / -1; }
  .contact-form { padding: 22px; }
}
@media (max-width:480px) {
  .explore-grid, .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .contact-direct a { font-size: .88rem; }
}
