:root {
  --paper: #f6f7f4;
  --paper-strong: #ffffff;
  --ink: #111310;
  --muted: #777b75;
  --faint: #a9ada7;
  --line: rgba(17, 19, 16, 0.16);
  --line-strong: rgba(17, 19, 16, 0.36);
  --cyan: #08b8d2;
  --danger: #b42318;
  --page-pad: 42px;
  --header-height: 92px;
  --content-width: 1440px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-ui: "DM Sans", "Noto Sans JP", sans-serif;
  --font-display: "Noto Serif JP", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.home-page {
  height: 100dvh;
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  color: var(--paper-strong);
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  padding: 0;
  background: none;
  border: 0;
}

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

::selection {
  color: var(--paper-strong);
  background: var(--ink);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 8px 12px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.webgl-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.webgl-background.is-ready {
  opacity: 0.8;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  width: 100%;
  min-height: var(--header-height);
  padding: 24px var(--page-pad) 16px;
  pointer-events: none;
}

.site-brand,
.site-nav,
.logo-mark-link,
.menu-toggle {
  pointer-events: auto;
}

.site-brand {
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.site-brand small {
  margin-left: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 44px;
}

.site-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.logo-mark-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
}

.logo-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.menu-toggle .material-symbols-rounded {
  font-size: 26px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  overflow-y: auto;
  padding: 120px 24px 40px;
  color: var(--paper-strong);
  background: rgba(17, 19, 16, 0.98);
}

.mobile-menu nav {
  display: grid;
  gap: 2px;
}

.mobile-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu a span {
  font-family: var(--font-ui);
  font-size: 11px;
}

.home-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  touch-action: none;
  animation: page-in 0.55s var(--ease-out) both;
}

.selector-index {
  position: absolute;
  top: 50%;
  left: var(--page-pad);
  z-index: 4;
  display: grid;
  gap: 18px;
  width: 270px;
  transform: translateY(-50%);
}

.selector-index button {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  width: 100%;
  padding: 5px 0;
  color: var(--faint);
  text-align: left;
  cursor: pointer;
  transition: color 0.45s ease, transform 0.45s var(--ease-out);
}

.selector-index button::before {
  position: absolute;
  left: -18px;
  width: 2px;
  height: 31px;
  content: "";
  background: var(--ink);
  transform: scaleY(0);
  transition: transform 0.45s var(--ease-out);
}

.selector-index button:hover,
.selector-index button:focus-visible {
  color: var(--ink);
}

.selector-index button.is-active {
  color: var(--ink);
  transform: translateX(8px);
}

.selector-index button.is-active::before {
  transform: scaleY(1);
}

.selector-index .number {
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.selector-index .label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.selector-viewport {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
}

.selector-card {
  --y: 0px;
  --scale: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 344px;
  aspect-ratio: 1;
  opacity: 0;
  cursor: pointer;
  outline: none;
  transform: translate3d(-50%, calc(-50% + var(--y)), 0) scale(var(--scale));
  transition:
    transform 0.9s var(--ease-out),
    opacity 0.65s ease,
    filter 0.65s ease;
  will-change: transform, opacity;
}

.selector-card.is-recycling {
  transition: none;
}

.selector-card::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(17, 19, 16, 0.08);
  pointer-events: none;
}

.selector-card.is-active {
  z-index: 5;
  opacity: 1;
  filter: none;
}

.selector-card.is-adjacent {
  z-index: 3;
  opacity: 0.44;
  filter: grayscale(1) contrast(0.82);
}

.selector-card.is-distant {
  z-index: 2;
  opacity: 0.12;
  filter: grayscale(1) contrast(0.75);
}

.selector-card canvas,
.selector-card .object-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.46);
}

.selector-card .card-label {
  position: absolute;
  top: 14px;
  right: 15px;
  z-index: 2;
  color: rgba(17, 19, 16, 0.58);
  font-size: 9px;
  text-transform: uppercase;
}

.selector-meta {
  position: absolute;
  top: 50%;
  right: var(--page-pad);
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 78px;
  align-items: end;
  gap: 36px;
  width: min(32vw, 470px);
  transform: translateY(-50%);
}

.selector-meta-copy {
  min-height: 160px;
}

.selector-meta-copy .eyebrow {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.selector-meta-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.7;
}

.selector-meta-copy p {
  max-width: 360px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.selector-count {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  line-height: 1;
}

.selector-count strong {
  font-size: 58px;
  font-weight: 400;
}

.selector-count span {
  font-size: 12px;
}

.home-footnote {
  position: absolute;
  right: var(--page-pad);
  bottom: 27px;
  left: var(--page-pad);
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--ink);
  font-size: 10px;
  text-transform: uppercase;
  pointer-events: none;
}

.scroll-cue {
  display: grid;
  gap: 7px;
}

.scroll-cue::after {
  width: 1px;
  height: 28px;
  content: "";
  background: var(--ink);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

.page-main {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow: clip;
  animation: page-in 0.55s var(--ease-out) both;
}

.page-wrap {
  width: min(var(--content-width), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(300px, 4fr);
  align-items: center;
  gap: 72px;
  min-height: 82vh;
  padding: 150px 0 90px;
}

.page-hero-copy {
  align-self: center;
}

.page-index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 54px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.page-index::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--ink);
}

.display-title {
  max-width: 970px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 400;
  line-height: 1.5;
}

.display-title.is-compact {
  font-size: 60px;
}

.hero-lead {
  max-width: 680px;
  margin: 35px 0 0;
  color: #51554f;
  font-size: 15px;
  line-height: 2.1;
}

.hero-art {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  justify-self: end;
}

.hero-art canvas,
.hero-art .object-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.3);
}

.section-band {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 3fr 8fr 1fr;
  gap: 30px;
  margin-bottom: 72px;
}

.section-number,
.section-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.65;
}

.prose-grid {
  display: grid;
  grid-template-columns: 3fr 5fr 4fr;
  gap: 30px;
}

.prose-grid p {
  margin: 0;
  color: #4f534d;
  font-size: 15px;
  line-height: 2.1;
}

.prose-grid p:first-child {
  grid-column: 2;
}

.prose-grid p:last-child {
  grid-column: 3;
}

.business-map {
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  min-height: 460px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.business-side {
  display: grid;
  grid-template-rows: auto 1fr;
}

.business-side h3 {
  margin: 0;
  padding: 21px 12px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.business-side ul {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  margin: 0;
  padding: 0 12px;
  list-style: none;
}

.business-side li {
  display: flex;
  align-items: center;
  min-height: 76px;
  font-family: var(--font-display);
  font-size: 19px;
  border-bottom: 1px solid var(--line);
}

.business-side li:last-child {
  border-bottom: 0;
}

.business-side li::before {
  width: 6px;
  height: 6px;
  margin-right: 22px;
  content: "";
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.business-core {
  position: relative;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.business-core::before,
.business-core::after {
  position: absolute;
  content: "";
  background: var(--line-strong);
}

.business-core::before {
  width: 1px;
  height: 72%;
}

.business-core::after {
  width: 72%;
  height: 1px;
}

.business-core-label {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 84px;
  aspect-ratio: 1;
  padding: 10px;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
  background: var(--paper);
  border: 1px solid var(--line-strong);
}

.business-core-label::after {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--cyan);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.process-line li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 11px;
  text-transform: uppercase;
}

.process-line li:not(:last-child)::after {
  flex: 1;
  height: 1px;
  margin: 0 28px;
  content: "";
  background: var(--line-strong);
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.service-list li {
  display: grid;
  grid-template-columns: 80px 3fr 5fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-list .service-no {
  color: var(--muted);
  font-size: 11px;
}

.service-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}

.service-list p {
  max-width: 650px;
  margin: 0;
  color: #575b55;
  font-size: 13px;
  line-height: 1.95;
}

.company-capabilities-hero {
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  align-items: center;
  min-height: 100vh;
}

.company-capabilities-hero .hero-lead {
  max-width: 820px;
  margin-top: 30px;
  font-size: 14px;
}

.mobile-title-line {
  display: inline;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 840px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.capability-tags li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 7px 14px 7px 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 16, 0.28);
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(17, 19, 16, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.capability-tags li span {
  display: grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--paper-strong);
  font-size: 8px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  background: var(--ink);
  border-radius: 2px;
}

.capability-tags li.is-primary {
  color: var(--paper-strong);
  background: rgba(17, 19, 16, 0.94);
  border-color: var(--ink);
  box-shadow: 0 10px 26px rgba(17, 19, 16, 0.12);
}

.capability-tags li.is-primary span {
  color: var(--ink);
  background: var(--cyan);
}

.company-character-intro {
  display: grid;
  grid-template-columns: 3fr 5fr 4fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 96px;
}

.company-character-intro p {
  margin: 0;
}

.company-character-statement {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.8;
}

.company-character-intro p:last-child {
  grid-column: 3;
  color: #4f534d;
  font-size: 14px;
  line-height: 2.1;
}

.company-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line-strong);
}

.company-feature {
  display: grid;
  grid-template-columns: 80px minmax(260px, 4fr) minmax(0, 7fr);
  gap: 30px;
  align-items: start;
  padding: 42px 0;
  border-top: 1px solid var(--line-strong);
}

.company-feature-no {
  padding-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.company-feature h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.75;
}

.company-feature p {
  max-width: 760px;
  margin: 0;
  color: #50544e;
  font-size: 14px;
  line-height: 2.05;
}

.company-manifesto {
  max-width: 1040px;
  margin: 0 0 110px auto;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.8;
}

.company-profile {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 60px;
}

.company-profile h2 {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.profile-list {
  margin: 0;
}

.profile-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.profile-row:last-child {
  border-bottom: 1px solid var(--line);
}

.profile-row dt,
.profile-row dd {
  margin: 0;
}

.profile-row dt {
  color: var(--muted);
  font-size: 12px;
}

.profile-row dd {
  font-size: 14px;
}

.news-intro {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-strong);
}

.news-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
}

.news-intro p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

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

.news-item {
  display: grid;
  grid-template-columns: 140px 160px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.news-item time,
.news-item .news-category {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.news-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}

.news-item p {
  max-width: 720px;
  margin: 0;
  color: #595d57;
  font-size: 13px;
  line-height: 1.9;
  white-space: pre-line;
}

.news-content {
  min-width: 0;
}

a.news-content {
  position: relative;
  display: block;
  padding-right: 72px;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  transition: color 0.35s ease, transform 0.35s var(--ease-out);
}

.news-read-more .material-symbols-rounded {
  font-size: 16px;
}

a.news-content:hover .news-read-more,
a.news-content:focus-visible .news-read-more {
  color: var(--ink);
  transform: translateX(5px);
}

.news-empty {
  padding: 38px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.home-news {
  position: absolute;
  right: var(--page-pad);
  bottom: 90px;
  z-index: 7;
  width: min(42vw, 590px);
  pointer-events: auto;
}

.home-news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.home-news-head span,
.home-news-head a {
  font-size: 9px;
  text-transform: uppercase;
}

.home-news .news-item {
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 10px 0;
}

.home-news .news-category,
.home-news .news-item p {
  display: none;
}

.home-news .news-item h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 11px;
}

.home-news .news-content {
  padding-right: 0;
}

.home-news .news-read-more {
  display: none;
}

.news-hub-hero .hero-art {
  width: min(100%, 470px);
}

.news-portals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.news-portal {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid var(--line-strong);
  transition: color 0.45s ease, background-color 0.45s ease;
}

.news-portal:last-child {
  border-right: 0;
}

.news-portal::before {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s var(--ease-out);
}

.news-portal:hover::before,
.news-portal:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.news-portal.is-press {
  color: var(--paper-strong);
  background: var(--ink);
}

.news-portal-no {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.news-portal.is-press .news-portal-no,
.news-portal.is-press > span:not(.material-symbols-rounded) {
  color: rgba(255, 255, 255, 0.58);
}

.news-portal strong {
  align-self: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
}

.news-portal > span:nth-of-type(2) {
  max-width: 320px;
  color: var(--muted);
  font-size: 12px;
}

.news-portal > .material-symbols-rounded {
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-size: 25px;
}

.news-category-hero {
  display: grid;
  grid-template-columns: 3fr 7fr 2fr;
  align-items: end;
  gap: 40px;
  min-height: 62vh;
  padding: 170px 0 100px;
}

.news-category-hero .page-index,
.news-category-hero .text-link {
  margin: 0;
}

.news-category-hero .text-link {
  justify-self: end;
}

.news-article-wrap {
  max-width: 1220px;
}

.news-article {
  padding: 150px 0 120px;
}

.news-article-header {
  padding-bottom: 68px;
  border-bottom: 1px solid var(--line-strong);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 72px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.article-breadcrumb a:hover,
.article-breadcrumb a:focus-visible {
  color: var(--ink);
}

.news-article-heading {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
}

.article-meta {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.news-article-heading h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.article-lead {
  grid-column: 2;
  max-width: 760px;
  margin: 28px 0 0;
  color: #565a54;
  font-size: 15px;
  line-height: 2.05;
}

.article-hero-image {
  width: 100%;
  max-height: 720px;
  margin: 70px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.article-hero-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  gap: 40px;
  justify-content: start;
  padding: 84px 0;
}

.article-side {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.article-side strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.article-side a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 22px;
  color: var(--ink);
}

.article-side .material-symbols-rounded {
  font-size: 15px;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin: 76px 0 24px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.7;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  margin: 0 0 28px;
  color: #41453f;
  font-size: 15px;
  line-height: 2.15;
  overflow-wrap: anywhere;
}

.article-body blockquote {
  margin: 54px 0;
  padding: 8px 0 8px 30px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.9;
  border-left: 2px solid var(--cyan);
}

.article-body figure {
  margin: 58px 0;
}

.article-body figure img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.38);
}

.article-body figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
}

.article-footer {
  padding-top: 36px;
  border-top: 1px solid var(--line-strong);
}

.contact-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 80px;
  padding: 160px 0 120px;
}

.contact-copy h1 {
  margin: 0 0 36px;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-copy p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  border-top: 1px solid var(--line-strong);
}

.form-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.form-row label {
  padding-top: 11px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-width: 0;
  padding: 8px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  box-shadow: inset 0 -1px var(--cyan);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #a2a69f;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.privacy-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

.privacy-box input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--ink);
}

.privacy-details {
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
  border-bottom: 1px solid var(--line);
}

.privacy-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  cursor: pointer;
}

.privacy-details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 18px;
  line-height: 1.9;
}

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
}

.submit-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  min-width: 190px;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid var(--ink);
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.submit-button .material-symbols-rounded {
  margin-left: auto;
  font-size: 19px;
}

.form-message {
  margin: 0;
  font-size: 12px;
}

.form-message.is-error {
  color: var(--danger);
}

.coming-main {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 130px var(--page-pad) 60px;
  animation: page-in 0.55s var(--ease-out) both;
}

.coming-content {
  display: grid;
  grid-template-columns: minmax(250px, 430px) minmax(280px, 620px);
  align-items: center;
  gap: 100px;
  width: min(1120px, 100%);
}

.coming-art {
  aspect-ratio: 1;
}

.coming-art canvas,
.coming-art .object-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.3);
}

.coming-copy .page-index {
  margin-bottom: 40px;
}

.coming-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.45;
}

.coming-copy p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  font-size: 12px;
  text-transform: uppercase;
}

.text-link .material-symbols-rounded {
  font-size: 18px;
}

/* Products */
.products-overview-hero {
  min-height: 100vh;
  padding: 142px 0 86px;
}

.products-overview-heading {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(260px, 4fr);
  align-items: end;
  gap: 60px;
}

.products-overview-heading .page-index {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.products-overview-heading h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.55;
}

.products-overview-heading > p:last-child {
  max-width: 480px;
  margin: 0 0 10px;
  color: #51554f;
  font-size: 14px;
  line-height: 2;
}

.product-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.product-overview-item {
  min-width: 0;
  padding: 30px 34px 32px;
  transition: background-color 0.45s ease;
}

.product-overview-item:not(:last-child) {
  border-right: 1px solid var(--line-strong);
}

.product-overview-item:hover,
.product-overview-item:focus-visible {
  background: rgba(255, 255, 255, 0.34);
  outline: none;
}

.product-overview-visual,
.product-screen {
  position: relative;
  margin: 0;
}

.product-overview-visual {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.product-overview-visual picture,
.product-overview-visual img,
.product-screen picture,
.product-screen img {
  width: 100%;
  height: 100%;
}

.product-overview-visual img,
.product-screen img {
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(17, 19, 16, 0.08));
  transition: transform 0.8s var(--ease-out);
}

.product-overview-item:hover .product-overview-visual img,
.product-overview-item:focus-visible .product-overview-visual img {
  transform: scale(1.018);
}

.product-overview-visual--line img,
.product-screen--line img {
  transform: scale(1.14);
}

.product-overview-visual--decision img {
  transform: scale(1.04);
}

.product-overview-item:hover .product-overview-visual--line img,
.product-overview-item:focus-visible .product-overview-visual--line img {
  transform: scale(1.17);
}

.product-overview-item:hover .product-overview-visual--decision img,
.product-overview-item:focus-visible .product-overview-visual--decision img {
  transform: scale(1.065);
}

.product-overview-visual figcaption,
.product-screen figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 2px 7px;
  color: rgba(17, 19, 16, 0.68);
  font-size: 8px;
  line-height: 1.5;
  text-transform: uppercase;
  background: rgba(246, 247, 244, 0.82);
  border: 1px solid rgba(17, 19, 16, 0.12);
  backdrop-filter: blur(8px);
}

.product-overview-copy {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 42px;
  align-items: end;
  gap: 22px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.product-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  line-height: 1;
}

.product-category {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
  text-transform: uppercase;
}

.product-category span {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 6px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.product-overview-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.55;
}

.product-overview-copy div > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.product-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  font-size: 20px;
  border: 1px solid var(--line-strong);
  transition: color 0.35s ease, background-color 0.35s ease, transform 0.35s var(--ease-out);
}

.product-overview-item:hover .product-arrow,
.product-overview-item:focus-visible .product-arrow {
  color: var(--paper-strong);
  background: var(--ink);
  transform: translateX(4px);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(360px, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 64px;
  min-height: 92vh;
  padding: 138px 0 72px;
}

.product-detail-hero-copy .page-index {
  margin-bottom: 38px;
}

.product-detail-hero-copy h1 {
  max-width: 660px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  line-height: 1.65;
}

.product-detail-hero-copy > p:last-of-type {
  max-width: 520px;
  margin: 28px 0 0;
  color: #51554f;
  font-size: 14px;
  line-height: 2.05;
}

.product-badge {
  display: inline-block;
  margin: 0 0 22px;
  padding: 5px 11px;
  font-size: 10px;
  line-height: 1.5;
  border: 1px solid var(--line-strong);
}

.outline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 218px;
  margin-top: 38px;
  padding: 13px 16px 13px 19px;
  font-size: 12px;
  border: 1px solid var(--line-strong);
  transition: color 0.35s ease, background-color 0.35s ease;
}

.outline-cta .material-symbols-rounded {
  font-size: 18px;
  transition: transform 0.35s var(--ease-out);
}

.outline-cta:hover,
.outline-cta:focus-visible {
  color: var(--paper-strong);
  background: var(--ink);
  outline: none;
}

.outline-cta:hover .material-symbols-rounded,
.outline-cta:focus-visible .material-symbols-rounded {
  transform: translateX(4px);
}

.product-hero-screen {
  width: min(100%, 810px);
  aspect-ratio: 3 / 2;
  justify-self: end;
}

.product-principle {
  padding: 38px 0 0;
  border-top: 1px solid var(--line-strong);
}

.product-principle h2 {
  margin: 0 0 34px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.65;
}

.product-principle ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
}

.product-principle li {
  position: relative;
  min-height: 105px;
  padding: 20px 30px 20px 22px;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.55;
  border-right: 1px solid var(--line);
}

.product-principle li:last-child {
  border-right: 0;
}

.product-principle li span {
  display: block;
  margin-bottom: 15px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 9px;
}

.product-principle li:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: 16px;
  z-index: 2;
  content: "arrow_forward";
  color: var(--muted);
  font-family: "Material Symbols Rounded";
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}

.product-section {
  padding: 112px 0;
  border-top: 1px solid var(--line-strong);
}

.product-principle + .product-section {
  border-top: 0;
}

.product-section-heading {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 30px;
  margin-bottom: 68px;
}

.product-section-heading > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.product-section-heading h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.7;
}

.product-overview-prose {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 30px;
}

.product-overview-prose > p,
.product-overview-prose .product-scope-list {
  grid-column: 2;
}

.product-overview-prose > p {
  max-width: 940px;
  margin: 0;
  color: #41453f;
  font-size: 22px;
  font-weight: 600;
  line-height: 2;
}

.product-scope-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.product-scope-list div {
  padding: 17px 18px 18px;
  border-right: 1px solid var(--line);
}

.product-scope-list div:last-child {
  border-right: 0;
}

.product-scope-list dt {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.product-scope-list dd {
  margin: 7px 0 0;
  font-family: var(--font-display);
  font-size: 17px;
}

.product-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 8fr);
  align-items: center;
  gap: 64px;
}

.product-story-copy p {
  margin: 0;
  color: #41453f;
  font-size: 14px;
  line-height: 2.2;
}

.product-story-grid .product-screen {
  aspect-ratio: 3 / 2;
}

.product-problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.product-problem-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 19px 28px 19px 0;
  border-bottom: 1px solid var(--line);
}

.product-problem-list li:nth-child(odd) {
  padding-right: 36px;
  border-right: 1px solid var(--line);
}

.product-problem-list li:nth-child(even) {
  padding-left: 36px;
}

.product-problem-list span {
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.product-problem-list p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.7;
}

.onboarding-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.onboarding-flow li {
  position: relative;
  min-height: 230px;
  padding: 25px 25px 26px;
  border-right: 1px solid var(--line);
}

.onboarding-flow li:last-child {
  border-right: 0;
}

.onboarding-flow li > span {
  display: block;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.onboarding-flow h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.onboarding-flow p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.onboarding-flow li:not(:last-child)::after {
  position: absolute;
  top: 30px;
  right: 18px;
  content: "arrow_forward";
  color: var(--muted);
  font-family: "Material Symbols Rounded";
  font-size: 17px;
  font-weight: 300;
}

.product-trademark {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.product-safety-note {
  max-width: 940px;
  margin: 28px 0 0 25%;
  padding: 12px 0 12px 18px;
  color: #51554f;
  font-size: 12px;
  line-height: 1.9;
  border-left: 2px solid var(--cyan);
}

.product-contact-band {
  position: relative;
  z-index: 2;
  padding: 92px 0;
  color: var(--paper-strong);
  background: #0d0f0e;
}

.product-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  align-items: end;
  gap: 70px;
}

.product-contact-inner > div > p:first-child {
  margin: 0 0 29px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  text-transform: uppercase;
}

.product-contact-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.7;
}

.product-contact-inner > div > p:last-child {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 2;
}

.product-contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  color: var(--paper-strong);
  font-size: 13px;
  border: 1px solid var(--cyan);
  transition: color 0.35s ease, background-color 0.35s ease;
}

.product-contact-cta .material-symbols-rounded {
  font-size: 19px;
  transition: transform 0.35s var(--ease-out);
}

.product-contact-cta:hover,
.product-contact-cta:focus-visible {
  color: var(--ink);
  background: var(--cyan);
  outline: none;
}

.product-contact-cta:hover .material-symbols-rounded,
.product-contact-cta:focus-visible .material-symbols-rounded {
  transform: translateX(4px);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 45px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a,
.copyright {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease-out);
}

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

@keyframes page-in {
  from { opacity: 0; transform: scale(1.008); }
}

@media (max-width: 1180px) {
  :root {
    --page-pad: 28px;
  }

  .selector-card {
    width: 300px;
  }

  .selector-index {
    width: 235px;
  }

  .selector-meta {
    grid-template-columns: minmax(220px, 1fr) 64px;
    gap: 26px;
    width: 32vw;
  }

  .selector-meta-copy h1 {
    font-size: 26px;
  }

  .selector-count strong {
    font-size: 44px;
  }

  .display-title {
    font-size: 56px;
  }

  .products-overview-heading h1 {
    font-size: 50px;
  }

  .product-overview-item {
    padding-right: 24px;
    padding-left: 24px;
  }

  .product-overview-copy {
    grid-template-columns: 42px minmax(0, 1fr) 36px;
    gap: 12px;
  }

  .product-number {
    font-size: 34px;
  }

  .product-overview-copy h2 {
    font-size: 20px;
  }

  .product-detail-hero {
    grid-template-columns: minmax(330px, 5fr) minmax(0, 7fr);
    gap: 40px;
  }

  .product-detail-hero-copy h1 {
    font-size: 46px;
  }

  .product-principle li {
    padding-right: 18px;
    padding-left: 18px;
    font-size: 15px;
  }
}

@media (max-width: 820px) {
  :root {
    --page-pad: 20px;
    --header-height: 80px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    align-items: start;
    min-height: var(--header-height);
    padding-top: 18px;
  }

  .site-brand {
    font-size: 21px;
  }

  .site-brand small,
  .site-nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .logo-mark-link {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .selector-index {
    display: none;
  }

  .selector-viewport {
    top: 76px;
    bottom: 230px;
  }

  .selector-card {
    top: 47%;
    width: min(58vw, 260px);
  }

  .selector-card .card-label {
    font-size: 8px;
  }

  .selector-meta {
    top: auto;
    right: var(--page-pad);
    bottom: 58px;
    left: var(--page-pad);
    grid-template-columns: 1fr auto;
    gap: 18px;
    width: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line-strong);
    transform: none;
  }

  .selector-meta-copy {
    min-height: 0;
  }

  .selector-meta-copy .eyebrow {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .selector-meta-copy h1 {
    font-size: 20px;
    line-height: 1.55;
  }

  .selector-meta-copy p {
    display: none;
  }

  .selector-count strong {
    font-size: 34px;
  }

  .selector-count span {
    font-size: 9px;
  }

  .home-footnote {
    right: var(--page-pad);
    bottom: 12px;
    left: var(--page-pad);
    font-size: 8px;
  }

  .scroll-cue::after {
    height: 15px;
  }

  .home-news {
    display: none;
  }

  .page-wrap {
    width: calc(100% - (var(--page-pad) * 2));
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 60px;
    min-height: auto;
    padding: 128px 0 86px;
  }

  .page-index {
    margin-bottom: 34px;
  }

  .display-title,
  .display-title.is-compact {
    font-size: 39px;
    line-height: 1.62;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 14px;
    line-height: 2;
  }

  .hero-art {
    width: min(86vw, 390px);
    justify-self: center;
  }

  .news-hub-hero {
    gap: 36px;
    padding-bottom: 42px;
  }

  .news-hub-hero .hero-art {
    width: min(78vw, 320px);
  }

  .news-gateway {
    padding-top: 42px;
  }

  .section-band {
    padding: 82px 0;
  }

  .section-heading-row {
    grid-template-columns: 44px 1fr;
    gap: 15px;
    margin-bottom: 50px;
  }

  .section-kicker {
    display: none;
  }

  .section-heading {
    font-size: 30px;
    line-height: 1.7;
  }

  .prose-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .prose-grid p:first-child,
  .prose-grid p:last-child {
    grid-column: 1;
  }

  .business-map {
    grid-template-columns: 1fr;
  }

  .business-core {
    min-height: 150px;
    border: 0;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
  }

  .business-core::before {
    width: 1px;
    height: 80%;
  }

  .business-core::after {
    width: 80%;
    height: 1px;
  }

  .business-side li {
    min-height: 64px;
    font-size: 17px;
  }

  .process-line {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .process-line li {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .process-line li:not(:last-child)::after {
    display: none;
  }

  .service-list li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .service-list p {
    grid-column: 2;
  }

  .company-capabilities-hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding-bottom: 70px;
  }

  .company-capabilities-hero .display-title {
    font-size: 39px;
    line-height: 1.55;
  }

  .mobile-title-line {
    display: block;
  }

  .company-capabilities-hero .hero-lead {
    margin-top: 25px;
    font-size: 13px;
    line-height: 2;
  }

  .company-capabilities-hero .hero-art {
    width: min(74vw, 300px);
  }

  .capability-tags {
    gap: 7px;
    margin-top: 26px;
  }

  .capability-tags li {
    gap: 7px;
    min-height: 36px;
    padding: 5px 10px 5px 5px;
    font-size: 10px;
  }

  .capability-tags li span {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .company-character-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 58px;
  }

  .company-character-statement,
  .company-character-intro p:last-child {
    grid-column: 1;
  }

  .company-character-statement {
    font-size: 25px;
    line-height: 1.85;
  }

  .company-character-intro p:last-child {
    font-size: 13px;
    line-height: 2;
  }

  .company-feature {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 30px 0;
  }

  .company-feature-no {
    grid-column: 1;
    grid-row: 1;
  }

  .company-feature h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 19px;
    line-height: 1.75;
  }

  .company-feature p {
    grid-column: 2;
    grid-row: 2;
    font-size: 13px;
    line-height: 2;
  }

  .company-manifesto {
    margin-bottom: 72px;
    font-size: 30px;
    line-height: 1.8;
  }

  .company-profile,
  .news-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .company-profile {
    gap: 32px;
  }

  .profile-row {
    grid-template-columns: 100px 1fr;
    gap: 18px;
  }

  .news-intro {
    gap: 24px;
  }

  .news-intro h2 {
    font-size: 30px;
  }

  .news-item {
    grid-template-columns: 90px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .news-item .news-category {
    grid-column: 1;
    grid-row: 2;
  }

  .news-item .news-content {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .news-item h3 {
    font-size: 18px;
  }

  a.news-content {
    padding-right: 0;
  }

  .news-portals {
    grid-template-columns: 1fr;
  }

  .news-portal {
    min-height: 250px;
    padding: 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .news-portal:last-child {
    border-bottom: 0;
  }

  .news-portal strong {
    font-size: 27px;
  }

  .news-category-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 130px 0 76px;
  }

  .news-category-hero .text-link {
    justify-self: start;
  }

  .news-article {
    padding: 124px 0 80px;
  }

  .article-breadcrumb {
    margin-bottom: 48px;
  }

  .news-article-heading,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-article-heading h1 {
    font-size: 32px;
    line-height: 1.7;
  }

  .article-lead {
    grid-column: 1;
    margin-top: 6px;
    font-size: 14px;
  }

  .article-hero-image {
    margin-top: 46px;
  }

  .article-layout {
    padding: 58px 0;
  }

  .article-side {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
  }

  .article-body h2 {
    margin-top: 58px;
    font-size: 25px;
  }

  .article-body p {
    font-size: 14px;
  }

  .article-body blockquote {
    margin: 42px 0;
    padding-left: 20px;
    font-size: 20px;
  }

  .contact-layout {
    gap: 68px;
    padding: 126px 0 80px;
  }

  .contact-copy h1 {
    font-size: 42px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-row label {
    padding: 0;
  }

  .submit-row {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .submit-button {
    width: 100%;
  }

  .coming-main {
    padding: 116px var(--page-pad) 50px;
  }

  .coming-content {
    grid-template-columns: 1fr;
    gap: 45px;
    max-width: 540px;
  }

  .coming-art {
    width: min(72vw, 300px);
    justify-self: center;
  }

  .coming-copy .page-index {
    margin-bottom: 24px;
  }

  .coming-copy h1 {
    font-size: 39px;
  }

  .products-overview-hero {
    min-height: auto;
    padding: 126px 0 72px;
  }

  .products-overview-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .products-overview-heading .page-index {
    grid-column: 1;
    margin-bottom: 6px;
  }

  .products-overview-heading h1 {
    font-size: 39px;
    line-height: 1.65;
  }

  .products-overview-heading > p:last-child {
    max-width: 560px;
    margin: 0;
    font-size: 13px;
  }

  .product-overview-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .product-overview-item {
    padding: 22px 0 26px;
  }

  .product-overview-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .product-overview-copy {
    grid-template-columns: 44px minmax(0, 1fr) 38px;
    gap: 12px;
    padding-top: 20px;
  }

  .product-number {
    font-size: 31px;
  }

  .product-category span {
    display: block;
    width: fit-content;
    margin: 5px 0 0;
  }

  .product-overview-copy h2 {
    font-size: 20px;
  }

  .product-overview-copy div > p:last-child {
    font-size: 11px;
  }

  .product-arrow {
    width: 38px;
    height: 38px;
  }

  .product-detail-hero {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
    padding: 126px 0 70px;
  }

  .product-detail-hero-copy .page-index {
    margin-bottom: 32px;
  }

  .product-detail-hero-copy h1 {
    font-size: 39px;
    line-height: 1.68;
  }

  .decision-desk-page .product-detail-hero-copy h1 {
    font-size: 35px;
  }

  .product-detail-hero-copy > p:last-of-type {
    margin-top: 23px;
    font-size: 13px;
    line-height: 2;
  }

  .outline-cta {
    width: 100%;
    margin-top: 30px;
  }

  .product-hero-screen {
    width: calc(100% + 16px);
    max-width: 680px;
    margin-left: -8px;
    justify-self: center;
  }

  .product-principle {
    padding-top: 30px;
  }

  .product-principle h2 {
    margin-bottom: 27px;
    font-size: 24px;
    line-height: 1.75;
  }

  .product-principle ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-principle li {
    min-height: 95px;
    padding: 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }

  .product-principle li:nth-child(2) {
    border-right: 0;
  }

  .product-principle li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .product-principle li::after {
    display: none;
  }

  .product-principle li span {
    margin-bottom: 11px;
  }

  .product-section {
    padding: 78px 0;
  }

  .product-section-heading {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 15px;
    margin-bottom: 45px;
  }

  .product-section-heading > p {
    margin-top: 7px;
    font-size: 8px;
  }

  .product-section-heading h2 {
    font-size: 29px;
    line-height: 1.75;
  }

  .product-overview-prose {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-overview-prose > p,
  .product-overview-prose .product-scope-list {
    grid-column: 1;
  }

  .product-overview-prose > p {
    font-size: 20px;
    line-height: 2;
  }

  .product-scope-list {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .product-scope-list div {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-scope-list div:last-child {
    border-bottom: 0;
  }

  .product-scope-list dd {
    margin: 0;
    font-size: 15px;
  }

  .product-story-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-story-copy p {
    font-size: 13px;
    line-height: 2.1;
  }

  .product-story-grid .product-screen {
    width: calc(100% + 16px);
    margin-left: -8px;
  }

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

  .product-problem-list li,
  .product-problem-list li:nth-child(odd),
  .product-problem-list li:nth-child(even) {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    min-height: 84px;
    padding: 16px 0;
    border-right: 0;
  }

  .product-problem-list p {
    font-size: 16px;
    line-height: 1.7;
  }

  .onboarding-flow {
    grid-template-columns: 1fr;
  }

  .onboarding-flow li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .onboarding-flow li:last-child {
    border-bottom: 0;
  }

  .onboarding-flow li > span {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 5px 0 0;
  }

  .onboarding-flow h3,
  .onboarding-flow p {
    grid-column: 2;
  }

  .onboarding-flow h3 {
    font-size: 18px;
  }

  .onboarding-flow p {
    margin-top: 10px;
  }

  .onboarding-flow li::after {
    display: none;
  }

  .product-contact-band {
    padding: 72px 0;
  }

  .product-contact-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-contact-inner h2 {
    font-size: 29px;
    line-height: 1.75;
  }

  .product-contact-inner > div > p:last-child {
    font-size: 12px;
  }

  .product-contact-cta {
    width: 100%;
  }

  .product-safety-note {
    margin: 24px 0 0;
    font-size: 11px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 360px) {
  .decision-desk-page .product-detail-hero-copy h1 {
    font-size: 31px;
  }
}

@media (max-height: 700px) and (min-width: 821px) {
  .selector-card {
    width: 270px;
  }

  .selector-meta-copy h1 {
    font-size: 24px;
  }

  .home-news {
    display: none;
  }
}

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