.subpage {
  background: var(--paper);
}

.subpage .site-header {
  position: absolute;
}

.subpage .desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.subpage .mobile-menu a[aria-current="page"] {
  color: var(--acid);
}

.page-hero {
  --hero-accent-x: 72%;
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--hero-accent-x) 42%, rgb(223 255 56 / 10%), transparent 28%),
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: auto, 7.5vw 7.5vw, 7.5vw 7.5vw;
  content: "";
}

.page-hero__media {
  position: absolute;
  inset: 0 0 0 48%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 38%);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7) contrast(1.15) brightness(0.63);
  transform: scale(1.06);
}

.page-hero__structure {
  position: absolute;
  top: 18%;
  right: 7%;
  width: min(41vw, 650px);
  aspect-ratio: 1;
  opacity: 0.65;
  border: 1px solid rgb(223 255 56 / 18%);
  border-radius: 50%;
  animation: page-orbit 22s linear infinite;
}

.page-hero__structure::before,
.page-hero__structure::after {
  position: absolute;
  content: "";
}

.page-hero__structure::before {
  inset: 18%;
  border: 1px dashed rgb(255 255 255 / 15%);
  border-radius: 50%;
}

.page-hero__structure::after {
  top: 50%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  box-shadow: 0 -12vw rgb(255 255 255 / 8%), 0 12vw rgb(255 255 255 / 8%);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(720px, 100svh);
  padding: 155px var(--gutter) 58px;
  flex-direction: column;
  justify-content: center;
}

.page-hero__crumb {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 42px;
  color: rgb(255 255 255 / 45%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.page-hero__crumb i {
  width: 30px;
  height: 1px;
  background: var(--acid);
}

.page-hero h1 {
  max-width: 1200px;
  font-size: clamp(64px, 9vw, 168px);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.9;
}

.page-hero h1 span {
  display: block;
  color: var(--acid);
}

.page-hero__bottom {
  display: grid;
  width: min(100%, 1180px);
  margin-top: clamp(55px, 8vh, 90px);
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(45px, 8vw, 130px);
  align-items: end;
}

.page-hero__number {
  color: transparent;
  font-size: clamp(78px, 8vw, 138px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgb(255 255 255 / 28%);
}

.page-hero__lead {
  max-width: 660px;
  padding-left: 27px;
  color: rgb(255 255 255 / 65%);
  border-left: 1px solid rgb(255 255 255 / 26%);
  font-size: clamp(13px, 1.15vw, 17px);
  line-height: 2;
}

.page-hero__lead strong {
  display: block;
  margin-bottom: 11px;
  color: white;
  font-size: 1.35em;
  font-weight: 550;
  letter-spacing: -0.03em;
}

.page-hero__rail {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgb(255 255 255 / 38%);
  font-size: 7px;
  letter-spacing: 0.15em;
}

.page-hero__rail i {
  width: 65px;
  height: 1px;
  background: linear-gradient(90deg, var(--acid) 35%, rgb(255 255 255 / 16%) 35%);
}

.page-section {
  position: relative;
  padding: var(--section-space) var(--gutter);
  overflow: hidden;
}

.page-section--dark {
  color: white;
  background: var(--ink);
}

.page-section--acid {
  color: var(--ink);
  background: var(--acid);
}

.page-section__tag {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: clamp(62px, 8vw, 125px);
  color: rgb(10 11 11 / 42%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.page-section--dark .page-section__tag {
  color: rgb(255 255 255 / 42%);
}

.page-section__tag i {
  width: 45px;
  height: 1px;
  background: currentColor;
}

.page-heading {
  max-width: 1050px;
  font-size: clamp(48px, 6.4vw, 116px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 1.07;
}

.page-heading span {
  position: relative;
  z-index: 1;
}

.page-heading span::after {
  position: absolute;
  z-index: -1;
  right: -0.02em;
  bottom: 0.04em;
  left: -0.03em;
  height: 0.2em;
  background: var(--acid);
  content: "";
  transform: skewX(-10deg);
}

.page-section--acid .page-heading span::after {
  background: var(--paper);
}

.page-intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 11vw, 190px);
  align-items: end;
}

.page-intro-grid__aside {
  color: rgb(10 11 11 / 43%);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.16em;
}

.page-section--dark .page-intro-grid__aside {
  color: rgb(255 255 255 / 40%);
}

.page-copy {
  max-width: 720px;
  color: rgb(10 11 11 / 62%);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 2.2;
}

.page-section--dark .page-copy {
  color: rgb(255 255 255 / 58%);
}

.page-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 260px);
  min-height: 64px;
  padding: 6px 6px 6px 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background-color 0.3s, color 0.3s;
}

.page-button i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
}

.page-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.page-button:hover {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 20px 48px rgb(10 11 11 / 25%);
  transform: translateY(-3px) scale(1.05);
}

.page-button--light:hover {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 20px 48px rgb(0 0 0 / 38%);
}

.page-button--light:hover i {
  background: var(--acid);
}

.page-stat-grid {
  display: grid;
  margin-top: clamp(80px, 10vw, 165px);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.page-section--dark .page-stat-grid {
  border-color: var(--line-light);
}

.page-stat {
  min-height: 310px;
  padding: clamp(28px, 3vw, 48px);
  border-right: 1px solid var(--line-dark);
  transition: transform 0.3s var(--ease-out), background 0.4s, box-shadow 0.3s;
}

.page-section--dark .page-stat {
  border-color: var(--line-light);
}

.page-stat:first-child {
  border-left: 1px solid var(--line-dark);
}

.page-section--dark .page-stat:first-child {
  border-color: var(--line-light);
}

.page-stat:hover {
  z-index: 2;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 20px 60px rgb(50 60 10 / 18%);
  transform: translateY(-5px) scale(1.025);
}

.page-stat > span {
  color: rgb(10 11 11 / 35%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.page-section--dark .page-stat > span {
  color: rgb(255 255 255 / 35%);
}

.page-stat:hover > span,
.page-stat:hover p {
  color: rgb(10 11 11 / 58%);
}

.page-stat strong {
  display: block;
  margin: 48px 0 26px;
  font-size: clamp(54px, 5.7vw, 96px);
  font-weight: 550;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.page-stat h3 {
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.page-stat p {
  margin-top: 17px;
  color: rgb(10 11 11 / 55%);
  font-size: 11px;
  line-height: 1.9;
}

.page-section--dark .page-stat p {
  color: rgb(255 255 255 / 48%);
}

.editorial-grid {
  display: grid;
  margin-top: clamp(80px, 10vw, 170px);
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.editorial-card {
  position: relative;
  min-height: 390px;
  padding: clamp(30px, 3vw, 52px);
  overflow: hidden;
  background: var(--paper);
}

.editorial-card:nth-child(1) { grid-column: span 7; }
.editorial-card:nth-child(2) { grid-column: span 5; }
.editorial-card:nth-child(3) { grid-column: span 4; }
.editorial-card:nth-child(4) { grid-column: span 8; }

.editorial-card::after {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  border: 1px solid rgb(10 11 11 / 10%);
  border-radius: 50%;
  content: "";
  transition: transform 0.7s var(--ease-out), background 0.4s;
}

.editorial-card:hover::after {
  background: var(--acid);
  transform: scale(1.6);
}

.editorial-card > span {
  position: relative;
  z-index: 1;
  color: rgb(10 11 11 / 35%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.editorial-card h3 {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin-top: 72px;
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.25;
}

.editorial-card p {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin-top: 24px;
  color: rgb(10 11 11 / 55%);
  font-size: 12px;
  line-height: 2;
}

.detail-list {
  margin-top: clamp(90px, 11vw, 180px);
  border-top: 1px solid var(--line-light);
}

.detail-row {
  position: relative;
  display: grid;
  min-height: 440px;
  padding: clamp(42px, 5vw, 82px) 0;
  overflow: hidden;
  grid-template-columns: 16% 34% 1fr;
  gap: clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line-light);
}

.detail-row::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(223 255 56 / 7%), transparent 55%);
  content: "";
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 0.5s, transform 0.7s var(--ease-out);
}

.detail-row:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.detail-row__number {
  position: relative;
  z-index: 1;
  color: var(--acid);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.detail-row__title,
.detail-row__body {
  position: relative;
  z-index: 1;
}

.detail-row h3 {
  font-size: clamp(36px, 4vw, 68px);
  font-weight: 550;
  letter-spacing: -0.065em;
  line-height: 1.05;
}

.detail-row h3 span {
  display: block;
  margin-top: 12px;
  color: rgb(255 255 255 / 36%);
  font-size: 0.3em;
  letter-spacing: 0.08em;
}

.detail-row__body > p {
  max-width: 620px;
  color: rgb(255 255 255 / 55%);
  font-size: 13px;
  line-height: 2;
}

.detail-row__body ul {
  display: grid;
  margin-top: 38px;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.detail-row__body li {
  padding: 14px 16px;
  color: rgb(255 255 255 / 66%);
  background: var(--ink);
  font-size: 10px;
}

.product-deck {
  display: grid;
  gap: clamp(90px, 12vw, 190px);
  margin-top: clamp(85px, 10vw, 160px);
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  border: 1px solid var(--line-dark);
  background: var(--paper);
  box-shadow: 0 28px 80px rgb(10 11 11 / 7%);
}

.product-feature:nth-child(even) .product-feature__visual {
  grid-column: 2;
  grid-row: 1;
  border-right: 0;
  border-left: 1px solid var(--line-dark);
}

.product-feature:nth-child(even) .product-feature__copy {
  grid-column: 1;
  grid-row: 1;
}

.product-feature__visual {
  position: relative;
  min-height: 760px;
  padding: 70px 24px 24px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  background: #e8edf4;
}

.product-feature__visual::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  background: var(--ink);
  content: "";
}

.product-feature__visual::after {
  position: absolute;
  top: 17px;
  left: 18px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 10px 0 rgb(255 255 255 / 25%), 20px 0 rgb(255 255 255 / 25%), 0 0 10px var(--acid);
  content: "";
}

.product-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.9s var(--ease-out);
}

.product-feature:hover .product-feature__visual img {
  transform: scale(1.025);
}

.product-feature__copy {
  display: flex;
  min-height: 760px;
  padding: clamp(46px, 5vw, 86px);
  flex-direction: column;
}

.product-feature__copy > span {
  color: rgb(10 11 11 / 38%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.product-feature__copy h2 {
  margin-top: 48px;
  font-size: clamp(44px, 5vw, 84px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1;
}

.product-feature__copy h2 small {
  display: block;
  margin-top: 14px;
  color: rgb(10 11 11 / 40%);
  font-size: 0.2em;
  letter-spacing: 0.04em;
}

.product-feature__copy h3 {
  margin-top: 46px;
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.55;
}

.product-feature__copy p {
  margin-top: 24px;
  color: rgb(10 11 11 / 58%);
  font-size: 12px;
  line-height: 2;
}

.product-feature__points {
  display: grid;
  margin: 34px 0 42px;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.product-feature__points li {
  padding: 15px;
  background: var(--paper);
  font-size: 10px;
}

.product-feature .page-button {
  margin-top: auto;
}

.phase-stack {
  margin-top: clamp(90px, 11vw, 180px);
  counter-reset: phase;
}

.phase-panel {
  position: sticky;
  top: 10vh;
  display: grid;
  min-height: 76vh;
  margin-bottom: 12vh;
  padding: clamp(45px, 6vw, 92px);
  overflow: hidden;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
  color: white;
  border: 1px solid rgb(255 255 255 / 15%);
  background: #101212;
  box-shadow: 0 -18px 70px rgb(0 0 0 / 34%);
}

.phase-panel:nth-child(2) { top: 13vh; background: #141717; }
.phase-panel:nth-child(3) { top: 16vh; background: #191c1c; }

.phase-panel::after {
  position: absolute;
  right: -12%;
  bottom: -42%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgb(223 255 56 / 15%);
  border-radius: 50%;
  box-shadow: 0 0 0 5vw rgb(255 255 255 / 2%), 0 0 0 10vw rgb(255 255 255 / 2%);
  content: "";
}

.phase-panel__index {
  color: var(--acid);
  font-size: clamp(100px, 13vw, 220px);
  font-weight: 500;
  letter-spacing: -0.1em;
  line-height: 0.75;
}

.phase-panel__body {
  position: relative;
  z-index: 1;
  align-self: center;
}

.phase-panel__body > span {
  color: var(--acid);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.phase-panel h3 {
  margin-top: 28px;
  font-size: clamp(42px, 5vw, 86px);
  font-weight: 550;
  letter-spacing: -0.07em;
  line-height: 1.05;
}

.phase-panel p {
  max-width: 620px;
  margin-top: 35px;
  color: rgb(255 255 255 / 55%);
  font-size: 13px;
  line-height: 2;
}

.phase-panel ul {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 8px;
}

.phase-panel li {
  padding: 8px 13px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 99px;
  color: rgb(255 255 255 / 60%);
  font-size: 8px;
}

.company-facts {
  display: grid;
  margin-top: clamp(90px, 11vw, 170px);
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 170px);
  align-items: start;
}

.company-message {
  position: sticky;
  top: 110px;
}

.company-message__mark {
  width: min(100%, 320px);
  aspect-ratio: 1;
  padding: 55px;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(circle, var(--acid) 0 3%, transparent 3.2%),
    repeating-radial-gradient(circle, transparent 0 27px, rgb(10 11 11 / 10%) 28px 29px);
}

.company-message__mark svg {
  width: 100%;
  height: 100%;
  fill: var(--ink);
}

.company-message blockquote {
  max-width: 520px;
  margin: 52px 0 0;
  font-size: clamp(25px, 2.5vw, 40px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.045em;
}

.company-message p {
  margin-top: 30px;
  color: rgb(10 11 11 / 55%);
  font-size: 12px;
  line-height: 2;
}

.company-data {
  border-top: 1px solid var(--line-dark);
}

.company-data > div {
  display: grid;
  padding: 28px 0;
  grid-template-columns: 32% 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.company-data dt {
  color: rgb(10 11 11 / 40%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.company-data dd {
  font-size: 13px;
  line-height: 1.9;
}

.company-message-link {
  margin-top: 38px;
}

.message-hero {
  --hero-accent-x: 35%;
}

.message-hero .page-hero__media {
  inset: 0 42% 0 0;
  mask-image: linear-gradient(270deg, transparent, black 38%);
}

.message-layout {
  display: grid;
  grid-template-columns: minmax(280px, 34%) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.message-profile {
  position: sticky;
  top: 100px;
}

.message-profile__visual {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 510px;
  padding: 34px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgb(223 255 56 / 24%), transparent 29%),
    linear-gradient(145deg, #171918, #050606 68%);
}

.message-profile__visual img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 48%;
  filter: saturate(0.76) contrast(1.07) brightness(0.92);
  transform: scale(1.015);
}

.message-profile__visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgb(5 6 6 / 14%) 58%, rgb(5 6 6 / 88%) 100%),
    linear-gradient(90deg, rgb(5 6 6 / 12%), transparent 58%);
  content: "";
}

.message-profile__visual::after {
  position: absolute;
  z-index: 2;
  right: -28%;
  bottom: -20%;
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgb(223 255 56 / 28%);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgb(255 255 255 / 3%), 0 0 0 100px rgb(255 255 255 / 2%);
  content: "";
}

.message-profile__grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(rgb(255 255 255 / 7%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 7%) 1px, transparent 1px);
  background-size: 64px 64px;
}

.message-profile__visual p {
  position: relative;
  z-index: 3;
  max-width: 210px;
  padding-left: 12px;
  border-left: 2px solid var(--acid);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.8;
}

.message-profile__identity {
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.message-profile__identity > span {
  color: rgb(10 11 11 / 40%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.message-profile__identity h2 {
  margin-top: 14px;
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.message-profile__identity p {
  margin-top: 12px;
  color: rgb(10 11 11 / 45%);
  font-size: 10px;
  line-height: 1.7;
}

.message-letter {
  max-width: 820px;
  padding-left: clamp(34px, 5vw, 82px);
  border-left: 1px solid var(--line-dark);
}

.message-letter__head {
  padding-bottom: clamp(58px, 8vw, 110px);
  border-bottom: 1px solid var(--line-dark);
}

.message-letter__head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgb(10 11 11 / 46%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.message-letter__head > span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.message-letter__head h2 {
  margin-top: 30px;
  font-size: clamp(52px, 6.4vw, 96px);
  font-weight: 550;
  letter-spacing: -0.075em;
  line-height: 1.04;
}

.message-letter__head h2 span {
  color: var(--acid-deep);
  font-size: 1.15em;
}

.message-letter__body {
  padding-top: clamp(58px, 8vw, 105px);
}

.message-letter__body > p {
  color: rgb(10 11 11 / 70%);
  font-size: clamp(15px, 1.18vw, 18px);
  letter-spacing: 0.015em;
  line-height: 2.35;
}

.message-letter__body > p + p {
  margin-top: 34px;
}

.message-letter blockquote {
  position: relative;
  margin: clamp(70px, 9vw, 120px) 0;
  padding: clamp(44px, 5vw, 72px);
  overflow: hidden;
  color: white;
  background: var(--ink);
  font-size: clamp(29px, 3.5vw, 52px);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.45;
}

.message-letter blockquote::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 270px;
  aspect-ratio: 1;
  border: 1px solid rgb(223 255 56 / 30%);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgb(255 255 255 / 3%), 0 0 0 88px rgb(255 255 255 / 2%);
  content: "";
}

.message-letter blockquote > span {
  display: block;
  height: 38px;
  color: var(--acid);
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 0.8;
}

.message-signature {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(70px, 9vw, 120px);
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.message-signature span {
  color: rgb(10 11 11 / 40%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.message-signature strong {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 550;
  letter-spacing: 0.04em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: start;
}

.contact-guide {
  position: sticky;
  top: 110px;
}

.contact-guide h2 {
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.contact-guide > p {
  margin-top: 34px;
  color: rgb(10 11 11 / 58%);
  font-size: 13px;
  line-height: 2;
}

.contact-guide__promise {
  display: grid;
  margin-top: 52px;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.contact-guide__promise div {
  display: grid;
  padding: 18px;
  grid-template-columns: 36px 1fr;
  background: var(--paper);
}

.contact-guide__promise span {
  color: rgb(10 11 11 / 35%);
  font-size: 8px;
}

.contact-guide__promise strong {
  font-size: 11px;
  font-weight: 600;
}

.contact-form {
  padding: clamp(36px, 5vw, 75px);
  border: 1px solid var(--line-dark);
  background: #e8e7df;
}

.contact-form__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
  color: rgb(10 11 11 / 42%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.form-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label,
.form-field > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.form-field em {
  margin-left: 7px;
  color: #a43826;
  font-size: 8px;
  font-style: normal;
}

.form-field small {
  margin-left: 7px;
  color: rgb(10 11 11 / 40%);
  font-size: 8px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid rgb(10 11 11 / 18%);
  border-radius: 0;
  color: var(--ink);
  outline: 0;
  background: var(--paper);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 8px 22px rgb(10 11 11 / 8%);
  transform: translateY(-1px);
}

.form-field [aria-invalid="true"] {
  border-color: #a43826;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 28px;
  color: rgb(10 11 11 / 58%);
  font-size: 10px;
  line-height: 1.8;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--ink);
}

.form-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
}

.contact-form__actions p {
  max-width: 260px;
  color: rgb(10 11 11 / 42%);
  font-size: 9px;
  line-height: 1.8;
}

.contact-submit {
  border: 0;
  color: white;
  background: var(--ink);
  cursor: pointer;
}

.contact-submit:hover {
  box-shadow: 0 22px 50px rgb(10 11 11 / 28%);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin-top: 18px;
  padding: 13px 15px;
  font-size: 11px;
  line-height: 1.7;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: #224800;
  background: rgb(135 190 45 / 14%);
}

.form-status.is-error {
  color: #7f281a;
  background: rgb(164 56 38 / 10%);
}

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

.page-cta {
  position: relative;
  padding: clamp(100px, 12vw, 200px) var(--gutter);
  overflow: hidden;
  background: var(--acid);
}

.page-cta::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  content: "";
}

.page-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.page-cta h2 {
  max-width: 1100px;
  font-size: clamp(48px, 7vw, 128px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1.03;
}

.page-cta p {
  margin-top: 30px;
  font-size: 12px;
  line-height: 2;
}

.legal-content {
  max-width: 920px;
  margin-inline: auto;
}

.legal-content section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line-dark);
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  margin-top: 15px;
  color: rgb(10 11 11 / 62%);
  font-size: 13px;
  line-height: 2;
}

.subpage .footer {
  position: relative;
}

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

@media (max-width: 1050px) {
  .product-feature {
    grid-template-columns: 1fr 1fr;
  }

  .product-feature__visual,
  .product-feature__copy {
    min-height: 650px;
  }

  .detail-row {
    grid-template-columns: 12% 34% 1fr;
  }
}

@media (max-width: 760px) {
  .subpage main p {
    text-wrap: pretty;
  }

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

  .page-hero::before {
    background-size: auto, 25vw 25vw, 25vw 25vw;
  }

  .page-hero__media {
    inset: 0;
    opacity: 0.42;
    mask-image: linear-gradient(0deg, transparent, black 60%);
  }

  .page-hero__structure {
    top: 13%;
    right: -34%;
    width: 105vw;
    opacity: 0.44;
  }

  .page-hero__inner {
    min-height: max(680px, 100svh);
    padding: 125px 20px 38px;
    justify-content: flex-end;
  }

  .page-hero__crumb {
    margin-bottom: 24px;
    font-size: 7px;
  }

  .page-hero h1 {
    font-size: clamp(40px, 12.5vw, 58px);
    line-height: 1.02;
    text-wrap: balance;
  }

  .page-hero h1 span {
    white-space: nowrap;
  }

  .page-hero__bottom {
    display: block;
    margin-top: 34px;
  }

  .page-hero__number {
    display: none;
  }

  .page-hero__lead {
    padding-left: 15px;
    font-size: 11px;
    line-height: 1.85;
  }

  .page-hero__rail {
    display: none;
  }

  .page-section {
    padding: 100px 20px;
  }

  .page-section__tag {
    margin-bottom: 60px;
  }

  .page-heading {
    font-size: clamp(35px, 9.8vw, 44px);
    letter-spacing: -0.055em;
    line-height: 1.14;
    text-wrap: balance;
  }

  .page-heading br {
    display: none;
  }

  .page-intro-grid,
  .products__heading,
  .contact-layout,
  .company-facts {
    display: block;
  }

  .page-intro-grid__aside {
    margin-bottom: 32px;
  }

  .page-stat-grid {
    display: block;
  }

  .page-stat,
  .page-stat:first-child {
    min-height: 280px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .page-section--dark .page-stat,
  .page-section--dark .page-stat:first-child {
    border-color: var(--line-light);
  }

  .editorial-grid {
    display: block;
    margin-inline: -20px;
    border-inline: 0;
  }

  .editorial-card {
    min-height: 350px;
    border-bottom: 1px solid var(--line-dark);
  }

  .detail-list {
    margin-inline: -20px;
  }

  .detail-row {
    display: block;
    min-height: 0;
    padding: 48px 20px 58px;
  }

  .detail-row h3 {
    margin-top: 30px;
    font-size: 43px;
  }

  .detail-row__body {
    margin-top: 34px;
  }

  .detail-row__body ul {
    grid-template-columns: 1fr;
  }

  .product-feature,
  .product-feature:nth-child(even) {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-feature__visual,
  .product-feature:nth-child(even) .product-feature__visual {
    grid-column: 1;
    grid-row: 1;
    min-height: 520px;
    padding: 58px 10px 10px;
    border: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .product-feature__copy,
  .product-feature:nth-child(even) .product-feature__copy {
    grid-column: 1;
    grid-row: 2;
    min-height: 620px;
    padding: 44px 20px;
  }

  .product-feature__copy h2 {
    font-size: clamp(38px, 10.5vw, 46px);
    line-height: 1.06;
    text-wrap: balance;
  }

  .product-feature__copy h3 {
    text-wrap: balance;
  }

  .product-feature__copy h3 br {
    display: none;
  }

  .phase-panel {
    top: 74px;
    display: block;
    min-height: 75svh;
    margin-inline: -20px;
    padding: 40px 20px 56px;
  }

  .phase-panel:nth-child(2) { top: 88px; }
  .phase-panel:nth-child(3) { top: 102px; }

  .phase-panel__index {
    font-size: 95px;
  }

  .phase-panel__body {
    margin-top: 55px;
  }

  .phase-panel h3 {
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1.14;
    text-wrap: balance;
  }

  .phase-panel h3 br {
    display: none;
  }

  .company-message,
  .contact-guide {
    position: relative;
    top: auto;
  }

  .message-layout {
    display: block;
  }

  .message-profile {
    position: relative;
    top: auto;
  }

  .message-profile__visual {
    min-height: 390px;
  }

  .message-profile__visual img {
    object-position: 65% 48%;
  }

  .message-profile__identity {
    margin-top: 24px;
  }

  .message-letter {
    max-width: none;
    margin-top: 85px;
    padding-left: 0;
    border-left: 0;
  }

  .message-letter__head h2 {
    font-size: clamp(39px, 10.8vw, 49px);
    line-height: 1.1;
    text-wrap: balance;
  }

  .message-letter__head h2 br {
    display: none;
  }

  .message-letter__body > p {
    font-size: 15px;
    line-height: 2.2;
  }

  .message-letter blockquote {
    margin-inline: -20px;
    padding-inline: 20px;
    font-size: 31px;
  }

  .contact-guide h2 {
    font-size: clamp(35px, 9.8vw, 43px);
    line-height: 1.14;
    text-wrap: balance;
  }

  .contact-guide h2 br {
    display: none;
  }

  .message-signature {
    display: block;
  }

  .message-signature strong {
    display: block;
    margin-top: 14px;
  }

  .company-message__mark {
    width: 220px;
    padding: 40px;
  }

  .company-data {
    margin-top: 75px;
  }

  .company-data > div {
    display: block;
  }

  .company-data dd {
    margin-top: 8px;
  }

  .contact-form {
    margin: 70px -20px 0;
    padding: 38px 20px;
    border-inline: 0;
  }

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

  .form-field--wide {
    grid-column: 1;
  }

  .contact-form__actions {
    display: block;
  }

  .contact-form__actions p {
    margin-bottom: 24px;
  }

  .page-cta {
    padding: 100px 20px;
  }

  .page-cta::before {
    background-size: 25vw 25vw;
  }

  .page-cta__inner {
    display: block;
  }

  .page-cta h2 {
    max-width: 100%;
    font-size: clamp(29px, 8.2vw, 38px);
    letter-spacing: -0.055em;
    line-height: 1.18;
    text-wrap: balance;
  }

  .page-cta h2 br {
    display: none;
  }

  .page-cta .page-button {
    margin-top: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__structure,
  .product-showcase__scan {
    animation: none !important;
  }
}
