:root {
  --paper: #f4f1ea;
  --paper-2: #ebe8df;
  --ink: #111318;
  --ink-soft: #65666b;
  --line: #cbc8c0;
  --line-dark: #30333b;
  --night: #0d0f14;
  --night-raised: #15181f;
  --night-soft: #9ba2ae;
  --brand: #7b8fff;
  --brand-deep: #5673f4;
  --brand-soft: #eef2ff;
  --success: #43d17a;
  --max: 1340px;
  --pad: clamp(20px, 4vw, 64px);
  --sans: Arial, Helvetica, system-ui, -apple-system, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection,
body *::selection {
  color: white;
  background: var(--brand-deep);
}

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

img {
  height: auto;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.section-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 58px;
  background: rgba(244, 241, 234, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.company-mark,
.peptiary-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  width: fit-content;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.company-mark__glyph {
  color: var(--brand-deep);
  font-family: var(--mono);
  letter-spacing: -0.1em;
}

.peptiary-logo {
  font-size: 18px;
  letter-spacing: -0.035em;
}

.peptiary-logo img {
  width: 30px;
  height: 30px;
}

.site-nav {
  display: flex;
  gap: 30px;
  justify-self: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.01em;
}

.site-nav a,
.text-link,
.footer-links a {
  position: relative;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.signal-dot {
  display: inline-block;
  width: 15px;
  height: 2px;
  margin: 0 10px 3px 0;
  background: var(--brand-deep);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--ink);
  background: transparent;
}

.button--line {
  background: transparent;
}

.button--line:hover,
.button--line:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 780ms cubic-bezier(.2,.7,.2,1), transform 780ms cubic-bezier(.2,.7,.2,1);
}

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

/* Company */

.company-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  min-height: min(920px, 100svh);
  padding-top: 130px;
  padding-bottom: 90px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
}

.hero-grid span {
  border-left: 1px solid rgba(17, 19, 24, 0.08);
}

.hero-grid span:last-child {
  border-right: 1px solid rgba(17, 19, 24, 0.08);
}

.company-hero__copy {
  position: relative;
  z-index: 1;
}

.company-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(55px, 7.4vw, 112px);
  font-weight: 700;
  letter-spacing: -0.078em;
  line-height: .89;
}

.company-hero h1 em,
.product-hero h1 em {
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero-lede {
  max-width: 610px;
  margin: 36px 0 40px;
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.build-window {
  position: relative;
  align-self: center;
  color: #e9ebef;
  background: var(--ink);
  border: 1px solid #030405;
  box-shadow: 18px 18px 0 var(--line);
  transition: opacity 780ms cubic-bezier(.2,.7,.2,1), transform 780ms cubic-bezier(.2,.7,.2,1);
}

.build-window.is-visible {
  transform: translateY(0);
}

.build-window__bar,
.build-window__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 17px;
  border-bottom: 1px solid #34363c;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border: 1px solid #62656d;
  border-radius: 50%;
}

.build-window__body {
  padding: 26px 18px 30px;
  font-family: var(--mono);
  font-size: clamp(12px, 1.1vw, 14px);
}

.build-window__body p {
  display: grid;
  grid-template-columns: 35px 1fr;
  margin: 0;
  padding: 15px 0;
  color: #7c808a;
  border-bottom: 1px solid #26282e;
}

.build-window__body p.is-active {
  color: white;
}

.build-window__body p span {
  color: var(--brand);
}

.terminal-cursor {
  display: inline-block;
  width: 7px;
  height: 15px;
  margin: 0 0 -3px 5px;
  background: var(--brand);
  animation: blink 1.15s steps(1) infinite;
}

.build-window__footer {
  min-height: 50px;
  color: #737780;
  border-top: 1px solid #34363c;
  border-bottom: 0;
}

.build-window__footer strong {
  color: white;
  font-weight: 500;
}

.build-window__footer strong i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.scroll-note {
  position: absolute;
  bottom: 30px;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-note i {
  position: relative;
  width: 72px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}

.scroll-note i::after {
  position: absolute;
  width: 24px;
  height: 1px;
  background: var(--ink);
  content: "";
  animation: scan-line 2.3s ease-in-out infinite;
}

.project-section {
  padding: clamp(90px, 12vw, 170px) 0;
  color: white;
  background: var(--ink);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(50px, 7vw, 90px);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(43px, 6vw, 82px);
  letter-spacing: -0.065em;
  line-height: .98;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(420px, 1.24fr);
  min-height: 670px;
  color: var(--ink);
  background: #e9e7df;
  overflow: hidden;
}

.project-card__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 5vw, 78px);
  border-right: 1px solid var(--line);
}

.project-card__meta {
  position: absolute;
  top: 26px;
  right: 30px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-wordmark {
  width: min(100%, 410px);
  margin-bottom: 38px;
}

.project-card__copy > p {
  max-width: 480px;
  margin: 0;
  color: #4b4c50;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.project-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 70px;
  padding-top: 17px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card__visual {
  position: relative;
  min-height: 670px;
  background: var(--brand);
  overflow: hidden;
}

.visual-index {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 25px;
  font-family: var(--mono);
  font-size: 10px;
}

.phone-slice {
  position: absolute;
  top: 24px;
  left: 50%;
  width: min(40%, 290px);
  aspect-ratio: 828 / 1801;
  padding: 9px;
  background: #050608;
  border: 1px solid #20232a;
  border-radius: 46px;
  box-shadow: 0 28px 70px rgba(17, 19, 24, 0.28);
  transform: translateX(-50%);
}

.phone-slice img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 38px;
}

.orbit-label {
  position: absolute;
  padding: 8px 11px;
  color: white;
  border: 1px solid rgba(255,255,255,.6);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.orbit-label--one {
  top: 34%;
  left: 8%;
  transform: rotate(-90deg);
}

.orbit-label--two {
  right: 6%;
  bottom: 17%;
  transform: rotate(90deg);
}

.principles-section {
  padding-top: clamp(100px, 13vw, 180px);
  padding-bottom: clamp(100px, 13vw, 180px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: .45fr 1fr;
  align-items: start;
  max-width: none;
}

.principle-list {
  border-top: 1px solid var(--ink);
}

.principle {
  display: grid;
  grid-template-columns: 80px minmax(240px, .8fr) minmax(260px, 1fr);
  gap: 35px;
  align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.principle > span,
.feature-number,
.detail-card > span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
}

.principle h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -.045em;
}

.principle p {
  max-width: 490px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.company-section {
  padding: clamp(90px, 12vw, 160px) 0 0;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.company-section__grid {
  display: grid;
  grid-template-columns: .45fr 1fr;
  padding-bottom: clamp(90px, 12vw, 150px);
}

.company-statement > p:first-child {
  max-width: 850px;
  margin: 0;
  font-size: clamp(34px, 5vw, 67px);
  letter-spacing: -.055em;
  line-height: 1.06;
}

.company-statement__aside {
  margin: 55px 0 0;
  color: #94979f;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.8;
}

.signal-track {
  position: relative;
  display: flex;
  justify-content: space-around;
  min-width: 750px;
  padding: 23px 0;
  color: #858890;
  border-top: 1px solid #34363c;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .15em;
  overflow: hidden;
}

.signal-track__runner {
  position: absolute;
  top: -1px;
  left: 0;
  width: 14%;
  height: 1px;
  background: var(--brand);
  animation: signal-run 7s linear infinite;
}

.contact-section {
  padding-top: clamp(110px, 14vw, 190px);
  padding-bottom: clamp(100px, 13vw, 170px);
}

.contact-section h2 {
  max-width: 950px;
  margin: 0 0 60px;
  font-size: clamp(48px, 7vw, 98px);
  letter-spacing: -.07em;
  line-height: .94;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(21px, 3vw, 36px);
  letter-spacing: -.03em;
  transition: padding 220ms ease, color 220ms ease;
}

.contact-link:hover {
  padding-inline: 16px;
  color: var(--brand-deep);
}

.contact-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  min-height: 210px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid var(--line);
}

.company-mark--footer {
  align-self: end;
}

.site-footer > p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
}

/* Peptiary product */

.product-page {
  color: #f4f5f8;
  background: var(--night);
}

.site-header--dark.is-scrolled {
  color: white;
  background: rgba(13, 15, 20, .93);
  border-color: #2b2e36;
}

.product-hero {
  position: relative;
  min-height: 100svh;
  padding-top: 72px;
  background: var(--night);
  overflow: hidden;
}

.product-hero__noise {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  pointer-events: none;
}

.product-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, .72fr);
  align-items: center;
  gap: clamp(30px, 7vw, 110px);
  min-height: calc(100svh - 125px);
  padding-top: 75px;
  padding-bottom: 70px;
}

.product-hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.launch-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 36px;
  color: #9da2ad;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.launch-label span {
  width: 8px;
  height: 8px;
  background: var(--brand);
}

.product-hero__mark {
  width: 68px;
  height: 68px;
  margin-bottom: 32px;
}

.product-hero h1 {
  margin: 0;
  font-size: clamp(53px, 6.9vw, 100px);
  letter-spacing: -.073em;
  line-height: .92;
}

.product-hero h1 em {
  color: var(--brand);
}

.product-hero__copy > p {
  max-width: 650px;
  margin: 35px 0 38px;
  color: #a8adb7;
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -.025em;
  line-height: 1.46;
}

.button--brand {
  color: #0c0e13;
  background: var(--brand);
  border-color: var(--brand);
}

.button--brand:hover,
.button--brand:focus-visible {
  color: white;
  background: transparent;
}

.availability {
  color: #777c87;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-devices {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px;
  transition: opacity 780ms cubic-bezier(.2,.7,.2,1), transform 780ms cubic-bezier(.2,.7,.2,1);
}

.hero-devices.is-visible {
  transform: translateY(0);
}

.device {
  position: relative;
  width: min(100%, 328px);
  padding: 5px;
  background: #030405;
  border: 2px solid #30343d;
  border-radius: 50px;
  box-shadow: 0 35px 100px rgba(0,0,0,.38);
  overflow: hidden;
}

.device img {
  width: 100%;
  height: auto;
  border-radius: 40px;
}

.device--hero {
  position: relative;
  z-index: 2;
  width: min(62%, 300px);
}

.hero-devices::before,
.hero-devices::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(123, 143, 255, .25);
  border-radius: 50%;
}

.hero-devices::before {
  width: 480px;
  height: 480px;
}

.hero-devices::after {
  width: 640px;
  height: 640px;
}

.privacy-stamp {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 11%;
  width: 120px;
  height: 120px;
  color: var(--brand);
  animation: rotate-stamp 22s linear infinite;
}

.privacy-stamp text {
  fill: currentColor;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .11em;
}

.privacy-stamp circle {
  fill: currentColor;
}

.product-ticker {
  position: relative;
  z-index: 3;
  padding: 18px 0;
  color: var(--night);
  background: var(--brand);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.product-ticker > div {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.product-ticker i {
  font-style: normal;
}

.product-intro {
  padding-top: clamp(110px, 15vw, 210px);
  padding-bottom: clamp(100px, 13vw, 180px);
}

.product-intro > h2 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(46px, 7vw, 96px);
  letter-spacing: -.071em;
  line-height: .95;
}

.product-intro__copy {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(60px, 10vw, 150px);
  margin-top: 80px;
  margin-left: 26%;
}

.product-intro__copy > p {
  margin: 0;
  color: #9ca1ac;
  font-size: clamp(19px, 2.2vw, 26px);
  letter-spacing: -.03em;
  line-height: 1.48;
}

.micro-spec {
  border-top: 1px solid #343740;
}

.micro-spec span {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 10px;
  padding: 17px 0;
  color: #a8adb8;
  border-bottom: 1px solid #343740;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.micro-spec b {
  color: var(--brand);
}

.screen-story {
  padding-bottom: clamp(100px, 14vw, 190px);
}

.screen-feature {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(390px, 1.22fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
  min-height: 850px;
  padding: 80px 0;
  border-top: 1px solid #2e3139;
}

.screen-feature:last-child {
  border-bottom: 1px solid #2e3139;
}

.screen-feature--reverse .screen-feature__copy {
  order: 2;
}

.screen-feature--reverse .feature-device-wrap {
  order: 1;
}

.screen-feature__copy h3 {
  margin: 24px 0 28px;
  font-size: clamp(43px, 5.7vw, 76px);
  letter-spacing: -.065em;
  line-height: .98;
}

.screen-feature__copy > p {
  max-width: 550px;
  margin: 0;
  color: #979da8;
  font-size: 19px;
  line-height: 1.55;
}

.screen-feature__copy ul {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #30333b;
}

.screen-feature__copy li {
  position: relative;
  padding: 13px 0 13px 24px;
  color: #c8cbd2;
  border-bottom: 1px solid #30333b;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.screen-feature__copy li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.feature-device-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 900px;
  padding: 24px;
  background: #151820;
  border: 1px solid #2c3038;
  overflow: hidden;
}

.feature-device-wrap::before,
.feature-device-wrap::after {
  position: absolute;
  inset: 11%;
  border: 1px solid #252933;
  content: "";
  transform: rotate(45deg);
}

.feature-device-wrap::after {
  inset: 24%;
}

.feature-device-wrap .device {
  position: relative;
  z-index: 2;
  width: min(82%, 390px);
  margin: 0;
  border-radius: 50px;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.feature-device-wrap .device img {
  width: 100%;
  height: auto;
  border-radius: 43px;
}

.device-caption {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 22px;
  color: #777d89;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.privacy-section {
  position: relative;
  padding: clamp(100px, 13vw, 170px) 0;
  color: var(--ink);
  background: var(--brand);
  overflow: hidden;
}

.privacy-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
}

.privacy-grid span {
  border-left: 1px solid rgba(13, 15, 20, .1);
}

.privacy-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: center;
}

.privacy-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(49px, 7vw, 92px);
  letter-spacing: -.071em;
  line-height: .91;
}

.privacy-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
}

.privacy-console {
  background: var(--night);
  border: 1px solid #06070a;
  box-shadow: 18px 18px 0 rgba(13, 15, 20, .18);
  font-family: var(--mono);
}

.privacy-console__bar {
  display: flex;
  justify-content: space-between;
  padding: 15px 17px;
  color: #868b96;
  border-bottom: 1px solid #30333b;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.privacy-console dl {
  margin: 0;
  padding: 22px 18px;
}

.privacy-console dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  padding: 10px 0;
  border-bottom: 1px solid #272a31;
  font-size: 11px;
}

.privacy-console dt {
  color: #a1a6b0;
}

.privacy-console dd {
  margin: 0;
  color: var(--brand);
}

.privacy-console > p {
  margin: 0;
  padding: 16px 18px;
  color: white;
  font-size: 10px;
}

.privacy-console > p span {
  color: var(--success);
}

.detail-section {
  padding-top: clamp(110px, 14vw, 190px);
  padding-bottom: clamp(110px, 14vw, 190px);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #343740;
  border-left: 1px solid #343740;
}

.detail-card {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid #343740;
  border-bottom: 1px solid #343740;
}

.detail-card h3 {
  margin: 55px 0 13px;
  font-size: 26px;
  letter-spacing: -.045em;
}

.detail-card p {
  margin: 0;
  color: #8f949f;
  font-size: 15px;
  line-height: 1.55;
}

.medical-note {
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: 40px;
  padding-top: 32px;
  padding-bottom: 100px;
  color: #858a95;
  border-top: 1px solid #343740;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.65;
}

.medical-note span {
  color: var(--brand);
  text-transform: uppercase;
}

.medical-note p {
  max-width: 760px;
  margin: 0;
}

.product-cta {
  padding: clamp(100px, 13vw, 170px) 0;
  color: var(--ink);
  background: var(--paper);
  text-align: center;
}

.product-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-cta img {
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(17,19,24,.16);
}

.product-cta .eyebrow {
  margin: 35px 0 20px;
}

.product-cta h2 {
  margin: 0;
  font-size: clamp(50px, 7.5vw, 105px);
  letter-spacing: -.075em;
  line-height: .92;
}

.product-cta__inner > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.launch-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 10px 18px;
  color: white;
  background: var(--ink);
  border-radius: 12px;
  text-align: left;
}

.launch-button > span:first-child {
  font-size: 30px;
}

.launch-button > span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
}

.launch-button small {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.site-footer--product {
  color: white;
  background: var(--night);
  border-color: #343740;
}

.site-footer--product > p,
.site-footer--product .footer-links {
  color: #7f848f;
}

/* Legal pages */

.legal-main {
  padding-top: 72px;
}

.legal-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
  padding-top: 120px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
  background-image: linear-gradient(90deg, transparent calc(25% - 1px), rgba(203, 200, 192, .55) 25%, transparent calc(25% + 1px), transparent calc(75% - 1px), rgba(203, 200, 192, .55) 75%, transparent calc(75% + 1px));
}

.legal-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(64px, 10vw, 142px);
  letter-spacing: -.075em;
  line-height: .88;
}

.legal-hero h1 em {
  color: var(--brand-deep);
  font-weight: inherit;
  font-style: normal;
}

.legal-hero > p:last-child {
  max-width: 690px;
  margin: 40px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 23px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 820px);
  justify-content: space-between;
  gap: clamp(50px, 10vw, 150px);
  padding-top: 95px;
  padding-bottom: 140px;
}

.legal-index {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
}

.legal-index span {
  margin-bottom: 10px;
  padding-bottom: 12px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
}

.legal-index a {
  width: fit-content;
}

.legal-index a:hover,
.legal-content a:hover {
  color: var(--brand-deep);
}

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

.legal-section {
  padding: 0 0 75px;
  scroll-margin-top: 95px;
}

.legal-section + .legal-section {
  padding-top: 75px;
  border-top: 1px solid var(--line);
}

.legal-kicker,
.legal-updated {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.legal-section h2 {
  max-width: 760px;
  margin: 0 0 30px;
  font-size: clamp(32px, 4.5vw, 58px);
  letter-spacing: -.055em;
  line-height: 1;
}

.legal-section h3 {
  margin: 40px 0 14px;
  font-size: 21px;
  letter-spacing: -.025em;
}

.legal-section p {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.legal-address {
  padding: 30px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 14px;
  font-style: normal;
  line-height: 1.85;
}

.legal-address strong {
  font-family: var(--sans);
  font-size: 22px;
  letter-spacing: -.025em;
}

.legal-data-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-data-list div {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 2fr;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.legal-data-list dt {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.legal-data-list dd {
  margin: 0;
  font-weight: 700;
}

.legal-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 38px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.legal-fact-grid div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 115px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-fact-grid span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.legal-fact-grid strong {
  margin-top: auto;
  font-size: 20px;
}

.legal-updated {
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-page--product .legal-hero {
  border-color: var(--line-dark);
  background-image: linear-gradient(90deg, transparent calc(25% - 1px), rgba(48, 51, 59, .72) 25%, transparent calc(25% + 1px), transparent calc(75% - 1px), rgba(48, 51, 59, .72) 75%, transparent calc(75% + 1px));
}

.legal-page--product .legal-hero h1 em,
.legal-page--product .legal-content a:hover,
.legal-page--product .legal-index a:hover {
  color: var(--brand);
}

.legal-page--product .legal-hero > p:last-child,
.legal-page--product .legal-kicker,
.legal-page--product .legal-updated,
.legal-page--product .legal-section p,
.legal-page--product .legal-data-list dt,
.legal-page--product .legal-fact-grid span,
.legal-page--product .legal-index span {
  color: var(--night-soft);
}

.legal-page--product .legal-index span,
.legal-page--product .legal-section + .legal-section,
.legal-page--product .legal-address,
.legal-page--product .legal-data-list,
.legal-page--product .legal-data-list div,
.legal-page--product .legal-fact-grid,
.legal-page--product .legal-fact-grid div,
.legal-page--product .legal-updated {
  border-color: var(--line-dark);
}

.legal-page--product .legal-address {
  background: var(--night-raised);
}

.legal-page--product .legal-content a {
  color: #f4f5f8;
}

@keyframes blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes scan-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

@keyframes signal-run {
  from { transform: translateX(-100%); }
  to { transform: translateX(815%); }
}

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

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .company-hero,
  .product-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .company-hero {
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .build-window {
    width: min(100%, 620px);
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card__copy {
    min-height: 560px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading--split,
  .company-section__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .product-hero__grid {
    padding-top: 110px;
  }

  .product-hero__copy {
    max-width: 760px;
  }

  .hero-devices {
    min-height: 720px;
  }

  .product-intro__copy {
    margin-left: 0;
  }

  .screen-feature {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .privacy-section__inner {
    grid-template-columns: 1fr;
  }

  .privacy-console {
    width: min(100%, 650px);
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-index {
    position: static;
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 20px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 60px;
  }

  .header-cta {
    font-size: 10px;
  }

  .company-hero {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .company-hero h1 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .product-hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 12.2vw, 60px);
  }

  .product-hero h1 em {
    display: block;
    font-size: .88em;
    letter-spacing: -.065em;
  }

  .hero-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid span:nth-child(n+4) {
    display: none;
  }

  .build-window {
    box-shadow: 9px 9px 0 var(--line);
  }

  .scroll-note {
    bottom: 24px;
  }

  .project-card__copy {
    min-height: 500px;
    padding: 85px 25px 35px;
  }

  .project-card__meta span:nth-child(2) {
    display: none;
  }

  .project-card__visual,
  .project-card {
    min-height: 590px;
  }

  .phone-slice {
    top: 20px;
    width: min(66%, 250px);
  }

  .principle {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .principle p {
    grid-column: 2;
    font-size: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-main {
    padding-top: 60px;
  }

  .legal-hero {
    min-height: 410px;
    padding-top: 90px;
    padding-bottom: 45px;
  }

  .legal-hero h1 {
    font-size: clamp(52px, 17vw, 86px);
  }

  .legal-layout {
    padding-top: 65px;
    padding-bottom: 95px;
  }

  .legal-section,
  .legal-section + .legal-section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .legal-section:first-child {
    padding-top: 0;
  }

  .legal-section p {
    font-size: 16px;
  }

  .legal-data-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-fact-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .product-hero__grid {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .product-hero__mark {
    width: 55px;
    height: 55px;
  }

  .hero-devices {
    min-height: 610px;
  }

  .device--hero {
    width: min(72%, 280px);
  }

  .hero-devices::before {
    width: 350px;
    height: 350px;
  }

  .hero-devices::after {
    width: 500px;
    height: 500px;
  }

  .privacy-stamp {
    right: 1%;
    width: 94px;
    height: 94px;
  }

  .product-intro__copy {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 50px;
  }

  .screen-feature,
  .screen-feature--reverse {
    grid-template-columns: 1fr;
    gap: 45px;
    min-height: 0;
    padding: 75px 0;
  }

  .screen-feature--reverse .screen-feature__copy,
  .screen-feature--reverse .feature-device-wrap {
    order: initial;
  }

  .feature-device-wrap {
    min-height: 700px;
  }

  .feature-device-wrap .device {
    width: min(84%, 300px);
  }

  .privacy-console {
    box-shadow: 9px 9px 0 rgba(13,15,20,.18);
  }

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

  .detail-card {
    min-height: 220px;
  }

  .detail-card h3 {
    margin-top: 40px;
  }

  .medical-note {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .button-row {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .availability {
    width: 100%;
    text-align: center;
  }

  .project-card__visual,
  .project-card {
    min-height: 530px;
  }

  .hero-devices {
    min-height: 550px;
  }

  .device--hero {
    width: min(76%, 270px);
  }

  .feature-device-wrap {
    min-height: 660px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
