@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap");

:root {
  --navy-950: #06131f;
  --navy-900: #091c2b;
  --navy-800: #102a3d;
  --teal-600: #0e9f91;
  --teal-500: #18b7a7;
  --teal-400: #35cdbb;
  --gold-500: #c6a052;
  --paper: #f7f8f5;
  --white: #fff;
  --ink: #101a22;
  --muted: #62717c;
  --line: #dbe2e5;
  --font-display: "Sora", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --shell: 90rem;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--navy-950);
  transform: translateY(-200%);
}

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

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.reading-width {
  max-width: 50rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: -.045em;
}

p {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.5rem;
  color: var(--teal-600);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.7rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--teal-400);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .8rem 1.35rem;
  border: 1px solid var(--teal-500);
  border-radius: .35rem;
  background: var(--teal-500);
  color: var(--navy-950);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s, border-color .2s, transform .2s;
}

.button:hover {
  border-color: var(--teal-400);
  background: var(--teal-400);
  transform: translateY(-2px);
}

.button--small {
  min-height: 2.75rem;
  padding-inline: 1rem;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 700;
  text-underline-offset: .35rem;
}

.text-link span {
  transition: transform .2s;
}

.text-link:hover span {
  transform: translateX(.25rem);
}

.text-link--light {
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  transition: background-color .25s, border-color .25s;
}

.site-header.is-scrolled,
.admin-bar .site-header.is-scrolled {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(6, 19, 31, .96);
  backdrop-filter: blur(14px);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--white);
  text-decoration: none;
}

.brand__mark {
  width: 2.5rem;
  color: var(--teal-400);
}

.brand__mark svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.zss-logo__outer,
.brand__mark .zss-logo__outer,
.hero-system__mark .zss-logo__outer {
  fill: currentColor;
  stroke: none;
}

.zss-logo__inner,
.brand__mark .zss-logo__inner,
.hero-system__mark .zss-logo__inner {
  fill: var(--navy-950);
  stroke: none;
}

.zss-logo__node,
.zss-logo__signal-dot,
.brand__mark .zss-logo__node,
.brand__mark .zss-logo__signal-dot,
.hero-system__mark .zss-logo__node,
.hero-system__mark .zss-logo__signal-dot {
  fill: var(--teal-400);
  stroke: none;
}

.zss-logo__signal,
.brand__mark .zss-logo__signal,
.hero-system__mark .zss-logo__signal {
  fill: none;
  stroke: var(--teal-400);
  stroke-linecap: round;
}

.brand__words {
  display: grid;
}

.brand__words strong {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: -.02em;
}

.brand__words small {
  color: rgba(255, 255, 255, .5);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a {
  color: rgba(255, 255, 255, .74);
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav__list a:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: auto -10% -45% 38%;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  background: rgba(24, 183, 167, .08);
  filter: blur(110px);
  content: "";
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.1fr) minmax(25rem, .9fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: 9rem 7rem;
}

.hero__content {
  max-width: 51rem;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 7vw, 7.4rem);
  font-weight: 600;
}

.hero h1 em {
  color: var(--teal-400);
  font-style: normal;
}

.hero__lead {
  max-width: 38rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.4rem;
}

.hero-system {
  position: relative;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .035);
}

.hero-system::before,
.hero-system::after {
  position: absolute;
  width: .65rem;
  height: .65rem;
  border-color: var(--gold-500);
  content: "";
}

.hero-system::before {
  top: -.1rem;
  left: -.1rem;
  border-top: 2px solid;
  border-left: 2px solid;
}

.hero-system::after {
  right: -.1rem;
  bottom: -.1rem;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.hero-system__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .55);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.live-indicator i {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 .25rem rgba(53, 205, 187, .12);
}

.hero-system__core {
  position: relative;
  aspect-ratio: 1;
  margin: 1rem;
}

.hero-system__orbit {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
}

.orbit--two {
  inset: 28%;
  border-color: rgba(53, 205, 187, .18);
}

.hero-system__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24%;
  color: var(--teal-400);
  transform: translate(-50%, -50%);
}

.hero-system__mark svg {
  fill: rgba(53, 205, 187, .06);
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-system__node {
  position: absolute;
  z-index: 2;
  padding: .45rem .65rem;
  border: 1px solid rgba(255, 255, 255, .12);
  background: var(--navy-900);
  color: rgba(255, 255, 255, .7);
  font-size: .66rem;
  font-weight: 700;
}

.node--one { top: 5%; left: 40%; }
.node--two { top: 43%; right: 0; }
.node--three { bottom: 5%; left: 37%; }
.node--four { top: 45%; left: 0; }

.hero-system > p {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .48);
  font-size: .78rem;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .5);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 3rem;
  height: 1px;
  background: rgba(255, 255, 255, .35);
}

/* Shared sections */
.section {
  padding-block: clamp(6rem, 11vw, 11rem);
}

.section--light {
  background: var(--paper);
}

.section--navy {
  background: var(--navy-950);
  color: var(--white);
}

.section--paper {
  background: #edf1f1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .55fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 5rem;
}

.section-heading h2,
.company-grid h2,
.studio-feature h2,
.contact-section h2,
.site-footer__lead h2 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 600;
}

.section-heading > p {
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading--dark > p {
  color: rgba(255, 255, 255, .56);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  position: relative;
  display: grid;
  min-height: 31rem;
  grid-template-rows: auto 1fr auto;
  padding: 1.5rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.product-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.status {
  color: var(--teal-600);
}

.product-card__visual {
  position: relative;
  min-height: 12rem;
  margin: 2rem 0;
}

.product-card__visual--brand {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--navy-950);
}

.product-card__visual--brand img {
  width: 100%;
  max-width: 27rem;
  max-height: 12rem;
  object-fit: contain;
}

.product-card--violet .product-card__visual--brand {
  background: #eef1f7;
}

.product-card__visual--provisional {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(198, 160, 82, .28);
  background: var(--navy-950);
  color: var(--white);
}

.product-card__visual--provisional > small {
  margin-bottom: 1.6rem;
  color: var(--gold-500);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-card__visual--provisional strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -.045em;
  line-height: 1;
}

.product-card__visual--provisional > span {
  margin-top: .7rem;
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.product-card__visual i {
  position: absolute;
  border: 1px solid currentColor;
  background: currentColor;
  opacity: .12;
  transform: rotate(-8deg);
}

.product-card__visual i:nth-child(1) {
  inset: 2% 18% 20% 6%;
}

.product-card__visual i:nth-child(2) {
  inset: 24% 6% 4% 28%;
  opacity: .2;
  transform: rotate(5deg);
}

.product-card__visual i:nth-child(3) {
  top: 11%;
  right: 10%;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: transparent;
  opacity: .55;
  transform: none;
}

.product-card--teal { color: var(--teal-600); }
.product-card--blue { color: #167aaa; }
.product-card--gold { color: var(--gold-500); }
.product-card--violet { color: #745ea7; }

.product-card__content {
  position: relative;
  z-index: 2;
  color: var(--ink);
}

.product-card h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.product-card p {
  max-width: 35rem;
  margin: 1rem 0 1.4rem;
  color: var(--muted);
}

.product-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.product-card__highlights li {
  padding: .3rem .6rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}

.product-card__note {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
}

.pipeline {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}

.pipeline h3 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.pipeline__groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pipeline-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.pipeline-card > strong {
  margin-bottom: .5rem;
  color: var(--teal-600);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pipeline-product,
.discovery-product {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.pipeline-product img,
.pipeline-product__mark {
  width: 5.5rem;
  height: 3.8rem;
  object-fit: contain;
  background: var(--navy-950);
}

.pipeline-product--pirat {
  grid-template-columns: 7rem 1fr;
}

.pipeline-product--pirat img {
  width: 7rem;
  padding: .25rem;
}

.pipeline-product--cheri img {
  padding: .15rem;
  background: #fff4f2;
}

.pipeline-product__mark {
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.pipeline-product div,
.discovery-product {
  min-width: 0;
}

.pipeline-product b,
.discovery-product b {
  display: block;
  margin-bottom: .25rem;
  font-size: .86rem;
}

.pipeline-product small,
.discovery-product small {
  display: block;
  margin-bottom: .25rem;
  color: var(--gold-500);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pipeline-product span,
.discovery-product span {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.5;
}

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

/* Services */
.service-list {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.service-row {
  display: grid;
  grid-template-columns: 4rem .8fr 1.2fr 3rem;
  align-items: center;
  gap: 2rem;
  padding: 2.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: padding .25s, background-color .25s;
}

.service-row:hover {
  padding-inline: 1.25rem;
  background: rgba(255, 255, 255, .035);
}

.service-row > span {
  color: var(--gold-500);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.service-row h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
}

.service-row p {
  color: rgba(255, 255, 255, .54);
  font-size: .92rem;
}

.service-row > a {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: var(--teal-400);
  text-decoration: none;
}

/* Creative Studio */
.studio-feature {
  padding-block: clamp(6rem, 10vw, 10rem);
  background: var(--white);
}

.studio-feature__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.studio-feature__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--grey-100);
  background: var(--off-white);
}

.studio-feature__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.studio-feature__label,
.studio-feature__type {
  position: relative;
  z-index: 2;
}

.studio-feature__label {
  color: var(--teal-400);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.studio-feature__type {
  display: grid;
  margin-top: 7rem;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .95;
}

.studio-feature__type span:nth-child(even) {
  color: var(--teal-400);
  transform: translateX(18%);
}

.studio-feature__geometry {
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgba(53, 205, 187, .45);
  transform: rotate(30deg);
}

.studio-feature__content p {
  max-width: 37rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Company */
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 8rem;
}

.company-copy__lead {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.35;
  letter-spacing: -.03em;
}

.company-copy > p:last-child {
  color: var(--muted);
}

.principles {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  border-top: 1px solid #cbd4d7;
  border-left: 1px solid #cbd4d7;
}

.principles article {
  padding: 2rem;
  border-right: 1px solid #cbd4d7;
  border-bottom: 1px solid #cbd4d7;
}

.principles span {
  color: var(--gold-500);
  font-size: .7rem;
  font-weight: 700;
}

.principles h3 {
  margin: 3rem 0 1rem;
  font-size: 1.45rem;
}

.principles p {
  color: var(--muted);
  font-size: .9rem;
}

/* Contact */
.contact-section {
  padding-block: clamp(6rem, 11vw, 11rem);
  background: var(--teal-600);
  color: var(--navy-950);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-intro .eyebrow {
  color: var(--navy-950);
}

.contact-intro > p {
  max-width: 34rem;
  margin-top: 2rem;
  color: rgba(6, 19, 31, .72);
  font-size: 1.05rem;
}

.direct-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .55rem;
  margin-top: 3rem;
}

.direct-contact a {
  font-size: .9rem;
  font-weight: 700;
  text-underline-offset: .3rem;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  color: var(--ink);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  margin-bottom: .45rem;
  font-size: .78rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  border-radius: .25rem;
  background: #f8fafa;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal-600);
  outline: 3px solid rgba(14, 159, 145, .16);
}

.consent {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: .75rem;
}

.consent input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: .2rem;
}

.consent a {
  color: var(--teal-600);
}

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

.form-status {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-left: 3px solid;
}

.form-status p {
  margin-top: .25rem;
  font-size: .82rem;
}

.form-status--success {
  border-color: var(--teal-600);
  background: rgba(14, 159, 145, .08);
}

.form-status--error {
  border-color: #b94a48;
  background: rgba(185, 74, 72, .08);
}

/* Footer and pages */
.site-footer {
  padding: 6rem 0 2rem;
  background: var(--navy-950);
  color: var(--white);
}

.site-footer__lead {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-footer__lead h2 {
  max-width: 15ch;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-block: 4rem;
}

.site-footer__brand strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.site-footer__brand p {
  max-width: 24rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .5);
  font-size: .86rem;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--teal-400);
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links,
.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: .6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .58);
  font-size: .82rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .38);
  font-size: .72rem;
}

.page-main {
  min-height: 70vh;
  padding: 10rem 0 7rem;
  background: var(--paper);
}

.entry h1,
.error-page h1 {
  margin-bottom: 2rem;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.entry > * + * {
  margin-top: 1.25rem;
}

.entry p,
.entry li,
.error-page p {
  color: var(--muted);
}

.error-page .button {
  margin-top: 2rem;
}

@media (max-width: 1050px) {
  .hero__inner {
    grid-template-columns: 1fr .8fr;
    gap: 3rem;
  }

  .site-nav__list {
    gap: 1.2rem;
  }

  .service-row {
    grid-template-columns: 3rem .8fr 1.2fr 3rem;
  }
}

@media (max-width: 860px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem;
    border: 0;
    background: transparent;
    color: var(--white);
  }

  .menu-toggle__label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .menu-toggle__icon {
    display: grid;
    gap: .35rem;
    width: 1.4rem;
  }

  .menu-toggle__icon i {
    height: 1px;
    background: currentColor;
    transition: transform .2s;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(.18rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-.18rem) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 5rem 0 auto;
    display: none;
    min-height: calc(100svh - 5rem);
    align-items: stretch;
    flex-direction: column;
    padding: 2rem 1.5rem;
    background: var(--navy-950);
  }

  .admin-bar .site-nav {
    top: calc(5rem + 46px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav__list a {
    display: block;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-family: var(--font-display);
    font-size: 1.7rem;
  }

  .site-nav .button {
    margin-top: auto;
  }

  .hero__inner,
  .section-heading,
  .studio-feature__grid,
  .company-grid,
  .contact-grid,
  .pipeline {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding-top: 9rem;
  }

  .hero-system {
    max-width: 35rem;
  }

  .section-heading {
    align-items: start;
    gap: 2rem;
  }

  .service-row {
    grid-template-columns: 3rem 1fr 2.75rem;
  }

  .service-row p {
    grid-column: 2 / -1;
  }

  .company-grid {
    gap: 3rem;
  }

  .principles {
    grid-column: auto;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 2.5rem), var(--shell));
  }

  .brand__words small {
    display: none;
  }

  .brand__mark {
    width: 2.2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    padding-block: 8.5rem 7rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

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

  .hero__actions .text-link {
    min-height: 3rem;
  }

  .hero-system__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-system__node {
    font-size: .58rem;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-block: 5.5rem;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .section-heading h2,
  .company-grid h2,
  .studio-feature h2,
  .contact-section h2,
  .site-footer__lead h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .product-grid,
  .pipeline__groups,
  .principles,
  .field-row {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 28rem;
  }

  .pipeline {
    gap: 2rem;
    margin-top: 4rem;
  }

  .service-row {
    grid-template-columns: 2.25rem 1fr 2.5rem;
    gap: 1rem;
  }

  .service-row p {
    grid-column: 1 / -1;
  }

  .studio-feature__type {
    margin-top: 6rem;
  }

  .studio-feature__type span:nth-child(even) {
    transform: translateX(8%);
  }

  .principles {
    border-left: 0;
  }

  .principles article {
    border-left: 1px solid #cbd4d7;
  }

  .contact-card {
    margin-inline: -1.25rem;
  }

  .site-footer__lead,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__lead {
    align-items: start;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

/* SeyOmni approved brand lockup */
.seyomni-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  color: #f4f1e8;
}

.product-card__visual--brand .seyomni-lockup img {
  width: clamp(4.5rem, 10vw, 7rem);
  height: auto;
  max-width: 7rem;
  max-height: 7rem;
  flex: 0 0 auto;
}

.seyomni-lockup > div {
  display: grid;
  gap: .35rem;
}

.seyomni-lockup strong {
  color: #f4f1e8;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.seyomni-lockup span {
  color: #9aaea9;
  font-size: clamp(.72rem, 1.4vw, .95rem);
  font-weight: 600;
  letter-spacing: .02em;
}

@media (max-width: 540px) {
  .seyomni-lockup {
    flex-direction: column;
    text-align: center;
  }
}