@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/dm-sans.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./fonts/manrope.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/instrument-serif-italic.woff2") format("woff2");
}

:root {
  --ink: #0b0f17;
  --navy: #111c35;
  --blue: #173b8f;
  --ice: #eaf0fa;
  --slate: #667085;
  --line: #dbe1e9;
  --paper: #fafbfc;
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --gutter: clamp(24px, 5.1vw, 88px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3,
h4 {
  margin: 0;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #628bee;
  outline-offset: 6px;
}
::selection {
  background: #c7d8ff;
  color: var(--ink);
}
/* Programmatic anchor focus keeps keyboard reading order without framing
   an entire section. Interactive controls retain their focus-visible rings. */
main[tabindex="-1"]:focus,
section[tabindex="-1"]:focus {
  outline: none;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 16px;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 var(--gutter);
  background: rgba(250, 251, 252, 0.93);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 25px;
  letter-spacing: 4px;
}
.brand-symbol {
  width: 38px;
  height: 42px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: block;
  mix-blend-mode: multiply;
}
.brand-symbol img {
  width: 64px;
  height: 64px;
  max-width: none;
  position: absolute;
  left: -13px;
  top: -12px;
}
.brand-dot {
  color: var(--blue);
  letter-spacing: 0;
}
.desktop-nav {
  display: flex;
  gap: 31px;
  font-size: 13px;
  font-weight: 500;
}
.desktop-nav a {
  position: relative;
  padding: 15px 0;
}
.desktop-nav a:after {
  position: absolute;
  content: "";
  bottom: 8px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 0.25s;
}
.desktop-nav a:hover:after,
.desktop-nav a.active:after {
  width: 100%;
}
.header-cta {
  border: 1px solid var(--ink);
  padding: 13px 20px;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  gap: 31px;
  align-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.header-cta:hover {
  background: var(--ink);
  color: white;
}
.header-cta span {
  font-size: 20px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  padding: 80px var(--gutter) 0;
  isolation: isolate;
  overflow: hidden;
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(#c5d2e51c 1px, transparent 1px),
    linear-gradient(90deg, #c5d2e51c 1px, transparent 1px),
    radial-gradient(ellipse at 88% 42%, #dbe5f5 0, transparent 54%);
  background-size:
    80px 80px,
    80px 80px,
    100% 100%;
  mask-image: linear-gradient(90deg, transparent 25%, black 65%);
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.9px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #173b8f0b;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(76px, 7.1vw, 116px);
  letter-spacing: -6px;
  line-height: 1.04;
  margin-top: 32px;
}
.hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -3px;
  font-size: 1.12em;
  line-height: 1;
}
.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: #5a6475;
  max-width: 370px;
  margin-top: 30px;
}
.hero-actions {
  margin-top: 31px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 54px;
  padding: 16px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  transition:
    transform 0.25s,
    background 0.25s;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-3px);
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: var(--blue);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 21px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #b9c0ca;
}
.text-link span {
  font-size: 20px;
  transition: transform 0.25s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.hero-art {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  perspective: 1000px;
}
.art-coordinate {
  position: absolute;
  font-size: 8px;
  letter-spacing: 1.6px;
  color: #7b889d;
  top: 7px;
  left: 21%;
  white-space: nowrap;
}
.orbital-stage {
  position: relative;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(20px, -6px);
}
.orbital-sculpture {
  width: 74%;
  height: 74%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-18deg) rotateY(-22deg) rotateZ(-22deg);
  animation: sculpture-drift 4.5s ease-in-out 1;
}
.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: clamp(20px, 3.2vw, 49px) solid transparent;
  background: linear-gradient(
      145deg,
      #edf4ff 0%,
      #90ace6 17%,
      #214888 38%,
      #0c245a 58%,
      #7496d4 78%,
      #eef5ff 97%
    )
    border-box;
  mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  box-shadow:
    inset 5px 6px 16px #fff,
    12px 24px 40px #0b245151;
  transform-style: preserve-3d;
}
.orbit-one {
  transform: rotateX(64deg) rotateZ(-12deg);
}
.orbit-two {
  transform: rotateY(66deg) rotateZ(29deg);
  background: linear-gradient(
      105deg,
      #d1e3ff,
      #3e64ae 25%,
      #091939 48%,
      #688bc7 78%,
      #e7f0ff
    )
    border-box;
}
.orbit-three {
  transform: rotateX(-41deg) rotateY(-40deg) rotateZ(41deg);
  background: linear-gradient(
      160deg,
      #fff,
      #a0b8e7 20%,
      #274b8f 48%,
      #101f45 64%,
      #507abb 80%,
      #dce9ff
    )
    border-box;
}
.orbital-core {
  position: absolute;
  inset: 37%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 28% 25%,
    #dbe8ff 0%,
    #769add 23%,
    #284f96 45%,
    #0b1c45 75%
  );
  box-shadow: 10px 18px 30px #11244844;
  transform: translateZ(5px);
}
.orbital-shadow {
  position: absolute;
  bottom: 6%;
  left: 18%;
  width: 70%;
  height: 12%;
  border-radius: 50%;
  background: #203d6950;
  filter: blur(22px);
  transform: rotate(-12deg);
  animation: shadow-drift 4.5s ease-in-out 1;
}
.orbital-track {
  position: absolute;
  inset: 0;
  border: 1px solid #8fa6cc46;
  border-radius: 50%;
  transform: rotate(-34deg) scaleY(0.56);
  pointer-events: none;
}
.track-two {
  inset: -2%;
  transform: rotate(54deg) scaleY(0.63);
}
.orbit-satellite {
  position: absolute;
  right: 11%;
  top: 19%;
  width: 11px;
  height: 11px;
  background: radial-gradient(circle at 30% 25%, white, #254f96 65%);
  border-radius: 50%;
  box-shadow: 0 0 0 7px #173b8f08;
}
.art-caption {
  width: 83%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 8px;
  letter-spacing: 1.6px;
  line-height: 1.8;
  margin-top: 7px;
}
.caption-cross {
  font-size: 30px;
  font-weight: 300;
}
.caption-number {
  margin-left: auto;
}
.hero-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 67px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--slate);
}
.hero-bottom p {
  font-size: 11px;
  letter-spacing: 0;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 8px;
}
.scroll-cue span {
  border: 1px solid #cbd3df;
  display: grid;
  place-items: center;
  width: 28px;
  height: 34px;
  border-radius: 20px;
  font-size: 16px;
}
.location-label {
  font-size: 8px;
  display: flex;
  gap: 15px;
}
.section-shell {
  padding: 110px var(--gutter);
}
.section-label {
  font-size: 9px;
  letter-spacing: 1.7px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tiny-square {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: currentColor;
}
.about {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 45px;
  background: white;
}
.about .section-label {
  align-self: start;
  margin-top: 12px;
}
.about h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.1vw, 50px);
  line-height: 1.25;
  letter-spacing: -1.9px;
  font-weight: 500;
}
.muted {
  color: #8c94a3;
}
h2 em {
  font-family: var(--serif);
  font-size: 1.18em;
  font-weight: 400;
  color: var(--blue);
}
.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 34px;
}
.about-details p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.8;
}
.about-content > .text-link {
  margin-top: 25px;
}
@keyframes sculpture-drift {
  0%,
  100% {
    transform: rotateX(-18deg) rotateY(-22deg) rotateZ(-22deg) translateY(0);
  }
  50% {
    transform: rotateX(-6deg) rotateY(15deg) rotateZ(-12deg) translateY(-18px);
  }
}
@keyframes shadow-drift {
  50% {
    opacity: 0.6;
    transform: rotate(-12deg) scale(0.85);
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 900px;
  }
  .hero-copy {
    padding-top: 25px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
    font-size: 12px;
  }
  .brand {
    font-size: 22px;
  }
  .hero h1 {
    font-size: 85px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero {
    min-height: 740px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-art {
    margin-left: -30px;
  }
  .hero-bottom {
    margin-top: 70px;
  }
  .about {
    grid-template-columns: 1fr 2.6fr;
    gap: 24px;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 78px;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px;
  }
  .menu-toggle span {
    height: 1px;
    width: 24px;
    background: var(--ink);
    transition: transform 0.25s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    padding: 24px var(--gutter) 35px;
    background: var(--paper);
    z-index: 49;
    box-shadow: 0 20px 25px #111c3515;
  }
  .mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 20px;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    padding-top: 52px;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(72px, 13vw, 105px);
    letter-spacing: -4.5px;
  }
  .hero h1 {
    max-width: 600px;
  }
  .hero h1 em {
    letter-spacing: -2px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 400px;
  }
  .hero-art {
    margin: 20px 0 0;
    min-height: 410px;
  }
  .orbital-stage {
    width: min(78vw, 480px);
    transform: none;
  }
  .art-coordinate {
    display: none;
  }
  .art-caption {
    max-width: 400px;
    margin-top: -20px;
  }
  .hero-bottom {
    margin-top: 36px;
    padding: 22px 0;
  }
  .hero-bottom p {
    display: none;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .section-shell {
    padding: 75px var(--gutter);
  }
  .about h2 {
    font-size: clamp(32px, 5.5vw, 46px);
  }
  .about-details {
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 43px;
  }
  .hero h1 {
    font-size: 72px;
    line-height: 1.02;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 320px;
    margin-top: 25px;
  }
  .hero-actions {
    gap: 21px;
    flex-wrap: wrap;
  }
  .button {
    padding: 15px 18px;
    gap: 25px;
    font-size: 12px;
  }
  .text-link {
    font-size: 12px;
    gap: 12px;
  }
  .hero-art {
    min-height: 340px;
    margin-top: 25px;
  }
  .art-caption {
    width: 90%;
    font-size: 7px;
  }
  .location-label {
    font-size: 7px;
    gap: 7px;
  }
  .hero-bottom {
    gap: 12px;
  }
  .scroll-cue {
    font-size: 7px;
  }
  .about-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about h2 {
    letter-spacing: -1.1px;
  }
  .brand {
    font-size: 22px;
  }
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-top: 33px;
  margin-bottom: 55px;
}
.section-heading h2,
.principles-heading h2 {
  font-family: var(--display);
  font-size: clamp(36px, 3.75vw, 58px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.18;
}
.section-heading > p {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--slate);
  padding-bottom: 7px;
}
.expertise {
  background: var(--ink);
  color: white;
}
.expertise .section-label {
  color: #a2b2ca;
}
.expertise h2 em {
  color: #a9c2f3;
}
.expertise .section-heading > p {
  color: #99a4b7;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #ffffff26;
  border-bottom: 1px solid #ffffff26;
}
.capability {
  padding: 35px 35px 28px 0;
  display: flex;
  flex-direction: column;
}
.capability + .capability {
  padding-left: 35px;
  border-left: 1px solid #ffffff26;
}
.capability:last-child {
  padding-right: 0;
}
.capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.card-index {
  font-size: 10px;
  color: #8191ab;
}
.capability-glyph {
  width: 46px;
  height: 45px;
  position: relative;
  display: block;
  color: #b4caef;
}
.glyph-window {
  border: 1px solid currentColor;
  border-radius: 4px;
  height: 32px;
  margin: 6px 0;
}
.glyph-window:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  border-top: 1px solid currentColor;
}
.glyph-window i {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  top: 3px;
  left: 5px;
}
.glyph-window i:nth-child(2) {
  left: 10px;
}
.glyph-window i:nth-child(3) {
  left: 15px;
}
.glyph-connect:before,
.glyph-connect:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 30px;
  background: currentColor;
  top: 22px;
  left: 8px;
  transform: rotate(40deg);
}
.glyph-connect:after {
  transform: rotate(-40deg);
}
.glyph-connect i {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  left: 17px;
  top: 0;
  background: var(--ink);
  z-index: 1;
}
.glyph-connect i:nth-child(2) {
  top: 30px;
  left: 0;
}
.glyph-connect i:nth-child(3) {
  top: 30px;
  left: 34px;
}
.glyph-intelligence::before,
.glyph-intelligence::after {
  content: "";
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 3px;
  width: 26px;
  height: 26px;
  top: 10px;
  left: 10px;
}
.glyph-intelligence::after {
  width: 10px;
  height: 10px;
  top: 18px;
  left: 18px;
  border-radius: 1px;
}
.glyph-intelligence i {
  position: absolute;
  width: 19px;
  height: 6px;
  top: 5px;
  left: 14px;
  background: repeating-linear-gradient(
    90deg, currentColor 0 1px, transparent 1px 6px
  );
}
.glyph-intelligence i:nth-child(2) {
  top: 35px;
}
.glyph-intelligence i:nth-child(3),
.glyph-intelligence i:nth-child(3)::after {
  width: 6px;
  height: 19px;
  top: 14px;
  left: 5px;
  background: repeating-linear-gradient(
    0deg, currentColor 0 1px, transparent 1px 6px
  );
}
.glyph-intelligence i:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
}
.capability h3 {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 450;
  letter-spacing: -0.8px;
  font-family: var(--display);
}
.capability > p {
  font-size: 13px;
  line-height: 1.85;
  color: #9ca8bb;
  margin-top: 24px;
  max-width: 310px;
}
.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
  margin-bottom: 30px;
}
.capability-tags span {
  padding: 6px 9px;
  border: 1px solid #ffffff24;
  color: #b9c4d5;
  font-size: 9px;
  white-space: nowrap;
  border-radius: 2px;
}
.capability-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  padding-top: 24px;
  border-top: 1px solid #ffffff20;
  margin-top: auto;
}
.capability-link span {
  font-size: 23px;
  transition: transform 0.2s;
}
.capability-link:hover span {
  transform: translate(4px, -4px);
}
.expertise-note {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 32px;
}
.expertise-note > span:first-child {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #889ab6;
}
.expertise-note > p {
  font-size: 13px;
}
.expertise-note > p span {
  color: #889ab6;
}
.expertise-note > span:last-child {
  margin-left: auto;
  font-size: 24px;
  color: #b3c8ec;
}
.products {
  background: var(--ice);
}
.product-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: white;
  border: 1px solid #d7e0f0;
  border-radius: 6px;
  overflow: hidden;
}
.product-visual {
  background: #0d2c20;
  position: relative;
  min-height: 510px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background-image: radial-gradient(
    ellipse at 50% 45%,
    #2d5730 0,
    transparent 70%
  );
}
.product-visual-label {
  font-size: 7px;
  color: #a3b9a4;
  letter-spacing: 1.8px;
  z-index: 1;
}
.product-orbit {
  position: absolute;
  border: 1px solid #d6c46430;
  inset: 17% -9%;
  border-radius: 50%;
  transform: rotate(-35deg);
  z-index: -1;
}
.product-orbit-two {
  inset: -9% 18%;
  transform: rotate(35deg);
}
.smash-brand-stage {
  width: 100%;
  max-width: 600px;
  align-self: center;
  padding: 22px 0;
}
.smash-brand-stage img {
  width: 100%;
  height: auto;
}
.product-visual-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 7px;
  letter-spacing: 1px;
  color: #a3b9a4;
}
.product-visual-bottom img {
  border-radius: 9px;
}
.product-copy {
  padding: 45px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  letter-spacing: 1.6px;
  color: #557066;
}
.small-dot {
  background: #287e59;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.product-copy h3 {
  font-family: var(--display);
  font-size: 43px;
  letter-spacing: -1.7px;
  font-weight: 550;
  margin-top: 22px;
}
.product-copy h3 > span {
  color: #407b54;
}
.product-lead {
  font-size: 21px !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
  margin-top: 14px !important;
  letter-spacing: -0.4px;
}
.product-copy > p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--slate);
  margin-top: 20px;
}
.product-meta {
  width: 100%;
  display: flex;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 27px;
  margin-bottom: 18px;
}
.product-meta > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.product-meta span {
  font-size: 7px;
  letter-spacing: 1.5px;
  color: var(--slate);
}
.product-meta strong {
  font-size: 10px;
  font-weight: 500;
}
.product-story-trigger {
  background: none;
  border: 0;
  border-bottom: 1px solid #b9c0ca;
  font-size: 12px;
}
.product-copy .product-disclaimer {
  font-size: 9px;
  line-height: 1.5;
  margin-top: 23px;
  max-width: 300px;
}
.product-afterword {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 27px;
  color: var(--slate);
  font-size: 11px;
}
.product-afterword > a {
  margin-left: auto;
  color: var(--ink);
  font-size: 11px;
}
.product-afterword > a span {
  margin-left: 14px;
}
.industries {
  background: white;
}
.industry-explorer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.industry-tabs {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
}
.industry-tab {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--slate);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 12px;
  text-align: left;
  font-size: 13px;
  transition:
    color 0.25s,
    background 0.25s,
    padding 0.25s;
  min-height: 48px;
}
.industry-tab span {
  opacity: 0;
  font-size: 18px;
}
.industry-tab:hover,
.industry-tab.active {
  color: var(--blue);
  background: #eaf0fa70;
  padding-left: 20px;
}
.industry-tab.active {
  font-weight: 600;
  border-bottom-color: #afc3e8;
}
.industry-tab.active span {
  opacity: 1;
}
.industry-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ice);
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  border-radius: 4px;
}
.industry-panel-top {
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-size: 9px;
  letter-spacing: 1px;
}
.industry-panel-top > span:last-child {
  font-size: 22px;
}
.industry-art {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  transform: rotate(-22deg);
  margin-top: 5px;
}
.industry-art i {
  display: block;
  width: 24px;
  height: 110px;
  background: linear-gradient(90deg, #d8e4fb, #708dca 55%, #234b94);
  border-radius: 100px;
  box-shadow: 12px 14px 20px #28457016;
  animation: bar-breathe 4.5s ease-in-out 1;
}
.industry-art i:nth-child(2),
.industry-art i:nth-child(6) {
  height: 140px;
  animation-delay: -1s;
}
.industry-art i:nth-child(3),
.industry-art i:nth-child(5) {
  height: 180px;
  animation-delay: -2s;
}
.industry-art i:nth-child(4) {
  height: 200px;
  animation-delay: -3s;
}
.industry-panel-copy h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.9px;
  margin-top: 25px;
  white-space: pre-line;
}
.industry-panel-copy > p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--slate);
  margin-top: 18px;
  max-width: 350px;
  min-height: 70px;
}
.industry-panel-copy .text-link {
  font-size: 11px;
  margin-top: 17px;
}
.approach {
  background: #f4f6fa;
  border-top: 1px solid var(--line);
}
.process-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid #ccd5e3;
  margin-top: 65px;
}
.process-tab {
  background: transparent;
  border: 0;
  text-align: left;
  padding: 0 8px 26px;
  color: #7f8a9e;
  position: relative;
}
.process-tab > span {
  display: block;
  font-size: 10px;
  margin-bottom: 12px;
}
.process-tab strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
}
.process-tab i {
  position: absolute;
  bottom: -4px;
  left: 8px;
  width: 7px;
  height: 7px;
  border: 1px solid #afbcd0;
  border-radius: 50%;
  background: #f4f6fa;
}
.process-tab.active,
.process-tab:hover {
  color: var(--blue);
}
.process-tab.active:after {
  content: "";
  height: 2px;
  width: 100%;
  background: var(--blue);
  position: absolute;
  bottom: -1px;
  left: 8px;
}
.process-tab.active i {
  background: var(--blue);
  border-color: var(--blue);
  z-index: 1;
  box-shadow: 0 0 0 6px #173b8f0b;
}
.process-panel {
  display: grid;
  grid-template-columns: 1fr 2.1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 8px 0;
  min-height: 220px;
}
.process-big-number {
  font-size: 135px;
  line-height: 1;
  letter-spacing: -9px;
  color: #dae2ee;
  font-family: var(--display);
  font-weight: 400;
}
.process-panel .eyebrow {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--blue);
}
.process-panel h3 {
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin-top: 13px;
}
.process-panel > div > p:last-child {
  font-size: 14px;
  line-height: 1.8;
  max-width: 470px;
  color: var(--slate);
  margin-top: 15px;
}
.process-next {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid #c2cdde;
  border-radius: 50%;
  background: transparent;
  line-height: 1;
  color: var(--blue);
  transition:
    background 0.25s,
    color 0.25s;
}
.process-next svg {
  position: absolute;
  inset: 0;
  display: block;
  margin: auto;
}
.process-next:hover {
  background: var(--blue);
  color: white;
}
.philosophy {
  background: var(--blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.philosophy:after {
  content: "";
  position: absolute;
  width: 50vw;
  height: 50vw;
  border: 1px solid #ffffff12;
  border-radius: 50%;
  top: -6vw;
  right: -20vw;
  box-shadow:
    0 0 0 80px #ffffff04,
    0 0 0 160px #ffffff03;
  pointer-events: none;
}
.philosophy-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c0d0ef;
}
.philosophy-top > span {
  font-size: 42px;
  font-weight: 300;
}
.philosophy h2 {
  font-family: var(--display);
  font-size: clamp(55px, 6.3vw, 102px);
  font-weight: 450;
  line-height: 1.1;
  letter-spacing: -4px;
  margin: 36px 0 60px;
}
.philosophy h2 em {
  color: #c9d9f9;
  letter-spacing: -2px;
  font-size: 1.17em;
}
.philosophy-bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  border-top: 1px solid #ffffff35;
  padding-top: 30px;
  position: relative;
  z-index: 1;
}
.philosophy-bottom > p {
  font-size: 15px;
  line-height: 1.8;
}
.philosophy-bottom > div > span {
  font-size: 8px;
  letter-spacing: 1.7px;
  color: #acc1e9;
}
.philosophy-bottom > div > p {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 12px;
  color: #d3def2;
}
.principles {
  background: white;
}
.principles-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin: 32px 0 50px;
}
.principles-heading > p {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 8px;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 38px;
}
.principles-grid article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.principles-grid article > span {
  font-size: 9px;
  color: #8d9ab0;
}
.principles-grid h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 550;
  letter-spacing: -0.5px;
  margin-top: 19px;
}
.principles-grid p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--slate);
  margin-top: 12px;
  max-width: 280px;
}
.contact {
  background: var(--ice);
}
.contact-top {
  margin-top: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.contact-top h2 {
  font-family: var(--display);
  font-size: clamp(41px, 4.6vw, 71px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -2.6px;
}
.contact-top > p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--slate);
  max-width: 300px;
  margin-bottom: 8px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.1fr;
  gap: 90px;
  margin-top: 65px;
}
.contact-email {
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -1px;
  display: inline-flex;
  gap: 24px;
  align-items: center;
}
.contact-email > span {
  color: var(--blue);
}
.contact-phone {
  display: block;
  font-size: 16px;
  margin-top: 17px;
  color: #53627b;
}
.contact-address {
  margin-top: 39px;
}
.contact-address > span {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--slate);
}
.contact-address address {
  font-size: 13px;
  line-height: 1.9;
  font-style: normal;
  margin-top: 12px;
  color: #53627b;
}
.partner-note {
  display: flex;
  gap: 23px;
  margin-top: 39px;
  padding-top: 25px;
  border-top: 1px solid #ccd7e7;
}
.partner-plus {
  font-size: 38px;
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
}
.partner-note h3 {
  font-size: 16px;
  font-weight: 550;
}
.partner-note p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--slate);
  max-width: 280px;
  margin-top: 10px;
}
.partner-note .text-link {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #b9c0ca;
  font-size: 11px;
  margin-top: 6px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}
.contact-form label > span {
  color: var(--blue);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b5c4dc;
  background: transparent;
  border-radius: 0;
  color: var(--ink);
  font-size: 13px;
  padding: 16px 0 13px;
  outline-offset: 4px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7c899e;
  font-size: 12px;
}
.contact-form select:invalid {
  color: #7c899e;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}
.form-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 4px;
}
.form-actions > p {
  font-size: 9px;
  line-height: 1.6;
  color: var(--slate);
}
.form-result {
  padding: 18px;
  background: #ffffffb0;
  border: 1px solid #c4d0e5;
  font-size: 12px;
  line-height: 1.7;
}
.form-result > div {
  display: flex;
  gap: 24px;
}
.form-result button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #b9c0ca;
}
.site-footer {
  background: var(--ink);
  color: white;
  padding: 50px var(--gutter) 0;
  overflow: hidden;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand .brand-symbol {
  filter: invert(1);
  mix-blend-mode: screen;
}
.footer-brand .brand-dot {
  color: #9bb9ee;
}
.footer-top > p {
  font-size: 11px;
  color: #9fa9ba;
}
.back-top {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #c0cada;
}
.back-top > span {
  font-size: 23px;
}
.footer-wordmark {
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(105px, 21vw, 350px);
  letter-spacing: -1.3vw;
  line-height: 1.35;
  color: #dfe7f4;
  position: relative;
  white-space: nowrap;
  margin-top: 10px;
}
.footer-wordmark > span {
  position: absolute;
  top: 28%;
  right: 0;
  font-size: 25px;
  letter-spacing: 0;
  color: #62728b;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 24px 0;
  border-top: 1px solid #ffffff25;
  color: #8896ab;
  font-size: 9px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: #c0cada;
  align-items: center;
}
.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 12px;
  text-underline-offset: 5px;
}
.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: white;
  text-decoration: underline;
}
.form-privacy {
  margin-top: 20px;
  max-width: 54ch;
  color: #667085;
  font-size: 12px;
  line-height: 1.7;
}
.form-privacy a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product-dialog {
  width: min(740px, calc(100% - 32px));
  max-height: 90dvh;
  overflow: auto;
  border: 0;
  border-radius: 8px;
  padding: 40px;
  background: var(--paper);
  color: var(--ink);
}
.product-dialog::backdrop {
  background: #0b0f17c4;
  backdrop-filter: blur(9px);
}
.dialog-close {
  position: absolute;
  right: 18px;
  top: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 31px;
  color: var(--ink);
}
.dialog-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.dialog-brand img {
  width: 70px;
  height: 70px;
}
.dialog-brand .eyebrow {
  font-size: 9px;
}
.product-dialog h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -1px;
}
.product-dialog > p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.8;
  margin-top: 24px;
}
.dialog-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.dialog-pillars span {
  font-size: 10px;
  color: var(--blue);
}
.dialog-pillars h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 12px;
}
.dialog-pillars p {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.7;
  margin-top: 10px;
}
.product-dialog .dialog-note {
  font-size: 10px;
  background: var(--ice);
  padding: 14px;
  border-radius: 3px;
}
.product-dialog > .button {
  margin-top: 24px;
}
.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.will-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.dialog-open {
  overflow: hidden;
}
.hero h1 {
  animation: copy-enter 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-description,
.hero-actions {
  animation: copy-enter 1s 0.15s both;
}
.hero-art {
  animation: copy-enter 1.3s 0.1s both;
}
@keyframes copy-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bar-breathe {
  50% {
    transform: scaleY(0.85);
  }
}
@media (max-width: 1100px) {
  .capability {
    padding-right: 25px;
  }
  .capability + .capability {
    padding-left: 25px;
  }
  .capability h3 {
    font-size: 23px;
  }
  .product-copy {
    padding: 32px 28px;
  }
  .product-copy h3 {
    font-size: 37px;
  }
  .product-visual {
    min-height: 500px;
    padding: 22px;
  }
  .product-meta {
    gap: 20px;
  }
  .industry-explorer {
    gap: 35px;
  }
  .contact-grid {
    gap: 50px;
  }
  .principles-grid {
    column-gap: 30px;
  }
  .section-heading > p {
    max-width: 270px;
  }
  .contact-top > p {
    max-width: 240px;
  }
  .philosophy-bottom {
    gap: 30px;
  }
  .footer-wordmark {
    font-size: 20.5vw;
  }
}
@media (max-width: 800px) {
  .hero h1 {
    letter-spacing: -4.5px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 38px;
  }
  .section-heading > p {
    max-width: 440px;
  }
  .section-heading h2,
  .principles-heading h2 {
    font-size: clamp(34px, 6vw, 47px);
    letter-spacing: -1.5px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability,
  .capability + .capability {
    padding: 30px 0;
    border-left: 0;
  }
  .capability + .capability {
    border-top: 1px solid #ffffff26;
  }
  .capability-top {
    margin-bottom: 12px;
  }
  .capability h3 {
    font-size: 28px;
  }
  .capability h3 br {
    display: none;
  }
  .capability > p {
    max-width: 100%;
    margin-top: 17px;
  }
  .capability-tags {
    margin: 20px 0;
  }
  .capability-link {
    padding-top: 18px;
  }
  .expertise-note {
    gap: 20px;
  }
  .expertise-note > p {
    font-size: 11px;
  }
  .product-feature {
    grid-template-columns: 1fr;
  }
  .product-visual {
    min-height: 430px;
  }
  .smash-brand-stage {
    width: 85%;
    align-self: center;
    max-width: 460px;
  }
  .product-copy {
    padding: 36px;
  }
  .product-copy > p {
    max-width: 460px;
  }
  .product-meta {
    gap: 55px;
  }
  .product-afterword {
    flex-wrap: wrap;
    row-gap: 17px;
  }
  .product-afterword > a {
    margin-left: 17px;
  }
  .industry-explorer {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .industry-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .industry-tab {
    font-size: 11px;
    padding-left: 4px;
  }
  .industry-tab:hover,
  .industry-tab.active {
    padding-left: 10px;
  }
  .industry-panel {
    min-height: 500px;
  }
  .industry-art {
    height: 180px;
  }
  .industry-panel-copy > p {
    max-width: 100%;
    min-height: 0;
  }
  .process-tabs {
    margin-top: 40px;
  }
  .process-tab strong {
    font-size: 15px;
  }
  .process-panel {
    grid-template-columns: 100px 1fr auto;
    gap: 25px;
  }
  .process-big-number {
    font-size: 90px;
    letter-spacing: -5px;
  }
  .process-panel h3 {
    font-size: 25px;
  }
  .process-panel > div > p:last-child {
    font-size: 13px;
  }
  .process-next {
    width: 44px;
    height: 44px;
  }
  .process-next svg {
    /* Small optical correction for the compact mobile control. */
    transform: translateY(1px);
  }
  .philosophy h2 {
    font-size: 67px;
    letter-spacing: -2.5px;
    margin-bottom: 40px;
  }
  .philosophy-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .philosophy-bottom > p {
    grid-column: 1/-1;
  }
  .principles-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .principles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .contact-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .contact-top h2 {
    font-size: clamp(38px, 6.5vw, 58px);
    letter-spacing: -1.7px;
  }
  .contact-top > p {
    max-width: 400px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 44px;
  }
  .contact-email {
    font-size: 30px;
  }
  .contact-address {
    margin-top: 28px;
  }
  .partner-note {
    margin-top: 28px;
  }
  .partner-note p {
    max-width: 420px;
  }
  .footer-top > p {
    display: none;
  }
  .footer-wordmark {
    line-height: 1.65;
  }
  .footer-wordmark > span {
    font-size: 18px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .dialog-pillars {
    gap: 18px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(59px, 18vw, 78px);
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    gap: 20px;
  }
  .hero-actions > .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .section-heading h2,
  .principles-heading h2 {
    font-size: 35px;
  }
  .expertise-note {
    flex-wrap: wrap;
    gap: 10px;
  }
  .expertise-note > span:first-child {
    width: 100%;
  }
  .product-visual {
    min-height: 330px;
    padding: 20px;
  }
  .smash-brand-stage {
    width: 100%;
    padding: 20px 0;
  }
  .product-visual-label {
    font-size: 6px;
    letter-spacing: 1.2px;
  }
  .product-visual-bottom {
    font-size: 6px;
  }
  .product-copy {
    padding: 30px 24px;
  }
  .product-copy h3 {
    font-size: 37px;
  }
  .product-meta {
    gap: 24px;
  }
  .product-meta strong {
    font-size: 9px;
  }
  .product-afterword {
    font-size: 10px;
  }
  .product-afterword > a {
    font-size: 10px;
  }
  .industry-tabs {
    gap: 0 12px;
  }
  .industry-tab {
    font-size: 10px;
    line-height: 1.5;
    min-height: 57px;
    gap: 8px;
  }
  .industry-panel {
    padding: 25px;
    min-height: 510px;
  }
  .industry-art {
    gap: 10px;
  }
  .industry-art i {
    width: 20px;
  }
  .industry-panel-copy h3 {
    font-size: 27px;
  }
  .process-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 0;
    border-bottom: 0;
  }
  .process-tab {
    border-bottom: 1px solid #ccd5e3;
  }
  .process-panel {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding-top: 30px;
  }
  .process-big-number {
    display: none;
  }
  .process-panel .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .process-panel h3 {
    font-size: 24px;
  }
  .process-next {
    align-self: center;
  }
  .philosophy h2 {
    font-size: clamp(45px, 12vw, 59px);
    letter-spacing: -2px;
  }
  .philosophy-top .section-label {
    font-size: 7px;
    letter-spacing: 1.2px;
  }
  .philosophy-top > span {
    font-size: 30px;
  }
  .philosophy-bottom {
    gap: 25px;
  }
  .philosophy-bottom > p {
    font-size: 13px;
  }
  .philosophy-bottom > div > p {
    font-size: 11px;
  }
  .principles-grid {
    gap: 30px 23px;
  }
  .principles-grid h3 {
    font-size: 17px;
  }
  .principles-grid p {
    font-size: 12px;
  }
  .contact-top h2 {
    font-size: clamp(34px, 9.2vw, 45px);
  }
  .contact-email {
    font-size: 27px;
    gap: 17px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-actions {
    gap: 17px;
  }
  .footer-top {
    gap: 10px;
  }
  .footer-top .brand {
    font-size: 20px;
  }
  .back-top {
    font-size: 7px;
    gap: 10px;
  }
  .footer-wordmark {
    font-size: 20.1vw;
    letter-spacing: -1.2vw;
    margin-top: 25px;
  }
  .footer-wordmark > span {
    font-size: 13px;
    right: -5px;
    top: 20%;
  }
  .footer-bottom {
    font-size: 8px;
  }
  .product-dialog {
    padding: 28px 23px;
  }
  .product-dialog h2 {
    font-size: 28px;
  }
  .dialog-brand {
    gap: 10px;
  }
  .dialog-brand .eyebrow {
    font-size: 7px;
  }
  .dialog-pillars {
    grid-template-columns: 1fr;
  }
  .dialog-pillars h3 {
    margin-top: 5px;
  }
  .dialog-pillars p {
    margin-top: 5px;
  }
}
/* Legal pages keep the site's editorial typography, with a calmer reading grid. */
.legal-header {
  justify-content: space-between;
}
.legal-home {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  font-size: 13px;
}
.legal-home span { font-size: 24px; }
.legal-main { padding: 0 var(--gutter); }
.legal-hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 78px 0 36px;
}
.legal-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--slate);
}
.legal-kicker > span { font-size: 10px; letter-spacing: 1.5px; }
.legal-hero h1 {
  margin: 32px 0 26px;
  font-family: var(--display);
  font-size: clamp(46px, 6.6vw, 102px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.legal-introduction {
  max-width: 650px;
  color: #48566b;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
  font-size: 12px;
  color: var(--slate);
}
.legal-meta > span:first-child { color: var(--blue); }
.legal-summary {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.legal-summary > div { padding: 28px 30px; }
.legal-summary > div + div { border-left: 1px solid #cdd8e9; }
.legal-summary h2 { font-size: 16px; font-weight: 550; line-height: 1.4; }
.legal-summary p { margin-top: 10px; max-width: 36ch; font-size: 14px; line-height: 1.75; color: #48566b; }
.legal-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(0, 2fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
  max-width: 1280px;
  margin: 68px auto 110px;
}
.legal-sidebar { position: sticky; top: 126px; }
.legal-sidebar .eyebrow { font-size: 10px; color: var(--slate); }
.legal-sidebar ol { list-style: none; padding: 0; margin: 20px 0 28px; }
.legal-sidebar li a {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  color: #48566b;
  font-size: 13px;
  line-height: 1.55;
}
.legal-sidebar li a:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.legal-sidebar li span { font-size: 10px; color: var(--slate); padding-top: 3px; font-variant-numeric: tabular-nums; }
.legal-related { display: flex; gap: 15px; border-top: 1px solid var(--line); padding-top: 25px; font-size: 13px; color: var(--blue); line-height: 1.6; }
.legal-article { min-width: 0; max-width: 760px; }
.legal-section { padding: 38px 0 42px; border-bottom: 1px solid var(--line); scroll-margin-top: 112px; }
.legal-section-number { font-size: 11px; letter-spacing: 1px; color: var(--blue); margin-bottom: 14px; }
.legal-section h2 { font-family: var(--display); font-size: clamp(24px, 2.2vw, 30px); font-weight: 550; letter-spacing: -0.035em; line-height: 1.35; margin-bottom: 22px; }
.legal-section > p:not(.legal-section-number), .legal-section li, .legal-section div p { color: #48566b; font-size: 16px; line-height: 1.85; overflow-wrap: anywhere; }
.legal-section > p + p { margin-top: 17px; }
.legal-section ul { padding-left: 23px; margin: 22px 0; }
.legal-section li { padding-left: 6px; margin: 12px 0; }
.legal-section strong { color: #28364a; font-weight: 600; }
.legal-section a { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.legal-section code { font-size: 0.85em; background: var(--ice); padding: 2px 5px; border-radius: 3px; }
.legal-purpose-list { display: grid; gap: 22px; margin: 0 0 24px; }
.legal-purpose-list > div { padding-left: 22px; border-left: 2px solid #b9cbe9; }
.legal-purpose-list h3 { font-size: 17px; font-weight: 550; margin-bottom: 7px; }
.legal-callout { padding: 24px; border: 1px solid #c2cfe5; background: var(--ice); border-radius: 4px; margin-bottom: 24px; }
.legal-callout > strong { font-size: 17px; line-height: 1.6; display: block; margin-bottom: 12px; }
.legal-contact { padding: 38px 0 0; }
.legal-contact .eyebrow { font-size: 9px; color: var(--slate); }
.legal-contact h2 { margin: 18px 0; font-family: var(--display); font-size: 36px; font-weight: 500; letter-spacing: -0.04em; }
.legal-contact > a { display: inline-flex; align-items: center; gap: 36px; font-size: clamp(20px, 2vw, 28px); color: var(--blue); border-bottom: 1px solid #a7b9db; padding-bottom: 12px; }
.legal-contact > p:last-child { margin-top: 15px; color: var(--slate); font-size: 13px; }
.legal-footer { padding-top: 40px; }
.legal-footer .footer-top { padding-bottom: 35px; }
@media (max-width: 900px) {
  .legal-hero { padding-top: 52px; }
  .legal-summary > div { padding: 22px; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; margin-top: 38px; margin-bottom: 64px; }
  .legal-sidebar { position: static; min-width: 0; }
  .legal-sidebar ol { display: flex; overflow-x: auto; gap: 12px; padding: 0 0 12px; margin: 14px 0 0; }
  .legal-sidebar li { flex: 0 0 auto; }
  .legal-sidebar li a { padding: 12px 16px; border: 1px solid var(--line); border-radius: 3px; }
  .legal-related { display: none; }
  .legal-article { max-width: none; }
}
@media (max-width: 600px) {
  .legal-header { gap: 16px; }
  .legal-home { font-size: 11px; gap: 8px; }
  .legal-header .brand { font-size: 20px; gap: 8px; letter-spacing: 3px; }
  .legal-kicker > span { display: none; }
  .legal-hero h1 { font-size: clamp(40px, 11vw, 60px); }
  .legal-meta { gap: 10px; flex-direction: column; }
  .legal-summary { grid-template-columns: 1fr; }
  .legal-summary > div + div { border-left: 0; border-top: 1px solid #cdd8e9; }
  .legal-summary > div { padding: 20px 22px; }
  .legal-summary p { max-width: none; }
  .legal-section { padding: 32px 0; }
  .legal-footer .footer-top { flex-wrap: wrap; }
  .legal-footer .footer-top > p { display: none; }
}
@media print {
  .legal-header, .legal-sidebar, .legal-footer, .skip-link, .legal-contact { display: none !important; }
  .legal-main { padding: 0; }
  .legal-hero { padding-top: 0; }
  .legal-hero h1 { font-size: 36pt; }
  .legal-layout { display: block; margin: 24px 0; }
  .legal-article { max-width: none; }
  .legal-section { padding: 18px 0; }
  .legal-section h2 { break-after: avoid; font-size: 18pt; }
  .legal-section p, .legal-section li { orphans: 3; widows: 3; }
  .legal-section > p:not(.legal-section-number), .legal-section li, .legal-section div p { font-size: 11pt; color: #111; }
  .legal-summary, .legal-callout { break-inside: avoid; }
}
/* The supplied logo is 800px wide. Budget its display size for dense screens
   instead of enlarging the source or changing its brand artwork. */
@media (min-resolution: 2dppx) {
  .smash-brand-stage { max-width: 400px; }
}
@media (min-resolution: 3dppx) {
  .smash-brand-stage { max-width: 266px; }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .will-reveal {
    opacity: 1;
    transform: none;
  }
}
