@font-face {
  font-family: "Funnel Display";
  src: url("/assets/fonts/funnel-display-latin-500-normal.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

:root {
  color-scheme: light;
  --purple: #b100f8;
  --cyan: #27deff;
  --blue: #0048e5;
  --ink: #0b0b0f;
  --muted: #6b6b76;
  --soft: #8a8a96;
  --line: #e6e6ea;
  --paper: #fafafa;
  --surface: #ffffff;
  --display: "Funnel Display", system-ui, sans-serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgb(177 0 248 / 0.07), transparent 27rem),
    radial-gradient(circle at 88% 22%, rgb(39 222 255 / 0.08), transparent 30rem),
    var(--paper);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgb(11 11 15 / 0.1) 0.6px, transparent 0.6px);
  background-size: 14px 14px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  opacity: 0.22;
  pointer-events: none;
}

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

img,
svg {
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--surface);
  background: var(--ink);
  font-size: 13px;
  font-weight: 650;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.page-shell {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(11 11 15 / 0.12);
  animation: fade-down 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand-index {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-index img {
  width: 25px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

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

.hero {
  display: grid;
  min-height: min(760px, calc(100vh - 86px));
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
  padding: 96px 0 112px;
}

.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.usage h2,
.coming-soon-title {
  font-family: var(--display);
  font-weight: 500;
  text-transform: lowercase;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(64px, 8.2vw, 128px);
  letter-spacing: -0.055em;
  line-height: 0.81;
}

.hero h1 span {
  display: block;
}

.gradient-text {
  width: max-content;
  max-width: 100%;
  padding-right: 0.06em;
  color: transparent;
  background: linear-gradient(100deg, var(--purple) 2%, var(--blue) 54%, var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 610px;
  margin-top: 44px;
  color: #4a4a55;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.62;
}

.reveal {
  animation: reveal-up 850ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal--one {
  animation-delay: 100ms;
}

.reveal--two {
  animation-delay: 180ms;
}

.reveal--three {
  animation-delay: 290ms;
}

.reveal--four {
  animation-delay: 360ms;
}

.prism-field {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 44% 44% 44% 8%;
  color: var(--surface);
  background:
    radial-gradient(circle at 52% 46%, rgb(39 222 255 / 0.2), transparent 17%),
    radial-gradient(circle at 44% 54%, rgb(177 0 248 / 0.2), transparent 26%),
    var(--ink);
  box-shadow:
    0 44px 100px rgb(11 11 15 / 0.17),
    inset 0 0 0 1px rgb(255 255 255 / 0.05);
}

.prism-field::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.prism-field::after {
  position: absolute;
  inset: -40%;
  border: 1px solid rgb(39 222 255 / 0.14);
  border-radius: 50%;
  content: "";
  animation: field-rotate 24s linear infinite;
}

.prism-field > img {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 34%;
  height: auto;
  filter:
    drop-shadow(0 0 24px rgb(39 222 255 / 0.18))
    drop-shadow(0 0 40px rgb(177 0 248 / 0.16));
  transform: translate(-50%, -50%);
  animation: prism-breathe 5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit--outer {
  width: 74%;
  height: 74%;
}

.orbit--inner {
  width: 52%;
  height: 52%;
  border-color: rgb(255 255 255 / 0.09);
  border-style: dashed;
}

.point {
  position: absolute;
  z-index: 4;
  color: rgb(255 255 255 / 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.point::before {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.34);
  content: "";
}

.point--partner {
  top: 46%;
  left: 8%;
}

.point--partner::before {
  top: 3px;
  right: -19px;
}

.point--insurer {
  top: 46%;
  right: 7%;
}

.point--insurer::before {
  top: 3px;
  left: -19px;
  background: var(--purple);
}

.point--cover {
  bottom: 9%;
  left: 50%;
  transform: translateX(-50%);
}

.point--cover::before {
  top: -17px;
  left: calc(50% - 4px);
  background: var(--blue);
}

.connection {
  position: absolute;
  z-index: 2;
  top: 49%;
  width: 29%;
  height: 1px;
  opacity: 0.45;
}

.connection--left {
  left: 16%;
  background: linear-gradient(90deg, var(--cyan), rgb(39 222 255 / 0.08));
}

.connection--right {
  right: 16%;
  background: linear-gradient(90deg, rgb(177 0 248 / 0.08), var(--purple));
}

.field-code {
  position: absolute;
  right: 34px;
  bottom: 26px;
  color: rgb(255 255 255 / 0.33);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.asset-section {
  padding: 112px 0 104px;
  border-top: 1px solid rgb(11 11 15 / 0.12);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.section-heading h2,
.usage h2 {
  margin-top: 10px;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.section-note {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.asset-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 26px 80px rgb(11 11 15 / 0.07);
}

.asset-rail {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-stage {
  position: relative;
  display: grid;
  min-height: clamp(360px, 47vw, 610px);
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 49.95%, rgb(11 11 15 / 0.055) 50%, transparent 50.05%),
    linear-gradient(transparent 49.9%, rgb(11 11 15 / 0.055) 50%, transparent 50.1%),
    radial-gradient(circle at center, rgb(177 0 248 / 0.035), transparent 42%),
    var(--paper);
}

.logo-stage::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(11 11 15 / 0.17) 0.5px, transparent 0.5px);
  background-size: 16px 16px;
  content: "";
  opacity: 0.18;
}

.clear-space {
  --clear-space-size: clamp(28px, 4vw, 52px);
  --wordmark-optical-bottom-adjustment: -4.215%;
  position: relative;
  z-index: 2;
  display: grid;
  width: min(74%, 860px);
  padding: var(--clear-space-size);
  align-items: start;
  justify-items: center;
  border: 1px dashed rgb(107 107 118 / 0.34);
}

.clear-space::before,
.clear-space::after {
  position: absolute;
  background: rgb(107 107 118 / 0.28);
  content: "";
}

.clear-space::before {
  top: -5px;
  bottom: -5px;
  left: 50%;
  width: 1px;
}

.clear-space::after {
  top: 50%;
  right: -5px;
  left: -5px;
  height: 1px;
}

.clear-space img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  /* The p descender extends into clear space; the lowercase body defines the optical bottom. */
  margin-bottom: var(--wordmark-optical-bottom-adjustment);
}

.clear-space-label {
  position: absolute;
  top: -8px;
  left: 12px;
  z-index: 3;
  padding: 0 7px;
  color: var(--soft);
  background: var(--paper);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.corner {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
}

.corner--top-left {
  top: 24px;
  left: 24px;
  border-top: 1px solid rgb(11 11 15 / 0.35);
  border-left: 1px solid rgb(11 11 15 / 0.35);
}

.corner--top-right {
  top: 24px;
  right: 24px;
  border-top: 1px solid rgb(11 11 15 / 0.35);
  border-right: 1px solid rgb(11 11 15 / 0.35);
}

.corner--bottom-left {
  bottom: 24px;
  left: 24px;
  border-bottom: 1px solid rgb(11 11 15 / 0.35);
  border-left: 1px solid rgb(11 11 15 / 0.35);
}

.corner--bottom-right {
  right: 24px;
  bottom: 24px;
  border-right: 1px solid rgb(11 11 15 / 0.35);
  border-bottom: 1px solid rgb(11 11 15 / 0.35);
}

.asset-footer {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 24px 26px;
  border-top: 1px solid var(--line);
}

.file-summary {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
}

.file-number {
  display: grid;
  width: 44px;
  height: 44px;
  flex: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.file-summary h3,
.usage-list h3 {
  font-family: var(--display);
  font-weight: 500;
  text-transform: lowercase;
}

.file-summary h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.file-summary p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.download-actions {
  display: flex;
  flex: none;
  gap: 10px;
}

.download-button {
  display: flex;
  min-width: 158px;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 12px 15px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.download-button span {
  display: grid;
  gap: 2px;
}

.download-button strong {
  font-size: 12px;
  letter-spacing: 0.06em;
}

.download-button small {
  color: var(--soft);
  font-size: 9px;
  font-weight: 600;
}

.download-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.download-button--primary {
  border-color: var(--ink);
  color: var(--surface);
  background: var(--ink);
}

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

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

.download-button--primary:hover,
.download-button--primary:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
}

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

.symbol-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 28px 28px 8px 28px;
  background: var(--surface);
  box-shadow: 0 20px 58px rgb(11 11 15 / 0.055);
}

.symbol-stage {
  position: relative;
  display: grid;
  min-height: 440px;
  overflow: hidden;
  place-items: center;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgb(0 72 229 / 0.045), transparent 45%),
    var(--paper);
}

.symbol-stage::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(11 11 15 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(11 11 15 / 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.symbol-frame {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(56%, 280px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px dashed rgb(107 107 118 / 0.38);
}

.symbol-frame::before,
.symbol-frame::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: rgb(11 11 15 / 0.5);
  content: "";
}

.symbol-frame::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.symbol-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.symbol-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgb(0 72 229 / 0.12));
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.symbol-card:hover .symbol-frame img {
  transform: scale(1.035);
}

.symbol-axis {
  position: absolute;
  color: var(--soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.symbol-axis--x {
  right: 0;
  bottom: -23px;
  left: 0;
  text-align: center;
}

.symbol-axis--y {
  top: 0;
  right: -27px;
  bottom: 0;
  text-align: center;
  transform: rotate(90deg);
}

.symbol-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
  padding: clamp(34px, 5vw, 68px);
}

.symbol-details h3 {
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: lowercase;
}

.symbol-description {
  max-width: 470px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.symbol-file {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.symbol-file dl {
  display: flex;
  gap: clamp(22px, 3vw, 46px);
  margin: 0;
}

.symbol-file dl div {
  display: grid;
  gap: 5px;
}

.symbol-file dt {
  color: var(--soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.symbol-file dd {
  margin: 0;
  font-size: 11px;
  font-weight: 650;
}

.symbol-downloads {
  display: flex;
  flex: none;
  gap: 10px;
}

.symbol-download {
  min-width: 158px;
}

.usage {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 10vw, 160px);
  padding: 112px 0 136px;
  border-top: 1px solid rgb(11 11 15 / 0.12);
}

.usage-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.usage-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.usage-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.usage-list > li > span {
  padding-top: 5px;
  color: var(--soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.usage-list h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.usage-list p {
  max-width: 510px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.palette-section {
  padding: 112px 0 136px;
  border-top: 1px solid rgb(11 11 15 / 0.12);
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 244px;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.color-card {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 23px;
  border-radius: 26px 26px 7px 26px;
  transition:
    border-radius 280ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 280ms ease,
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.color-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: linear-gradient(135deg, black, transparent 66%);
  opacity: 0.34;
}

.color-card:hover {
  border-radius: 26px 7px 26px 26px;
  box-shadow: 0 24px 52px rgb(11 11 15 / 0.13);
  transform: translateY(-5px);
}

.color-card--purple {
  grid-column: span 5;
  color: var(--surface);
  background: var(--purple);
}

.color-card--cyan {
  grid-column: span 4;
  color: var(--ink);
  background: var(--cyan);
}

.color-card--blue {
  grid-column: span 3;
  color: var(--surface);
  background: var(--blue);
}

.color-card--ink {
  grid-column: span 7;
  color: var(--surface);
  background: var(--ink);
}

.color-card--paper {
  grid-column: span 5;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}

.color-card--cyan::before,
.color-card--paper::before {
  background-image:
    linear-gradient(rgb(11 11 15 / 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgb(11 11 15 / 0.07) 1px, transparent 1px);
}

.color-index {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  opacity: 0.58;
}

.color-name {
  margin-top: auto;
}

.color-name h3,
.gradient-copy h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: lowercase;
}

.color-name h3 {
  font-size: clamp(30px, 3.3vw, 48px);
}

.color-name p {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.64;
}

.color-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.color-card code {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.color-copy {
  display: inline-flex;
  min-width: 84px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgb(255 255 255 / 0.26);
  border-radius: 999px;
  color: inherit;
  background: rgb(255 255 255 / 0.12);
  font: inherit;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.color-card--cyan .color-copy,
.color-card--paper .color-copy {
  border-color: rgb(11 11 15 / 0.18);
  background: rgb(11 11 15 / 0.055);
}

.color-copy:hover {
  border-color: rgb(255 255 255 / 0.52);
  background: rgb(255 255 255 / 0.2);
  transform: translateY(-1px);
}

.color-card--cyan .color-copy:hover,
.color-card--paper .color-copy:hover {
  border-color: rgb(11 11 15 / 0.36);
  background: rgb(11 11 15 / 0.1);
}

.color-copy:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 3px;
}

.color-copy.is-copied {
  background: rgb(255 255 255 / 0.26);
}

.color-card--cyan .color-copy.is-copied,
.color-card--paper .color-copy.is-copied {
  background: rgb(11 11 15 / 0.14);
}

.copy-label {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.copy-glyph {
  position: relative;
  width: 12px;
  height: 12px;
  flex: none;
  transition: transform 180ms ease;
}

.copy-glyph::before,
.copy-glyph::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid currentcolor;
  border-radius: 2px;
  content: "";
}

.copy-glyph::before {
  top: 1px;
  left: 1px;
}

.copy-glyph::after {
  right: 1px;
  bottom: 1px;
  background: inherit;
}

.color-copy.is-copied .copy-glyph {
  transform: rotate(-8deg) scale(1.08);
}

.gradient-swatch {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
  gap: 12px;
  margin-top: 12px;
}

.gradient-sample,
.gradient-copy {
  min-height: 142px;
  border-radius: 7px 24px 24px 24px;
}

.gradient-sample {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, var(--purple), var(--cyan));
}

.gradient-sample::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 50%, rgb(255 255 255 / 0.28), transparent 18%);
  content: "";
  transform: translateX(-30%);
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gradient-sample:hover::before {
  transform: translateX(520%);
}

.gradient-sample span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 34px;
  height: 1px;
  background: rgb(11 11 15 / 0.42);
}

.gradient-sample span::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.gradient-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.gradient-copy h3 {
  margin-top: 8px;
  font-size: 27px;
}

.gradient-copy code {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 70px 28px;
  border-radius: 36px 36px 8px 36px;
  color: var(--surface);
  text-align: center;
  background: var(--ink);
}

.coming-soon::before,
.coming-soon::after {
  position: absolute;
  z-index: -1;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(10px);
  content: "";
}

.coming-soon::before {
  top: -240px;
  left: -50px;
  background: radial-gradient(circle, rgb(177 0 248 / 0.5), transparent 66%);
}

.coming-soon::after {
  right: -80px;
  bottom: -250px;
  background: radial-gradient(circle, rgb(39 222 255 / 0.42), transparent 66%);
}

.coming-soon img {
  width: 42px;
  height: auto;
  margin-bottom: 26px;
}

.coming-soon .eyebrow {
  color: rgb(255 255 255 / 0.5);
}

.coming-soon-title {
  max-width: 850px;
  margin-top: 14px;
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.coming-soon-list {
  margin-top: 32px;
  color: rgb(255 255 255 / 0.48);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  min-height: 128px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

a:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes prism-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.035);
  }
}

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 88px 0 104px;
  }

  .hero h1 {
    font-size: clamp(68px, 14vw, 112px);
  }

  .prism-field {
    width: min(72vw, 540px);
    justify-self: center;
  }

  .usage {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .symbol-card {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  }

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

  .symbol-download {
    min-width: 0;
    flex: 1;
  }

  .symbol-downloads {
    width: 100%;
  }

  .color-card--purple,
  .color-card--cyan,
  .color-card--blue {
    grid-column: span 4;
  }

  .color-card--ink {
    grid-column: span 7;
  }

  .color-card--paper {
    grid-column: span 5;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 28px, 1320px);
  }

  .site-header {
    min-height: 72px;
  }

  .brand-index span {
    display: none;
  }

  .site-nav {
    gap: 18px;
    font-size: 11px;
  }

  .hero {
    gap: 62px;
    padding: 68px 0 82px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(54px, 17vw, 82px);
    line-height: 0.86;
  }

  .hero-lead {
    margin-top: 30px;
    font-size: 16px;
  }

  .prism-field {
    width: 100%;
    border-radius: 38% 38% 38% 7%;
  }

  .point {
    font-size: 7px;
  }

  .asset-section {
    padding: 82px 0 78px;
  }

  .section-heading {
    align-items: start;
  }

  .section-note {
    display: none;
  }

  .asset-card {
    border-radius: 20px;
  }

  .asset-rail {
    min-height: 42px;
    padding: 0 15px;
    font-size: 7px;
  }

  .logo-stage {
    min-height: 300px;
  }

  .clear-space {
    width: 82%;
  }

  .asset-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
    padding: 22px 18px 18px;
  }

  .download-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .download-button {
    min-width: 0;
  }

  .symbol-card {
    grid-template-columns: 1fr;
    border-radius: 20px 20px 7px 20px;
  }

  .symbol-stage {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .symbol-frame {
    width: min(56%, 210px);
  }

  .symbol-details {
    gap: 44px;
    padding: 32px 20px 20px;
  }

  .symbol-details h3 {
    font-size: 42px;
  }

  .symbol-file dl {
    justify-content: space-between;
    gap: 12px;
  }

  .usage {
    padding: 82px 0 96px;
  }

  .palette-section {
    padding: 82px 0 96px;
  }

  .palette-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }

  .color-card--purple,
  .color-card--cyan,
  .color-card--blue,
  .color-card--ink {
    grid-column: span 1;
  }

  .color-card--purple,
  .color-card--ink,
  .color-card--paper {
    grid-row: span 1;
  }

  .color-card--paper {
    grid-column: span 2;
  }

  .color-name h3 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .gradient-swatch {
    grid-template-columns: 1fr;
  }

  .gradient-sample {
    min-height: 112px;
  }

  .gradient-copy {
    min-height: 132px;
  }

  .coming-soon {
    min-height: 370px;
    padding: 62px 22px;
    border-radius: 26px 26px 7px 26px;
  }

  .coming-soon-list {
    max-width: 260px;
    line-height: 1.8;
  }

  .site-footer {
    min-height: 104px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    line-height: 1.5;
  }
}

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