@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #0a1020;
  --ink-soft: #18223a;
  --paper: #f2f0ea;
  --paper-bright: #faf9f6;
  --blue: #155eef;
  --blue-bright: #4d8dff;
  --orange: #ff9a68;
  --muted: #707789;
  --line: rgba(10, 16, 32, 0.16);
  --line-light: rgba(255, 255, 255, 0.15);
  --shell: min(1240px, calc(100vw - 64px));
  --radius: 5px;
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: white;
  background: var(--blue);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 16, 32, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
}

.brand-lockup {
  padding: 8px 11px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  line-height: 0;
}

.brand-logo {
  width: 190px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 500;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.74);
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: white;
}

.primary-nav .nav-product-link {
  padding: 10px 15px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 35%, rgba(108, 134, 255, 0.22), transparent 31%),
    linear-gradient(145deg, #0b1122 0%, #0b1227 58%, #101a33 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(137, 160, 255, 0.13);
  border-radius: 50%;
}

.orbit-one {
  top: 120px;
  right: -210px;
  width: 720px;
  height: 720px;
}

.orbit-two {
  top: 215px;
  right: -115px;
  width: 530px;
  height: 530px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  padding-top: 135px;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 27px;
  height: 2px;
  background: var(--orange);
}

.eyebrow.dark {
  color: var(--muted);
}

.hero h1,
.section-heading h2,
.principles-intro h2,
.company h2,
.product-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(55px, 6.2vw, 88px);
}

h1 em,
h2 em {
  color: var(--blue-bright);
  font-style: normal;
}

.hero-lede {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--blue-bright);
}

.button-quiet {
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.48);
}

.hero-note {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #56f09f;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(86, 240, 159, 0.7);
}

.hero-studio {
  position: relative;
}

.studio-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 460px;
  height: 460px;
  background: rgba(108, 134, 255, 0.24);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(-50%, -50%);
}

.studio-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: rgba(13, 22, 43, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 9px;
  box-shadow: 0 48px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.studio-top,
.studio-bottom,
.visual-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.studio-top,
.studio-bottom {
  height: 48px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.studio-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.studio-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.studio-state {
  color: #7df2b4;
}

.studio-state i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  background: currentColor;
  border-radius: 50%;
}

.studio-canvas {
  position: relative;
  display: grid;
  min-height: 475px;
  padding: 46px;
  align-content: space-between;
  background:
    linear-gradient(rgba(137, 160, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 160, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 72% 38%, rgba(108, 134, 255, 0.13), transparent 34%);
  background-size: 54px 54px, 54px 54px, auto;
}

.studio-statement {
  position: relative;
  z-index: 2;
}

.studio-statement span {
  display: block;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.studio-statement strong {
  display: block;
  max-width: 320px;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.studio-loop {
  position: absolute;
  top: 38px;
  right: 45px;
  width: 215px;
  height: 215px;
  border: 1px solid rgba(137, 160, 255, 0.33);
  border-radius: 50%;
}

.studio-loop::before,
.studio-loop::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(137, 160, 255, 0.18);
  border-radius: 50%;
}

.studio-loop::before {
  inset: 27px;
}

.studio-loop::after {
  inset: 62px;
}

.loop-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--ink);
  background: var(--blue-bright);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%);
}

.loop-node {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border: 2px solid var(--ink-soft);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 154, 104, 0.55);
}

.node-one {
  top: 12px;
  left: 68px;
}

.node-two {
  right: 13px;
  bottom: 58px;
}

.node-three {
  bottom: 5px;
  left: 87px;
}

.studio-steps {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 165px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: repeat(4, 1fr);
}

.studio-steps > div {
  min-width: 0;
  padding: 18px 12px 0 0;
}

.studio-steps span {
  display: block;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
}

.studio-steps strong,
.studio-steps small {
  display: block;
}

.studio-steps strong {
  font-family: var(--font-display);
  font-size: 13px;
}

.studio-steps small {
  margin-top: 3px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.studio-tag {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(10, 16, 32, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.12em;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.studio-tag span {
  margin-right: 8px;
  color: var(--orange);
  font-weight: 700;
}

.tag-one {
  top: 24%;
  right: -35px;
}

.tag-two {
  bottom: 17%;
  left: -37px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip > div {
  display: grid;
  min-height: 126px;
  padding: 28px;
  align-content: center;
  border-right: 1px solid var(--line-light);
  grid-template-columns: 45px 1fr;
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.proof-strip strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}

.proof-strip small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
}

.section {
  padding: 135px 0;
}

.products {
  background: var(--paper);
}

.section-heading {
  display: grid;
  margin-bottom: 70px;
  align-items: end;
  grid-template-columns: 1fr 380px;
  gap: 70px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.section-heading h2,
.principles-intro h2,
.company h2 {
  font-size: clamp(48px, 5.6vw, 76px);
}

.section-heading h2 em,
.company h2 em {
  color: var(--blue);
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
}

.featured-product {
  display: grid;
  overflow: hidden;
  color: white;
  background: var(--ink);
  border-radius: 9px;
  grid-template-columns: 0.82fr 1.18fr;
}

.featured-copy {
  padding: 65px;
}

.featured-number {
  margin-bottom: 52px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.coming-soon-badge {
  display: inline-flex;
  min-height: 28px;
  padding: 0 11px;
  align-items: center;
  color: #06131d;
  background: #88ee6a;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.12em;
  box-shadow: 0 0 18px rgba(136, 238, 106, 0.18);
}

.product-release-status {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.featured-brand {
  display: flex;
  margin-bottom: 26px;
  align-items: center;
  gap: 13px;
  color: #96fca7;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.radardesk-mark-large {
  display: block;
  width: 36px;
  height: 36px;
  background:
    radial-gradient(circle, #a8ffb7 0 5%, transparent 6%),
    repeating-radial-gradient(circle, transparent 0 25%, rgba(111, 255, 137, 0.55) 26% 27%);
  border: 1px solid #74f98c;
  border-radius: 50%;
}

.featured-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.featured-copy > p {
  max-width: 500px;
  margin: 29px 0;
  color: rgba(255, 255, 255, 0.62);
}

.featured-copy ul {
  display: grid;
  padding: 0;
  margin: 28px 0 38px;
  grid-template-columns: 1fr 1fr;
  gap: 11px 22px;
  list-style: none;
}

.featured-copy li {
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
}

.featured-copy li::before {
  margin-right: 8px;
  color: #7df293;
  content: "＋";
}

.featured-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button-dark {
  color: var(--ink);
  background: #96fca7;
}

.store-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.product-store-badge,
.footer-store-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 8px;
  line-height: 0;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.product-store-badge {
  flex: 0 0 auto;
}

.product-store-badge:hover,
.product-store-badge:focus-visible,
.footer-store-badge:hover,
.footer-store-badge:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.product-store-badge:focus-visible,
.footer-store-badge:focus-visible {
  outline: 2px solid #89c5ff;
  outline-offset: 4px;
}

.product-store-badge img,
.footer-store-badge img {
  display: block;
  height: auto;
}

.product-store-badge img {
  width: 180px;
  max-width: 100%;
}

.featured-visual {
  display: flex;
  min-width: 0;
  padding: 40px 40px 28px 0;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 45% 50%, rgba(81, 255, 115, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent);
}

.screen-frame {
  overflow: hidden;
  background: #020502;
  border: 1px solid rgba(147, 255, 167, 0.22);
  border-radius: 6px;
  box-shadow: 0 45px 80px rgba(0, 0, 0, 0.35);
}

.screen-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 1044;
  object-fit: contain;
}

.screen-bar {
  display: flex;
  height: 34px;
  padding: 0 12px;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.screen-bar i {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.23);
  border-radius: 50%;
}

.screen-bar span {
  margin-left: auto;
}

.visual-caption {
  display: flex;
  padding-top: 17px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.dff-product {
  margin-top: 28px;
  background: #101b33;
}

.dff-product .featured-brand {
  color: #89c5ff;
}

.dff-product .featured-brand img {
  border-radius: 9px;
}

.dff-product .featured-copy li::before {
  color: #63b3ff;
}

.dff-product .button-dark {
  background: #89c5ff;
}

.dff-product .featured-visual {
  background:
    radial-gradient(circle at 45% 50%, rgba(47, 128, 237, 0.19), transparent 43%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent);
}

.dff-product .screen-frame {
  border-color: rgba(99, 179, 255, 0.27);
}

.dff-product .screen-frame img {
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  object-position: top center;
}

.tracon-product {
  margin-top: 28px;
  background: #071722;
}

.tracon-product .featured-brand {
  color: #5bd6ee;
}

.tracon-product .featured-brand img {
  border-radius: 9px;
}

.tracon-product .featured-copy li::before {
  color: #88ee6a;
}

.tracon-product .button-dark {
  background: #5bd6ee;
}

.tracon-product .featured-visual {
  background:
    radial-gradient(circle at 45% 50%, rgba(46, 184, 216, 0.2), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent);
}

.tracon-product .screen-frame {
  border-color: rgba(91, 214, 238, 0.3);
}

.tracon-product .screen-frame img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  object-position: center;
}

.development-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.development-status i {
  width: 7px;
  height: 7px;
  background: #88ee6a;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(136, 238, 106, 0.7);
}

.footer-store-badge {
  margin-top: 3px;
}

.next-product {
  display: grid;
  padding: 54px 0 0;
  align-items: center;
  grid-template-columns: 120px 1fr 0.8fr;
  gap: 45px;
}

.next-index {
  color: rgba(10, 16, 32, 0.14);
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.next-product .eyebrow {
  margin-bottom: 12px;
}

.next-product h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.next-product > p {
  color: var(--muted);
}

.principles {
  color: white;
  background: var(--ink-soft);
}

.principles-intro {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: 1fr 390px;
  gap: 60px;
}

.principles-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -35px;
}

.principles-intro > p:last-child {
  align-self: end;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
}

.principle-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.principle {
  position: relative;
  min-height: 430px;
  padding: 38px;
  border-right: 1px solid var(--line-light);
}

.principle:last-child {
  border-right: 0;
}

.principle-index {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.principle-symbol {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 55px 0 50px;
}

.symbol-clarity {
  border: 1px solid rgba(137, 160, 255, 0.4);
  border-radius: 50%;
}

.symbol-clarity::before,
.symbol-clarity::after {
  position: absolute;
  content: "";
  background: var(--blue-bright);
}

.symbol-clarity::before {
  top: 49px;
  left: -18px;
  width: 136px;
  height: 1px;
}

.symbol-clarity::after {
  top: -18px;
  left: 49px;
  width: 1px;
  height: 136px;
}

.symbol-depth {
  border: 1px solid rgba(255, 154, 104, 0.5);
  transform: rotate(45deg);
}

.symbol-depth::before,
.symbol-depth::after {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(255, 154, 104, 0.45);
}

.symbol-depth::after {
  inset: 30px;
}

.symbol-finish {
  background: conic-gradient(from 0deg, var(--blue) 0 72%, rgba(255, 255, 255, 0.08) 72% 100%);
  border-radius: 50%;
}

.symbol-finish::after {
  position: absolute;
  inset: 16px;
  content: "";
  background: var(--ink-soft);
  border-radius: 50%;
}

.principle h3 {
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.principle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.company {
  background: var(--paper-bright);
}

.company-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
}

.company-copy {
  padding-top: 47px;
}

.company-lede {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.company-copy > p:not(.company-lede) {
  color: var(--muted);
}

.company-values {
  margin-top: 43px;
  border-top: 1px solid var(--line);
}

.company-values > div {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 165px 1fr;
  gap: 18px;
}

.company-values strong {
  font-size: 13px;
}

.company-values span {
  color: var(--muted);
  font-size: 13px;
}

.product-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: white;
  background: var(--blue);
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 68px 68px;
  transform: rotate(-8deg) scale(1.2);
}

.cta-layout {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.product-cta h2 {
  font-size: clamp(48px, 5.3vw, 74px);
}

.product-cta h2 em {
  color: var(--ink);
}

.cta-actions {
  display: flex;
  padding-bottom: 5px;
  align-items: center;
  flex-direction: column;
  gap: 17px;
}

.button-light {
  min-width: 210px;
  color: var(--ink);
  background: white;
}

.cta-actions > a:last-child {
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  padding: 85px 0 28px;
  color: white;
  background: #070b16;
}

.footer-main {
  display: grid;
  padding-bottom: 75px;
  grid-template-columns: 0.9fr 0.7fr 1.5fr;
  gap: 70px;
}

.footer-main > p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.75fr 0.95fr 1.2fr 1fr;
  gap: 38px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper-bright);
}

.legal-header {
  color: white;
  background: var(--ink);
}

.legal-header .nav-shell {
  min-height: 82px;
}

.back-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.legal {
  width: min(760px, calc(100vw - 48px));
  min-height: 65vh;
  padding: 100px 0 130px;
  margin-inline: auto;
}

.legal .eyebrow {
  color: var(--muted);
}

.legal h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 86px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal h2 {
  margin: 48px 0 12px;
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.03em;
}

.legal p,
.legal li {
  color: #555e70;
}

.legal .updated {
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 13px;
}

.legal-note {
  padding: 24px;
  margin-top: 50px;
  background: #ebeef9;
  border-left: 3px solid var(--blue);
}

.legal-note p {
  margin: 5px 0 0;
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 42px, 900px);
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 160px 0 90px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-studio {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .featured-product {
    grid-template-columns: 1fr;
  }

  .featured-visual {
    padding: 0 40px 40px;
  }

  .principle {
    padding: 30px;
  }

  .company-layout {
    gap: 55px;
  }

  .footer-main {
    grid-template-columns: 0.75fr 0.65fr 1.6fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-lockup {
    padding: 7px 9px;
  }

  .brand-logo {
    width: 158px;
  }

  .nav-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
  }

  .nav-toggle i {
    width: 17px;
    height: 1px;
    background: currentColor;
  }

  .primary-nav {
    position: absolute;
    top: 70px;
    left: 16px;
    display: none;
    width: calc(100% - 32px);
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: #11192e;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 125px;
    gap: 65px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .featured-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .studio-canvas {
    min-height: 430px;
    padding: 30px 24px;
  }

  .studio-loop {
    display: none;
  }

  .studio-tag,
  .studio-bottom span:last-child {
    display: none;
  }

  .studio-steps {
    margin-top: 70px;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .section {
    padding: 92px 0;
  }

  .section-heading,
  .principles-intro,
  .company-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading .eyebrow,
  .principles-intro .eyebrow {
    margin-bottom: 0;
  }

  .section-heading h2,
  .principles-intro h2,
  .company h2 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .featured-copy {
    padding: 36px 25px;
  }

  .featured-number {
    margin-bottom: 36px;
  }

  .featured-copy ul {
    grid-template-columns: 1fr;
  }

  .featured-visual {
    padding: 0 14px 24px;
  }

  .next-product {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .next-index {
    font-size: 58px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .principle-symbol {
    margin: 40px 0;
  }

  .company-copy {
    padding-top: 0;
  }

  .company-values > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .cta-layout {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-actions {
    align-items: stretch;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
