@font-face {
  font-family: "Chakra Petch";
  src: url("/assets/fonts/chakra-petch-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Chakra Petch";
  src: url("/assets/fonts/chakra-petch-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Chakra Petch";
  src: url("/assets/fonts/chakra-petch-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #f7f7f2;
  --paper-deep: #ebebe4;
  --ink: #09090b;
  --ink-soft: #141417;
  --white: #ffffff;
  --muted: #6f6f6b;
  --line: rgba(9, 9, 11, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --green: #56ed94;
  --shell: min(1360px, calc(100vw - 64px));
  --header-height: 84px;
  --display: "Chakra Petch", "Arial Narrow", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

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

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

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

p,
h1,
h2,
h3,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: -100px;
  left: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 12px;
}

.launch-banner {
  position: relative;
  display: block;
  min-height: 64px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-banner::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--green) 48%, transparent 100%);
  content: "";
  opacity: 0.72;
  transform: translateX(-100%);
  animation: launch-banner-line 4.5s ease-in-out infinite;
}

.launch-banner-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: launch-banner-marquee 24s linear infinite;
}

.launch-banner-item {
  display: flex;
  flex: 0 0 auto;
  min-width: max(50vw, 580px);
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 38px;
  white-space: nowrap;
}

@keyframes launch-banner-marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes launch-banner-line {
  50%,
  100% {
    transform: translateX(100%);
  }
}

.launch-banner:hover .launch-banner-track,
.launch-banner:focus-visible .launch-banner-track {
  animation-play-state: paused;
}

.launch-banner-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
}

.launch-banner-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(86, 237, 148, 0.12);
  animation: launch-banner-pulse 2s ease-in-out infinite;
}

.launch-banner strong {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.launch-banner-note {
  color: rgba(255, 255, 255, 0.46);
}

.launch-banner-arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.launch-banner:hover .launch-banner-arrow {
  transform: translate(3px, -3px);
}

@keyframes launch-banner-pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(86, 237, 148, 0);
  }
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(247, 247, 242, 0.97);
}

.header-inner {
  position: relative;
  z-index: 101;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand-link {
  justify-self: start;
  width: 148px;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.footer-links a {
  position: relative;
}

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

.desktop-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 24px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.language-switch button {
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 180ms ease;
}

.language-switch button[aria-pressed="true"],
.language-switch button:hover {
  opacity: 1;
}

.language-switch span {
  opacity: 0.24;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 4px;
  width: 26px;
  height: 1px;
  background: var(--ink);
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle span:first-child {
  top: 12px;
}

.menu-toggle span:last-child {
  top: 21px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 17px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 17px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  inset: var(--header-height) 0 auto;
  display: none;
  min-height: calc(100svh - var(--header-height));
  transform: translateY(-8px);
  padding: 46px 32px;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
}

.mobile-menu a span:first-child {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.mobile-menu a span:last-child {
  font-size: clamp(28px, 8vw, 44px);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* Shared type and controls */

.eyebrow,
.section-index,
.product-meta,
.visual-caption,
.footer-bottom {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(9, 9, 11, 0.08);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(9, 9, 11, 0);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.3;
  transition: transform 220ms ease;
}

.button:hover svg {
  transform: translateX(4px);
}

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

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

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: transparent;
  color: var(--white);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  padding: 9px 0 7px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  min-height: calc(100svh - var(--header-height));
  padding-block: 52px 62px;
}

.hero-copy {
  padding-top: 20px;
}

.hero h1 {
  margin: 42px 0 34px;
  font-size: clamp(64px, 7.2vw, 118px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.83;
}

.hero h1 > span {
  display: block;
}

.hero-title-accent {
  color: transparent;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.06em;
  -webkit-text-stroke: 1.5px var(--ink);
}

.hero-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 570px;
  margin-top: 62px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-index > div {
  padding: 17px 0 18px;
}

.hero-index > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.hero-index span,
.hero-index strong {
  display: block;
  font-family: var(--display);
}

.hero-index span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.hero-index strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  aspect-ratio: 0.96;
  max-height: 720px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  content: "";
  pointer-events: none;
}

.visual-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.hero-visual::after {
  position: absolute;
  z-index: -2;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(70px);
  content: "";
}

.hero-visual > img {
  position: relative;
  z-index: 2;
  width: 56%;
  animation: mark-float 7s ease-in-out infinite;
}

@keyframes mark-float {
  50% {
    transform: translateY(-10px);
  }
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.orbit::before {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.orbit-one {
  width: 76%;
  aspect-ratio: 1;
  animation: orbit-spin 24s linear infinite;
}

.orbit-two {
  width: 102%;
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.08);
  animation: orbit-spin 32s linear reverse infinite;
}

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

.visual-tag {
  position: absolute;
  z-index: 3;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.visual-tag-top {
  top: 25px;
  left: 27px;
}

.visual-tag-bottom {
  right: 27px;
  bottom: 25px;
  writing-mode: vertical-rl;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 27px;
  bottom: 25px;
  left: 27px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-right: 31px;
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.13em;
  line-height: 1.55;
}

.hero-visual figcaption span:last-child {
  text-align: right;
  opacity: 0.5;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  padding: 13px 0 12px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  animation: ticker 24s linear infinite;
}

.ticker-track i {
  font-size: 8px;
  font-style: normal;
  opacity: 0.5;
}

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

/* Product introduction */

.products-intro {
  display: grid;
  grid-template-columns: 0.8fr 2.3fr 0.9fr;
  gap: 46px;
  align-items: start;
  padding-block: clamp(112px, 12vw, 180px);
}

.section-index {
  color: var(--muted);
}

.section-index-light {
  color: rgba(255, 255, 255, 0.5);
}

.products-intro h2,
.studio-heading h2,
.collab-intro h2,
.closing-cta h2 {
  font-size: clamp(44px, 5.2vw, 78px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.products-intro > p:last-child,
.collab-intro > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

/* Products */

.product-coincubed {
  padding-block: 84px 78px;
  background: var(--ink);
  color: var(--white);
}

.product-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  gap: clamp(58px, 7vw, 112px);
  align-items: center;
}

.product-inner-reverse {
  grid-template-columns: minmax(390px, 0.85fr) minmax(0, 1.15fr);
}

.product-visual {
  position: relative;
  overflow: hidden;
  min-height: 720px;
}

.cube-visual {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050507;
}

.cube-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.12);
  opacity: 0.72;
}

.cube-backdrop-video {
  object-position: center;
  filter: saturate(0.92) contrast(1.08);
  opacity: 0.9;
}

.cube-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.78), transparent 45%),
    linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent 55%);
}

.cube-visual::after,
.d8-visual::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
  pointer-events: none;
}

.product-number {
  position: absolute;
  z-index: 3;
  top: 30px;
  left: 34px;
  color: var(--white);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.cube-visual-partner {
  position: absolute;
  z-index: 5;
  top: 30px;
  right: 34px;
  max-width: 190px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.phone {
  position: absolute;
  z-index: 4;
  overflow: hidden;
  border-radius: 36px;
  background: #08080c;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.phone-speaker {
  position: absolute;
  z-index: 6;
  top: 11px;
  left: 50%;
  width: 32%;
  height: 19px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050506;
}

.phone-cube {
  right: 7.5%;
  bottom: -8%;
  width: min(36%, 290px);
  transform: rotate(3.5deg);
  border: 8px solid #09090b;
}

.phone-cube > img {
  width: 100%;
  height: auto;
}

.visual-caption {
  position: absolute;
  z-index: 5;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  justify-content: space-between;
  padding-right: 36%;
  color: rgba(255, 255, 255, 0.6);
}

.product-copy {
  padding-block: 30px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.55);
}

.live-pill,
.soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(86, 237, 148, 0.12);
}

.coincubed-logo {
  width: min(390px, 88%);
  margin: 64px 0 24px;
}

.product-tagline {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-partner {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-description {
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.58;
}

.feature-list {
  margin-bottom: 38px;
  border-top: 1px solid var(--line-light);
}

.feature-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 14px;
}

.feature-list li span:first-child {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 86px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.metric {
  padding: 44px 32px 68px;
}

.metric:first-child {
  padding-left: 0;
}

.metric + .metric {
  border-left: 1px solid var(--line-light);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  margin-bottom: 11px;
  font-family: var(--display);
  font-size: clamp(47px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.metric strong.metric-word {
  font-size: clamp(32px, 4vw, 58px);
}

.metric span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.metrics-note {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* D8 */

.product-d8 {
  padding-block: clamp(96px, 10vw, 150px);
  background: var(--paper);
}

.product-meta-dark {
  border-color: var(--line);
  color: var(--muted);
}

.soon-pill {
  color: var(--ink);
}

.soon-pill::before {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.d8-wordmark {
  width: 178px;
  margin: 54px 0 34px;
  filter: invert(1);
}

.d8-copy h2 {
  max-width: 590px;
  font-size: clamp(42px, 4.9vw, 72px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.d8-copy .product-description {
  color: #565652;
}

.feature-list-dark {
  border-color: var(--line);
}

.feature-list-dark li {
  border-color: var(--line);
}

.feature-list-dark li span:first-child {
  color: var(--muted);
}

.d8-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 780px;
  background: var(--ink);
}

.product-number-dark {
  color: var(--white);
}

.d8-crosshair {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.d8-crosshair::before,
.d8-crosshair::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.11);
  content: "";
}

.d8-crosshair::before {
  top: 50%;
  left: -22%;
  width: 144%;
  height: 1px;
}

.d8-crosshair::after {
  top: -22%;
  left: 50%;
  width: 1px;
  height: 144%;
}

.phone-d8 {
  position: relative;
  width: min(42%, 330px);
  min-width: 278px;
  border: 8px solid #24242b;
  background: #0a0a0f;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.72), 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.d8-screen {
  min-height: 626px;
  padding: 58px 19px 28px;
  background: radial-gradient(120% 70% at 50% 8%, #1a1a25, transparent 60%), #0a0a0f;
  color: #f4f4f6;
}

.d8-screen > img {
  width: 112px;
  margin: 0 auto 50px;
}

.d8-screen-title {
  margin-bottom: 15px;
  color: rgba(244, 244, 246, 0.56);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.d8-tool {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
  padding: 14px 13px;
  border: 1px solid rgba(244, 244, 246, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.d8-tool-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(244, 244, 246, 0.22);
  border-radius: 10px;
  font-family: var(--display);
  font-size: 14px;
}

.d8-tool > span:nth-child(2) {
  min-width: 0;
}

.d8-tool strong,
.d8-tool small {
  display: block;
}

.d8-tool strong {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.d8-tool small {
  overflow: hidden;
  color: rgba(244, 244, 246, 0.5);
  font-size: 8px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.d8-tool i {
  color: rgba(244, 244, 246, 0.35);
  font-size: 12px;
  font-style: normal;
}

.d8-screen-foot {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  color: rgba(244, 244, 246, 0.35);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.09em;
  text-align: center;
}

.visual-caption-dark {
  padding-right: 0;
}

/* Studio */

.studio-section {
  padding-block: clamp(110px, 12vw, 180px);
  background: var(--ink);
  color: var(--white);
}

.studio-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.45fr 0.75fr;
  gap: 46px;
  align-items: start;
  margin-bottom: 94px;
}

.studio-heading > p:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.6;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.person-card {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  padding: 46px;
}

.person-card + .person-card {
  border-left: 1px solid var(--line-light);
}

.person-card::after {
  position: absolute;
  right: -16%;
  bottom: -32%;
  width: 64%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.person-card:hover::after {
  transform: scale(1.25);
}

.person-monogram {
  position: absolute;
  top: 50px;
  right: 46px;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--display);
  font-size: 240px;
  line-height: 0.8;
}

.person-count {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.person-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 158px;
  font-family: var(--display);
  font-size: clamp(31px, 3.5vw, 50px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.person-role {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person-bio {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

.person-card > a {
  position: absolute;
  z-index: 2;
  right: 46px;
  bottom: 44px;
  left: 46px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Collaborations */

.collaborations {
  padding-block: clamp(110px, 12vw, 180px);
}

.collab-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.45fr 0.75fr;
  gap: 46px;
  align-items: start;
  margin-bottom: 94px;
}

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

.collab-list a {
  display: grid;
  grid-template-columns: 80px minmax(280px, 1.2fr) minmax(220px, 0.8fr) 30px;
  align-items: center;
  gap: 30px;
  min-height: 114px;
  border-bottom: 1px solid var(--line);
  transition: padding 260ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease;
}

.collab-list a:hover {
  padding-inline: 18px;
  background: var(--paper-deep);
}

.collab-index {
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.collab-list strong {
  font-family: var(--display);
  font-size: clamp(29px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.collab-list a > span:nth-child(3) {
  color: var(--muted);
  font-size: 13px;
}

.collab-list i {
  justify-self: end;
  font-size: 17px;
  font-style: normal;
}

/* Closing CTA and footer */

.closing-cta {
  padding-block: clamp(100px, 11vw, 160px);
  background: var(--ink-soft);
  color: var(--white);
}

.closing-cta .shell {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 46px;
}

.closing-cta h2 {
  max-width: 970px;
}

.closing-cta .button {
  grid-column: 2;
  justify-self: start;
  margin-top: 24px;
}

.button-large {
  min-height: 62px;
  padding-inline: 28px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  padding-block: 76px 68px;
  border-bottom: 1px solid var(--line-light);
}

.footer-brand {
  width: 180px;
}

.footer-main > p {
  max-width: 290px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

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

/* Entry motion */

.js .reveal {
  transform: translateY(26px);
  opacity: 0;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), opacity 640ms ease;
}

.js .reveal-delay {
  transition-delay: 100ms;
}

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

/* Responsive */

@media (max-width: 1180px) {
  :root {
    --shell: min(1360px, calc(100vw - 48px));
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(58px, 7vw, 88px);
  }

  .product-inner,
  .product-inner-reverse {
    gap: 58px;
  }

  .product-visual {
    min-height: 640px;
  }

  .d8-visual {
    min-height: 700px;
  }

  .phone-d8 {
    min-width: 250px;
  }

  .d8-screen {
    min-height: 575px;
  }

  .collab-list a {
    grid-template-columns: 56px minmax(240px, 1.2fr) minmax(190px, 0.8fr) 30px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand-link {
    width: 132px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 78px 62px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    max-width: 820px;
    font-size: clamp(68px, 12vw, 112px);
  }

  .hero-visual {
    width: min(100%, 780px);
    justify-self: end;
    aspect-ratio: 1.18;
  }

  .hero-visual > img {
    width: 46%;
  }

  .products-intro,
  .studio-heading,
  .collab-intro {
    grid-template-columns: 0.65fr 2.35fr;
  }

  .products-intro > p:last-child,
  .studio-heading > p:last-child,
  .collab-intro > p:last-child {
    grid-column: 2;
    max-width: 560px;
  }

  .product-inner,
  .product-inner-reverse {
    grid-template-columns: 1fr;
  }

  .product-copy {
    max-width: 680px;
  }

  .cube-visual,
  .d8-visual {
    min-height: 760px;
  }

  .phone-cube {
    width: 31%;
  }

  .phone-d8 {
    width: min(38%, 330px);
  }

  .d8-copy {
    order: 1;
  }

  .d8-visual {
    order: 2;
  }

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

  .person-card + .person-card {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .collab-list a {
    grid-template-columns: 48px 1fr 30px;
    gap: 24px;
  }

  .collab-list a > span:nth-child(3) {
    display: none;
  }

  .closing-cta .shell {
    grid-template-columns: 0.65fr 2.35fr;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-main > p {
    grid-row: 2;
  }

  .footer-links {
    grid-row: 1 / span 2;
    grid-column: 2;
    flex-direction: column;
    align-items: flex-end;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .header-actions {
    gap: 13px;
  }

  .launch-banner {
    min-height: 58px;
    font-size: 9px;
  }

  .launch-banner-item {
    min-width: 360px;
    min-height: 58px;
    gap: 14px;
    padding-inline: 22px;
  }

  .launch-banner strong {
    font-size: 13px;
  }

  .launch-banner-arrow {
    font-size: 16px;
  }

  .launch-banner-note {
    display: none;
  }

  .brand-link {
    width: 122px;
  }

  .mobile-menu {
    padding-inline: 16px;
  }

  .hero {
    gap: 44px;
    padding-block: 54px 46px;
  }

  .hero h1 {
    margin: 32px 0 28px;
    font-size: clamp(55px, 17vw, 82px);
    letter-spacing: -0.075em;
  }

  .hero-title-accent {
    -webkit-text-stroke-width: 1px;
  }

  .hero-index {
    margin-top: 44px;
  }

  .hero-visual {
    aspect-ratio: 0.88;
  }

  .hero-visual > img {
    width: 60%;
  }

  .visual-grid {
    background-size: 42px 42px;
  }

  .ticker-track {
    gap: 25px;
  }

  .products-intro,
  .studio-heading,
  .collab-intro {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-block: 96px;
  }

  .studio-heading,
  .collab-intro {
    margin-bottom: 60px;
    padding-block: 0;
  }

  .products-intro > p:last-child,
  .studio-heading > p:last-child,
  .collab-intro > p:last-child {
    grid-column: 1;
  }

  .products-intro h2,
  .studio-heading h2,
  .collab-intro h2,
  .closing-cta h2 {
    font-size: clamp(42px, 13vw, 63px);
  }

  .product-coincubed {
    padding-block: 16px 62px;
  }

  .product-inner,
  .product-inner-reverse {
    gap: 45px;
  }

  .product-visual,
  .cube-visual,
  .d8-visual {
    min-height: 580px;
  }

  .cube-visual {
    width: calc(100% + 32px);
    margin-left: -16px;
    border-inline: 0;
  }

  .phone-cube {
    right: 8%;
    width: 42%;
  }

  .visual-caption {
    right: 25px;
    left: 25px;
    padding-right: 43%;
    font-size: 8px;
  }

  .cube-visual-partner {
    top: 27px;
    right: 25px;
    max-width: 145px;
    font-size: 7px;
  }

  .product-copy {
    padding-block: 10px;
  }

  .coincubed-logo {
    margin-top: 46px;
  }

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

  .product-actions .button {
    width: 100%;
  }

  .metrics {
    grid-template-columns: 1fr;
    margin-top: 62px;
    padding-bottom: 42px;
  }

  .metric,
  .metric:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: 28px 0;
  }

  .metric + .metric {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .metric strong {
    margin-bottom: 0;
  }

  .metric span {
    padding-bottom: 5px;
    text-align: right;
  }

  .metrics-note {
    bottom: 15px;
    line-height: 1.45;
  }

  .product-d8 {
    padding-block: 92px;
  }

  .d8-wordmark {
    width: 150px;
    margin-top: 44px;
  }

  .d8-visual {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .phone-d8 {
    width: 272px;
    min-width: 0;
  }

  .d8-screen {
    min-height: 540px;
  }

  .visual-caption-dark {
    padding-right: 0;
  }

  .studio-section,
  .collaborations {
    padding-block: 96px;
  }

  .person-card {
    min-height: 520px;
    padding: 32px 24px;
  }

  .person-monogram {
    top: 37px;
    right: 24px;
    font-size: 180px;
  }

  .person-card h3 {
    margin-top: 146px;
  }

  .person-card > a {
    right: 24px;
    bottom: 32px;
    left: 24px;
  }

  .collab-list a {
    grid-template-columns: 32px 1fr 22px;
    gap: 12px;
    min-height: 94px;
  }

  .collab-list a:hover {
    padding-inline: 8px;
  }

  .collab-list strong {
    font-size: clamp(27px, 8vw, 39px);
  }

  .closing-cta .shell {
    grid-template-columns: 1fr;
  }

  .closing-cta .button {
    grid-column: 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
    align-items: start;
    padding-block: 58px;
  }

  .footer-main > p,
  .footer-links {
    grid-row: auto;
    grid-column: 1;
  }

  .footer-links {
    align-items: flex-start;
    margin-top: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 390px) {
  .language-switch {
    gap: 4px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-index > div + div {
    padding-left: 14px;
  }

  .phone-cube {
    width: 47%;
  }

  .phone-d8 {
    width: 250px;
  }
}

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

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