@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("./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("./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("./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("./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("./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: 30px;
  --r-inner: 22px;
  --radius-hero: var(--r-surface);
  --radius-pill: var(--r-pill);

  --text-1: rgba(17, 18, 23, 0.92);
  --text-2: rgba(17, 18, 23, 0.71);
  --text-3: rgba(17, 18, 23, 0.66);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

html {
  cursor: default;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  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),
    linear-gradient(180deg, #fbfbfd 0%, var(--paper) 52%, #ffffff 100%);
  background-color: #fbfbfd;
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p,
span,
strong,
section,
article,
canvas {
  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.78);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0.5px rgba(255, 255, 255, 0.94),
    inset 0 0 1px 0.5px rgba(255, 255, 255, 0.3),
    inset 0 -1px 1px rgba(255, 255, 255, 0.22),
    0 17px 44px rgba(18, 22, 32, 0.07);
  -webkit-backdrop-filter: blur(32px) saturate(1.28);
  backdrop-filter: blur(32px) saturate(1.28);
  overflow: hidden;
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-out);
}

.site-header::before {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.14));
  pointer-events: none;
  content: "";
}

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

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.26);
  box-shadow:
    inset 0 1px 0.5px rgba(255, 255, 255, 0.92),
    inset 0 0 1px 0.5px rgba(255, 255, 255, 0.24),
    inset 0 -1px 1px rgba(255, 255, 255, 0.2),
    0 14px 38px rgba(18, 22, 32, 0.088);
}

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

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

.site-nav a {
  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;
  text-shadow: none;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.site-nav a.is-active {
  color: rgba(17, 18, 23, 0.96);
  background: transparent;
  box-shadow: none;
  text-shadow: 0 0 0.01px rgba(17, 18, 23, 0.4);
}

main {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(128px, 15vh, 152px);
}

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: 96px;
}

.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::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(690px, 100%);
  padding-top: 0;
}

.js .hero h1 {
  animation: heroRise 720ms var(--ease-out) 120ms both;
}

.js .hero-text {
  animation: heroRise 720ms var(--ease-out) 200ms both;
}

.js .hero-actions {
  animation: heroRise 720ms var(--ease-out) 280ms both;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Hero Syne", "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3.08rem, 5.38vw, 5.28rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.925;
  font-synthesis-weight: none;
  text-wrap: balance;
}

.hero-text {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--text-2);
  font-size: clamp(1.02rem, 1.24vw, 1.16rem);
  font-weight: 465;
  line-height: 1.56;
  text-wrap: pretty;
}

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

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 92px;
  padding: 0 18px;
  border: 1px solid rgba(17, 18, 23, 0.095);
  border-radius: var(--radius-pill);
  color: rgba(17, 18, 23, 0.92);
  font-size: 0.89rem;
  font-weight: 700;
  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: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;
  background:
    radial-gradient(
      58% 80% at 14% 42%,
      rgba(150, 170, 255, 0.11) 0%,
      transparent 68%
    ),
    radial-gradient(
      88% 104% at 82% 86%,
      rgba(168, 210, 255, 0.13) 0%,
      rgba(255, 206, 172, 0.09) 52%,
      transparent 100%
    );
}

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

.hero-spectrum::before {
  background: radial-gradient(
    42% 48% at 60% 74%,
    rgba(141, 206, 255, 0.36) 0%,
    rgba(168, 197, 248, 0.18) 46%,
    transparent 74%
  );
  animation: glowOrbitA 28s linear infinite;
}

.hero-spectrum::after {
  background: radial-gradient(
    48% 56% at 78% 82%,
    rgba(255, 205, 165, 0.38) 0%,
    rgba(255, 173, 184, 0.19) 52%,
    transparent 76%
  );
  animation: glowOrbitB 37s linear infinite;
}

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

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

.showcase {
  display: grid;
  grid-template-columns: minmax(200px, 0.34fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

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

.section-heading h2,
.showcase-copy h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(1.94rem, 3.22vw, 3.66rem);
  font-weight: 700;
  letter-spacing: -0.046em;
  line-height: 1.03;
}

.manifesto-grid {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 23, 0.066);
  border-radius: var(--r-surface);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 20px 56px rgba(18, 22, 32, 0.032);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.manifesto-item {
  display: grid;
  grid-template-columns: 54px minmax(178px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  min-height: 0;
  padding: 26px 30px;
  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: 700;
  letter-spacing: 0.08em;
}

.manifesto-item h3 {
  margin: 0;
  font-size: clamp(1.24rem, 1.76vw, 1.62rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.manifesto-item p {
  margin: 0;
  color: var(--text-2);
  font-size: 1rem;
  font-weight: 465;
  line-height: 1.56;
  text-wrap: pretty;
}

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

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

.showcase-lines {
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(17, 18, 23, 0.066);
  border-radius: var(--r-surface);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 20px 56px rgba(18, 22, 32, 0.032);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

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

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

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

.showcase-line strong {
  color: rgba(17, 18, 23, 0.75);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 470;
  line-height: 1.56;
  text-wrap: pretty;
}

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

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

@keyframes headerSettle {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@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:not(.is-active):hover {
    color: var(--ink);
  }

  .showcase-line a:hover {
    color: var(--ink);
    box-shadow: inset 0 -1px 0 rgba(17, 18, 23, 0.5);
  }

  .cta:hover {
    transform: translateY(-0.5px);
    border-color: rgba(17, 18, 23, 0.17);
    box-shadow: 0 10px 26px rgba(18, 22, 32, 0.078);
  }

  .cta-primary:hover {
    color: #ffffff;
    background-color: #090a0f;
    background-image: linear-gradient(180deg, #1b1d23, #090a0f);
    border-color: var(--ink);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 10px 26px rgba(18, 22, 32, 0.16);
  }

  .cta-secondary:hover {
    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));
  }
}

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

  .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.78);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.5)),
      rgba(255, 255, 255, 0.38);
    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.074);
    -webkit-backdrop-filter: blur(32px) saturate(1.3) contrast(1.02);
    backdrop-filter: blur(32px) saturate(1.3) contrast(1.02);
  }

  .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(560px, 70svh, 620px);
    align-items: start;
    padding-top: 120px;
    padding-bottom: 12px;
    padding-inline: calc(var(--gutter) + 20px);
  }

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

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

  .hero::after {
    right: var(--gutter);
    bottom: 12px;
    left: var(--gutter);
    height: min(232px, 43%);
    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.06rem, 7.18vw, 2.72rem);
    letter-spacing: -0.044em;
    line-height: 0.97;
    text-wrap: balance;
  }

  .hero-text {
    max-width: 590px;
    margin-top: 22px;
    font-size: clamp(0.93rem, 3.72vw, 0.98rem);
    color: var(--text-2);
    font-weight: 470;
    line-height: 1.5;
    text-wrap: pretty;
  }

  .hero-spectrum {
    top: 96px;
    right: var(--gutter);
    bottom: 12px;
    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: 0;
  }

  main::after {
    height: clamp(24px, 4vh, 42px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.86));
  }

  #approach {
    scroll-margin-top: 68px;
  }

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

  .section-heading h2,
  .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);
  }

  .section-heading h2,
  .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;
  }
}
