@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("./assets/fonts/instrument-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("./assets/fonts/instrument-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Hero Syne";
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url("./assets/fonts/hero-syne-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Hero Syne";
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url("./assets/fonts/hero-syne-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Hero Syne";
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url("./assets/fonts/hero-syne-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --ink: #111217;
  --paper: #f7f8fb;
  --max: 1180px;

  --gutter: 24px;
  --content: min(calc(100% - (var(--gutter) * 2)), var(--max));

  --r-pill: 999px;
  --r-surface: 28px;
  --radius-hero: var(--r-surface);
  --radius-pill: var(--r-pill);

  --text-1: #111217;
  --text-2: rgba(17, 18, 23, 0.72);
  --text-3: rgba(17, 18, 23, 0.52);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-glass: cubic-bezier(0.16, 1, 0.3, 1);
  --anchor-gap: 100px;
}

* {
  box-sizing: border-box;
}

::selection {
  color: #111217;
  background: rgba(17, 18, 23, 0.12);
}

html {
  cursor: default;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: #fbfbfd;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(72, 124, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 20% 72%, rgba(239, 184, 77, 0.1), transparent 26rem),
    radial-gradient(circle at 86% 58%, rgba(132, 156, 248, 0.07), transparent 24rem),
    linear-gradient(180deg, #fbfbfd 0%, var(--paper) 52%, #ffffff 100%);
  background-color: #fbfbfd;
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
p,
span,
strong,
section,
article {
  cursor: default;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(17, 18, 23, 0.14),
    0 0 0 6px rgba(255, 255, 255, 0.72);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 40;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(18, 22, 32, 0.18);
  transform: translate(-50%, -180%);
  transition: transform 220ms var(--ease-out);
}

.skip-link:focus-visible {
  outline: 0;
  transform: translate(-50%, 0);
}

.site-header,
.site-header a,
.hero-actions,
.cta,
.section-kicker,
.manifesto-index,
.showcase-line span {
  -webkit-user-select: none;
  user-select: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
}

.page-shell::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.72) 0%, transparent 36%),
    radial-gradient(circle at 50% -12%, rgba(255, 255, 255, 0.78), transparent 38rem);
  content: "";
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(17, 18, 23, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 23, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: var(--content);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 9px 11px 9px 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.455), rgba(255, 255, 255, 0.155) 58%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 1px 0.5px rgba(255, 255, 255, 0.94),
    inset 1px 0 1px rgba(255, 214, 183, 0.2),
    inset -1px 0 1px rgba(164, 194, 255, 0.22),
    inset 0 -1px 1px rgba(182, 199, 255, 0.18),
    0 17px 44px rgba(18, 22, 32, 0.068);
  -webkit-backdrop-filter: blur(18px) saturate(1.5) contrast(1.05) brightness(1.02);
  backdrop-filter: blur(18px) saturate(1.5) contrast(1.05) brightness(1.02);
  isolation: isolate;
  overflow: hidden;
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header::before {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 74% 150% at 50% -50%, rgba(255, 255, 255, 0.53), transparent 58%),
    radial-gradient(ellipse 32% 130% at 12% 125%, rgba(255, 202, 165, 0.15), transparent 72%),
    radial-gradient(ellipse 34% 140% at 88% 128%, rgba(159, 191, 255, 0.18), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.31), rgba(255, 255, 255, 0.018)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 29%, transparent 72%, rgba(255, 255, 255, 0.16));
  pointer-events: none;
  content: "";
}

.site-header::after {
  position: absolute;
  top: -104px;
  left: 50%;
  width: min(520px, 54%);
  height: 206px;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    linear-gradient(104deg, transparent 28%, rgba(255, 255, 255, 0.08) 39%, rgba(255, 255, 255, 0.42) 49%, rgba(194, 215, 255, 0.13) 57%, transparent 72%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.84), rgba(211, 225, 255, 0.28) 38%, transparent 72%);
  opacity: 0.48;
  content: "";
  transform: translate3d(-50%, 0, 0) rotate(-5deg);
}

.js .site-header {
  animation: headerSettle 620ms var(--ease-out) 60ms both;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.59), rgba(255, 255, 255, 0.27) 58%, rgba(255, 255, 255, 0.14)),
    rgba(255, 255, 255, 0.105);
  box-shadow:
    inset 0 1px 0.5px rgba(255, 255, 255, 0.92),
    inset 1px 0 1px rgba(255, 214, 183, 0.16),
    inset -1px 0 1px rgba(164, 194, 255, 0.18),
    inset 0 -1px 1px rgba(182, 199, 255, 0.16),
    0 14px 38px rgba(18, 22, 32, 0.082);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-block: -3px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand:focus-visible {
  border-radius: var(--radius-pill);
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-block: -4px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  color: rgba(17, 18, 23, 0.7);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 140ms ease;
}

.site-nav a.is-active {
  color: rgba(17, 18, 23, 0.96);
}

.site-nav a:focus-visible {
  box-shadow: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-nav a:active {
  color: rgba(17, 18, 23, 0.98);
  transition-duration: 90ms;
}

main {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(124px, 14vh, 148px);
}

main::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: clamp(96px, 12vh, 150px);
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 74% at 50% 100%, rgba(218, 226, 255, 0.14), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.78) 74%, rgba(255, 255, 255, 0.98));
  content: "";
}

section {
  scroll-margin-top: 104px;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(710px, 80svh, 790px);
  align-items: center;
  padding: 106px calc(max(var(--gutter), (100% - var(--max)) / 2) + 46px) 58px;
  isolation: isolate;
  overflow: visible;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 40% 44%, rgba(255, 255, 255, 0.96), transparent 28rem),
    radial-gradient(circle at 84% 72%, rgba(54, 111, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 18% 78%, rgba(239, 184, 77, 0.18), transparent 24rem);
}

.hero::after {
  position: absolute;
  right: max(var(--gutter), calc((100% - var(--max)) / 2));
  bottom: 58px;
  left: max(var(--gutter), calc((100% - var(--max)) / 2));
  z-index: 1;
  height: 318px;
  border-radius: 0 0 var(--radius-hero) var(--radius-hero);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34) 46%, rgba(255, 255, 255, 0.66) 76%, rgba(255, 255, 255, 0.92) 100%),
    radial-gradient(ellipse at 70% 100%, rgba(218, 226, 255, 0.18), transparent 78%);
}

.hero-frame {
  position: absolute;
  inset: 106px max(var(--gutter), calc((100% - var(--max)) / 2)) 58px;
  z-index: -2;
  border: 1px solid rgba(17, 18, 23, 0.065);
  border-radius: var(--radius-hero);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.25) 58%, rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 80% 78%, rgba(54, 111, 255, 0.075), transparent 30rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 26px 82px rgba(18, 22, 32, 0.088);
  overflow: hidden;
}

.hero-frame::before {
  position: absolute;
  top: -36%;
  left: 44%;
  width: 68%;
  height: 172%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.36), transparent 58%),
    linear-gradient(118deg, transparent 28%, rgba(255, 255, 255, 0.16) 45%, transparent 62%);
  opacity: 0.64;
  content: "";
  transform: translate3d(-3%, 0, 0) rotate(-7deg);
  animation: heroRefraction 16s var(--ease-glass) infinite alternate;
  will-change: transform;
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent 34%, rgba(255, 255, 255, 0.16));
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  padding-top: 4px;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--ink);
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(3.5rem, 6.2vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-synthesis-weight: none;
  text-wrap: balance;
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--text-2);
  font-size: clamp(1.06rem, 1.3vw, 1.22rem);
  font-weight: 440;
  line-height: 1.62;
  letter-spacing: -0.008em;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  min-width: 96px;
  padding: 0 20px;
  border: 1px solid rgba(17, 18, 23, 0.095);
  border-radius: var(--radius-pill);
  color: rgba(17, 18, 23, 0.92);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  background-color: #ffffff;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 22px rgba(18, 22, 32, 0.055);
  transition: transform 170ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.cta svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 18, 23, 0.07);
}

.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-metric-val {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.hero-metric-lbl {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: -0.005em;
}

.cta:active {
  transform: translateY(0) scale(0.975);
  box-shadow: 0 6px 16px rgba(18, 22, 32, 0.09);
  transition-duration: 90ms;
}

.cta-primary {
  color: #ffffff;
  background-color: #08090d;
  background-image: linear-gradient(180deg, #191b21, #08090d);
  border-color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 26px rgba(18, 22, 32, 0.14);
}

.cta-secondary {
  color: rgba(17, 18, 23, 0.92);
  background-color: #ffffff;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
}

.hero-spectrum {
  position: absolute;
  top: 106px;
  right: max(var(--gutter), calc((100% - var(--max)) / 2));
  bottom: 58px;
  left: max(var(--gutter), calc((100% - var(--max)) / 2));
  z-index: -1;
  height: auto;
  pointer-events: none;
  border-radius: var(--radius-hero);
  overflow: hidden;
  contain: paint;
  background:
    radial-gradient(
      58% 80% at 14% 42%,
      rgba(150, 170, 255, 0.13) 0%,
      transparent 68%
    ),
    radial-gradient(
      34% 44% at 96% 44%,
      rgba(196, 181, 253, 0.16) 0%,
      transparent 70%
    ),
    radial-gradient(
      82% 98% at 84% 88%,
      rgba(168, 210, 255, 0.15) 0%,
      rgba(255, 206, 172, 0.1) 52%,
      transparent 100%
    );
}

.hero-spectrum::before,
.hero-spectrum::after {
  position: absolute;
  inset: -28%;
  content: "";
  pointer-events: none;
  will-change: transform;
}

.hero-spectrum::before {
  background: radial-gradient(
    42% 48% at 60% 74%,
    rgba(134, 202, 255, 0.42) 0%,
    rgba(166, 193, 250, 0.2) 46%,
    transparent 72%
  );
  animation: glowOrbitA 28s linear infinite;
}

.hero-spectrum::after {
  background: radial-gradient(
    48% 56% at 78% 82%,
    rgba(255, 200, 158, 0.44) 0%,
    rgba(255, 170, 182, 0.21) 50%,
    transparent 74%
  );
  animation: glowOrbitB 37s linear infinite;
}

.hero.is-paused .hero-frame::before,
.hero.is-paused .hero-spectrum::before,
.hero.is-paused .hero-spectrum::after,
.hero.is-scrolling .hero-frame::before,
.hero.is-scrolling .hero-spectrum::before,
.hero.is-scrolling .hero-spectrum::after {
  animation-play-state: paused;
}

@keyframes glowOrbitA {
  0% {
    transform: translate3d(0, 0.9%, 0) scale(1.02);
  }

  12.5% {
    transform: translate3d(-1.06%, 0.55%, 0) scale(1.005);
  }

  25% {
    transform: translate3d(-1.5%, -0.3%, 0) scale(1.01);
  }

  37.5% {
    transform: translate3d(-1.06%, -1.1%, 0) scale(1.035);
  }

  50% {
    transform: translate3d(0, -1.45%, 0) scale(1.05);
  }

  62.5% {
    transform: translate3d(1.06%, -1.1%, 0) scale(1.045);
  }

  75% {
    transform: translate3d(1.5%, -0.3%, 0) scale(1.03);
  }

  87.5% {
    transform: translate3d(1.06%, 0.55%, 0) scale(1.015);
  }

  100% {
    transform: translate3d(0, 0.9%, 0) scale(1.02);
  }
}

@keyframes glowOrbitB {
  0% {
    transform: translate3d(1.5%, -0.4%, 0) scale(1.045);
  }

  12.5% {
    transform: translate3d(1.06%, 0.5%, 0) scale(1.05);
  }

  25% {
    transform: translate3d(0, 0.85%, 0) scale(1.03);
  }

  37.5% {
    transform: translate3d(-1.02%, 0.5%, 0) scale(1.01);
  }

  50% {
    transform: translate3d(-1.45%, -0.4%, 0) scale(1);
  }

  62.5% {
    transform: translate3d(-1.02%, -1.2%, 0) scale(1.015);
  }

  75% {
    transform: translate3d(0, -1.5%, 0) scale(1.04);
  }

  87.5% {
    transform: translate3d(1.06%, -1.2%, 0) scale(1.05);
  }

  100% {
    transform: translate3d(1.5%, -0.4%, 0) scale(1.045);
  }
}

@keyframes heroRefraction {
  from {
    transform: translate3d(-5%, -0.4%, 0) rotate(-8deg) scale(1);
  }

  to {
    transform: translate3d(5%, 1.8%, 0) rotate(-2deg) scale(1.035);
  }
}

.section-block {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 112px 0 96px;
}

.section-block:last-child {
  padding-bottom: 96px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--text-3);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.showcase-copy h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(2.1rem, 3.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.manifesto-grid {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  contain: paint;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--r-surface);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0.5px rgba(255, 255, 255, 0.92),
    inset 0 0 1px 0.5px rgba(255, 255, 255, 0.28),
    0 20px 56px rgba(18, 22, 32, 0.045);
}

.manifesto-item {
  display: grid;
  grid-template-columns: 48px minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  min-height: 0;
  padding: 32px 36px;
  border-bottom: 1px solid rgba(17, 18, 23, 0.062);
  background: rgba(255, 255, 255, 0.01);
  cursor: default;
}

.manifesto-item:last-child {
  border-bottom: 0;
}

.manifesto-index {
  color: var(--text-3);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.manifesto-item h3 {
  margin: 0;
  font-size: clamp(1.24rem, 1.7vw, 1.58rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.manifesto-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.manifesto-item h3 a:hover {
  opacity: 0.75;
}

.manifesto-item p {
  margin: 0;
  color: var(--text-2);
  font-size: 1.02rem;
  font-weight: 440;
  line-height: 1.6;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.showcase-copy {
  position: sticky;
  top: 104px;
}

.showcase-copy h2 {
  margin-top: 16px;
  text-wrap: balance;
}

.showcase-lines {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--r-surface);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0.5px rgba(255, 255, 255, 0.92),
    inset 0 0 1px 0.5px rgba(255, 255, 255, 0.28),
    0 20px 56px rgba(18, 22, 32, 0.045);
}

.showcase-line {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 30px 36px;
  border-bottom: 1px solid rgba(17, 18, 23, 0.062);
  cursor: default;
}

.showcase-line:last-child {
  border-bottom: 0;
}

.showcase-line span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: none;
  line-height: 1.2;
}

.showcase-line strong {
  color: var(--text-2);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  font-weight: 440;
  line-height: 1.6;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.showcase-line a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
  box-shadow: inset 0 -1px 0 rgba(17, 18, 23, 0.28);
  transition: opacity 160ms ease, box-shadow 160ms ease;
}

.showcase-line a:hover {
  opacity: 0.75;
  box-shadow: inset 0 -1.5px 0 var(--ink);
}

.showcase-line a:focus-visible {
  border-radius: 5px;
  box-shadow:
    0 0 0 3px rgba(17, 18, 23, 0.12),
    inset 0 -1px 0 rgba(17, 18, 23, 0.42);
}



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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover {
    color: rgba(17, 18, 23, 0.82);
  }

  .site-nav a.is-active:hover {
    color: rgba(17, 18, 23, 0.97);
  }

  .hero-actions .cta:hover {
    border-color: rgba(17, 18, 23, 0.16);
  }

  .hero-actions .cta-primary:hover {
    border-color: var(--ink);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 11px 28px rgba(18, 22, 32, 0.18);
  }

  .hero-actions .cta-secondary:hover {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      0 9px 24px rgba(18, 22, 32, 0.09);
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 16px;
    --r-surface: 26px;
    --anchor-gap: 24px;
  }

  .site-header {
    top: 12px;
    width: var(--content);
    align-items: center;
    flex-direction: row;
    gap: 12px;
    min-height: 56px;
    border-radius: var(--radius-pill);
    padding: 8px 8px 8px 14px;
    border-color: rgba(255, 255, 255, 0.72);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.57), rgba(255, 255, 255, 0.265) 58%, rgba(255, 255, 255, 0.13)),
      rgba(255, 255, 255, 0.08);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3),
      inset 0 0 0 1px rgba(255, 255, 255, 0.18),
      0 14px 38px rgba(18, 22, 32, 0.07);
    -webkit-backdrop-filter: blur(18px) saturate(1.46) contrast(1.045) brightness(1.02);
    backdrop-filter: blur(18px) saturate(1.46) contrast(1.045) brightness(1.02);
  }

  .site-header::after {
    top: -102px;
    width: 64%;
    height: 190px;
    opacity: 0.5;
  }

  .site-header.is-scrolled {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.35) 58%, rgba(255, 255, 255, 0.2)),
      rgba(255, 255, 255, 0.135);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.94),
      inset 0 -1px 0 rgba(255, 255, 255, 0.26),
      inset 0 0 0 1px rgba(255, 255, 255, 0.16),
      0 13px 34px rgba(18, 22, 32, 0.08);
  }

  .site-nav {
    justify-content: flex-end;
    width: auto;
    margin-left: auto;
    gap: 2px;
  }

  .site-nav a {
    min-height: 44px;
    margin-block: -3px;
    min-width: 48px;
    padding: 0 8px;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .brand {
    min-height: 44px;
    margin-block: -3px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .hero {
    min-height: clamp(480px, 60svh, 540px);
    align-items: center;
    padding-top: 108px;
    padding-bottom: 36px;
    padding-inline: calc(var(--gutter) + 18px);
  }

  .hero-frame {
    inset: 84px var(--gutter) 16px;
    border-radius: var(--r-surface);
  }

  .hero::after {
    right: var(--gutter);
    bottom: 16px;
    left: var(--gutter);
    height: min(190px, 38%);
    border-radius: 0 0 var(--r-surface) var(--r-surface);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.26) 48%, rgba(255, 255, 255, 0.6) 80%, rgba(255, 255, 255, 0.88) 100%),
      radial-gradient(ellipse at 70% 100%, rgba(218, 226, 255, 0.16), transparent 78%);
  }

  .hero h1 {
    font-size: clamp(2.15rem, 7.3vw, 2.75rem);
    letter-spacing: -0.035em;
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero-text {
    max-width: 590px;
    margin-top: 22px;
    font-size: clamp(0.96rem, 3.8vw, 1.02rem);
    color: var(--text-2);
    font-weight: 440;
    line-height: 1.58;
    text-wrap: pretty;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-metrics {
    flex-wrap: wrap;
    gap: 16px 20px;
    margin-top: 32px;
    padding-top: 20px;
  }

  .hero-metric-divider {
    display: none;
  }

  .hero-spectrum {
    top: 84px;
    right: var(--gutter);
    bottom: 16px;
    left: var(--gutter);
    height: auto;
    border-radius: var(--r-surface);
  }

  .section-block {
    width: var(--content);
    padding: 64px 0;
  }

  .section-block:last-child {
    padding-bottom: 28px;
  }

  main {
    padding-bottom: clamp(36px, 7vh, 56px);
  }

  main::after {
    height: clamp(48px, 8vh, 68px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.86));
  }

  section {
    scroll-margin-top: 84px;
  }

  .showcase-copy {
    position: static;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .showcase-copy h2 {
    max-width: 680px;
    font-size: clamp(1.78rem, 7.7vw, 2.58rem);
    letter-spacing: -0.038em;
    line-height: 1.06;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    border-radius: var(--r-surface);
  }

  .manifesto-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 20px 21px;
    align-items: start;
  }

  .manifesto-item p {
    grid-column: 2;
  }

  .manifesto-item h3 {
    padding-top: 0;
  }

  .manifesto-item p {
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .showcase-copy {
    position: static;
  }

  .showcase-line {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 20px 20px 21px;
    align-items: start;
  }

  .showcase-lines {
    border-radius: var(--r-surface);
  }

  .showcase-line strong {
    font-size: clamp(0.9rem, 3.2vw, 0.96rem);
    font-weight: 470;
    line-height: 1.5;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: var(--content);
    padding: 8px 6px 8px 12px;
  }

  .site-nav a {
    padding: 0 6px;
    font-size: 0.735rem;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 9px;
    margin-top: 24px;
  }

  .hero {
    padding-inline: calc(var(--gutter) + 20px);
  }

  .showcase-copy h2 {
    font-size: clamp(1.76rem, 8.3vw, 2.28rem);
  }

  .cta {
    width: auto;
    min-height: 44px;
    min-width: 100px;
    padding: 0 16px;
  }
}

@media (max-width: 360px) {
  :root {
    --gutter: 14px;
  }

  .site-header {
    width: var(--content);
    min-height: 52px;
    padding: 7px 5px 7px 9px;
  }

  .brand {
    font-size: 0.74rem;
  }

  .site-nav a {
    min-height: 44px;
    min-width: 44px;
    padding: 0 2px;
    font-size: 0.65rem;
  }

  .hero {
    min-height: clamp(520px, 70svh, 570px);
    padding-top: 112px;
    padding-inline: calc(var(--gutter) + 16px);
  }

  .hero-frame {
    inset: 88px var(--gutter) 12px;
  }

  .hero-spectrum {
    top: 88px;
  }

  .hero h1 {
    font-size: clamp(1.64rem, 8.85vw, 1.86rem);
    letter-spacing: -0.044em;
    line-height: 0.97;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 7px;
    margin-top: 22px;
  }

  .cta {
    min-height: 44px;
    min-width: 92px;
    padding: 0 13px;
  }

  .manifesto-item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 11px;
    padding: 20px 18px;
  }

  .manifesto-index {
    font-size: 0.72rem;
  }

  .manifesto-item h3 {
    font-size: 1.2rem;
  }

  .manifesto-item p {
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .showcase-line {
    padding: 20px 18px;
  }

  .showcase-line strong {
    font-size: 0.875rem;
    line-height: 1.48;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  .site-header.is-scrolled {
    background: rgba(248, 249, 252, 0.94);
  }

  .manifesto-grid,
  .showcase-lines {
    background: rgba(250, 250, 252, 0.92);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .site-header.is-scrolled {
    background: rgba(248, 249, 252, 0.96);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .manifesto-grid,
  .showcase-lines {
    background: rgba(250, 250, 252, 0.96);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
