@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "Calibre Semibold";
  src: url("https://framerusercontent.com/assets/0Qh5cFs6C65ZdQfnlGpPoqu7DM.otf");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  --paper: #f1f1f1;
  --paper-warm: #e9e7df;
  --ink: #151515;
  --ink-soft: #282825;
  --muted: #72716a;
  --line: rgba(21, 21, 21, 0.14);
  --line-strong: rgba(21, 21, 21, 0.24);
  --white: #fbfbf8;
  --blue: #4361ee;
  --green: #2ace9d;
  --pink: #ff56d0;
  --purple: #6833ff;
  --yellow: #d8ff36;
  --coral: #ff523a;
  --mint: #b7f8df;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.16);
  --content-max: 1400px;
  --hero-shell: 1780px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Geist,
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection {
  background: rgba(216, 255, 54, 0.55);
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 10px;
  left: 50%;
  display: flex;
  width: min(var(--hero-shell), calc(100% - 72px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 18px 12px 20px;
  border: 1px solid rgba(251, 251, 248, 0.1);
  border-radius: 8px;
  background: rgba(21, 21, 21, 0.8);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: "Calibre Semibold", Geist, sans-serif;
  font-size: 29px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: inherit;
  font-weight: 600;
}

.brand-context {
  display: none;
}

.geo-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.geo-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.geo-mark-ring {
  fill: none;
  stroke: currentColor;
  stroke-width: 4.5;
}

.geo-mark-peak,
.geo-mark-base {
  fill: currentColor;
}

.nav-links {
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  min-height: 40px;
  padding: 10px 14px 9px;
  border-radius: 999px;
  color: rgba(251, 251, 248, 0.72);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.menu-toggle {
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 10px;
  border: 1px solid rgba(251, 251, 248, 0.16);
  border-radius: 999px;
  background: rgba(251, 251, 248, 0.06);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(251, 251, 248, 0.28);
  background: rgba(251, 251, 248, 0.12);
  outline: none;
}

.menu-toggle-icon {
  display: grid;
  gap: 3px;
}

.menu-toggle-icon span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle {
  background: var(--white);
  color: var(--ink);
}

.site-header.is-menu-open .menu-toggle-icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 40;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(251, 251, 248, 0.16);
  border-radius: 16px;
  background: rgba(21, 21, 21, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-radius: 12px;
  background: rgba(251, 251, 248, 0.04);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.mobile-nav a::after {
  content: ">";
  color: rgba(251, 251, 248, 0.42);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(251, 251, 248, 0.12);
  outline: none;
}

.mobile-nav-primary {
  background: var(--yellow) !important;
  color: var(--ink) !important;
}

.mobile-nav-primary::after {
  color: rgba(21, 21, 21, 0.58) !important;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 560px);
  align-items: center;
  gap: clamp(40px, 4vw, 76px);
  min-height: clamp(760px, 86vh, 900px);
  overflow: hidden;
  padding: 144px max(32px, calc((100vw - var(--hero-shell)) / 2)) 68px;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(251, 251, 248, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 251, 248, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 78%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  content: "";
  background: linear-gradient(transparent, rgba(21, 21, 21, 0.95));
}

.hero-copy-block,
.hero-preview-stack,
.hero-graph {
  position: relative;
  z-index: 1;
}

.hero-copy-block {
  width: min(100%, 980px);
  max-width: none;
  padding-top: clamp(18px, 2.4vh, 34px);
}

.kicker {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1160px;
  margin-top: 28px;
  font-size: clamp(76px, 5.4vw, 114px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  overflow-wrap: break-word;
  white-space: nowrap;
}

.hero-copy {
  width: min(980px, 100%);
  margin-top: 34px;
  color: rgba(251, 251, 248, 0.72);
  font-size: clamp(24px, 2vw, 33px);
  line-height: 1.09;
}

.hero-definition {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 34px;
}

.hero-definition span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding-left: 16px;
  color: rgba(251, 251, 248, 0.78);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}

.hero-definition span::before {
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
}

.hero-definition span:nth-child(2)::before {
  background: var(--green);
}

.hero-definition span:nth-child(3)::before {
  background: var(--pink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 28px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button svg,
.case-link svg,
.geo-native-card-open svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

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

.button.primary {
  background: var(--yellow);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(251, 251, 248, 0.22);
  background: rgba(251, 251, 248, 0.07);
  color: var(--white);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button.ghost.dark {
  border-color: rgba(21, 21, 21, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.button.ghost.dark:hover,
.button.ghost.dark:focus-visible {
  border-color: rgba(21, 21, 21, 0.24);
  background: var(--ink);
  color: var(--white);
}

body.early-access-open {
  overflow: hidden;
}

.early-access-modal[hidden] {
  display: none;
}

.early-access-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.early-access-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.58);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.early-access-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 32px));
  max-height: calc(100vh - 36px);
  margin: 18px auto;
  padding: 30px 30px 28px;
  overflow-y: auto;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 86, 208, 0.12), transparent 36%),
    radial-gradient(circle at bottom right, rgba(216, 255, 54, 0.16), transparent 34%),
    rgba(251, 251, 248, 0.98);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.24);
}

.early-access-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transition:
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.early-access-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.early-access-close:hover,
.early-access-close:focus-visible {
  background: var(--yellow);
  border-color: rgba(21, 21, 21, 0.2);
  outline: none;
  transform: translateY(-1px);
}

.early-access-copy {
  max-width: 560px;
}

.early-access-copy h2 {
  margin-top: 10px;
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 880;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.early-access-copy p:last-child {
  max-width: 54ch;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.2;
}

.early-access-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.early-access-form[hidden],
.early-access-success[hidden] {
  display: none;
}

.early-access-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.early-access-field {
  display: grid;
  gap: 10px;
}

.early-access-field span,
.early-access-check span {
  color: var(--ink);
  font-family: "Calibre Semibold", Geist, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.early-access-field input,
.early-access-field textarea {
  width: 100%;
  padding: 16px 18px 15px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  line-height: 1.4;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.early-access-field textarea {
  min-height: 148px;
  resize: vertical;
}

.early-access-field input::placeholder,
.early-access-field textarea::placeholder {
  color: rgba(21, 21, 21, 0.44);
}

.early-access-field input:focus,
.early-access-field textarea:focus {
  border-color: rgba(104, 51, 255, 0.42);
  outline: none;
  box-shadow: 0 0 0 4px rgba(104, 51, 255, 0.1);
  background: var(--white);
}

.early-access-check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 26px;
}

.early-access-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
}

.early-access-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

.early-access-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.3;
}

.early-access-status.is-error {
  color: #bb2b2b;
}

.early-access-status.is-success {
  color: #136d4b;
}

.early-access-submit {
  min-width: 198px;
}

.early-access-submit[disabled] {
  cursor: wait;
  opacity: 0.88;
}

.early-access-success {
  display: grid;
  justify-items: start;
  gap: 16px;
  margin-top: 30px;
  padding: 28px 28px 26px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(104, 51, 255, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(216, 255, 54, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.92);
}

.early-access-success-mark {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(104, 51, 255, 0.2);
}

.early-access-success-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.early-access-success h3 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 880;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.early-access-success p:not(.kicker) {
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.22;
}

.early-access-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.hero-graph {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.graph-node,
.graph-line {
  position: absolute;
  display: block;
}

.graph-node {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(251, 251, 248, 0.86);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 34px currentColor;
  animation: drift 7s ease-in-out infinite alternate;
}

.node-a {
  top: 17%;
  left: 11%;
  color: var(--pink);
  background: var(--pink);
}

.node-b {
  top: 28%;
  right: 18%;
  color: var(--yellow);
  background: var(--yellow);
  animation-delay: -1.4s;
}

.node-c {
  right: 7%;
  bottom: 18%;
  color: var(--green);
  background: var(--green);
  animation-delay: -2.1s;
}

.node-d {
  bottom: 12%;
  left: 16%;
  color: var(--coral);
  background: var(--coral);
  animation-delay: -3s;
}

.node-e {
  top: 47%;
  left: 53%;
  width: 24px;
  height: 24px;
  color: var(--blue);
  background: var(--blue);
  animation-delay: -0.8s;
}

.graph-line {
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(251, 251, 248, 0.2), transparent);
}

.line-a {
  top: 22%;
  left: 12%;
  width: 48vw;
  transform: rotate(12deg);
}

.line-b {
  top: 33%;
  left: 53%;
  width: 28vw;
  transform: rotate(34deg);
}

.line-c {
  bottom: 22%;
  left: 16%;
  width: 40vw;
  transform: rotate(-23deg);
}

.line-d {
  right: 6%;
  bottom: 18%;
  width: 34vw;
  transform: rotate(166deg);
}

.hero-preview-stack {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(560px, 100%);
  display: grid;
  gap: 16px;
  justify-self: end;
  align-self: center;
  perspective: 900px;
}

.hero-preview {
  min-height: 172px;
  padding: 24px;
  border: 1px solid rgba(251, 251, 248, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(251, 251, 248, 0.12), rgba(251, 251, 248, 0.035)),
    rgba(251, 251, 248, 0.04);
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.24);
  transform: rotateY(-8deg) rotate(-1deg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hero-preview:nth-child(2) {
  margin-left: 40px;
}

.hero-preview:nth-child(3) {
  margin-left: 84px;
}

.hero-preview span {
  display: inline-flex;
  padding: 10px 14px 9px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
}

.hero-preview strong {
  display: block;
  max-width: 420px;
  margin-top: 28px;
  font-size: clamp(42px, 3vw, 62px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.95;
}

.preview-two span {
  background: var(--green);
}

.preview-three span {
  background: var(--pink);
}

.graph-power {
  padding: 112px max(24px, calc((100vw - var(--content-max)) / 2)) 52px;
  background: var(--paper);
}

.graph-power-heading {
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.graph-power .kicker {
  color: var(--ink);
}

.graph-power-heading p {
  max-width: 780px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 25px);
  line-height: 1.16;
}

.belief-band {
  padding: 112px max(24px, calc((100vw - var(--content-max)) / 2));
  background: var(--paper);
}

.belief-band > div {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 44px;
  align-items: start;
}

.belief-band .kicker {
  color: var(--ink);
}

.belief-band h2,
.graph-power-heading h2,
.use-cases-heading h2,
.spaces-heading h2,
.movement-cta h2 {
  font-size: clamp(44px, 6.4vw, 104px);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 0.9;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.belief-copy,
.use-cases-copy,
.spaces-heading > p:not(.kicker) {
  max-width: 690px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 25px);
  line-height: 1.16;
}

.graph-journey {
  position: relative;
  min-height: 250vh;
  padding: 24px max(24px, calc((100vw - var(--content-max)) / 2)) 96px;
  background: var(--paper);
}

.graph-journey-sticky {
  position: sticky;
  top: 94px;
  display: grid;
  grid-template-columns: minmax(320px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 54px);
  align-items: start;
  min-height: calc(100vh - 118px);
}

.graph-journey-copy {
  align-self: start;
  padding-top: 18px;
}

.journey-eyebrow {
  color: #718a00;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.journey-caption {
  margin-top: 16px;
  padding: 18px 20px 18px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
}

.journey-caption-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 10px 5px;
  border-radius: 999px;
  background: rgba(216, 255, 54, 0.18);
  color: #718a00;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.journey-caption-title {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 850;
  line-height: 0.98;
  text-wrap: balance;
}

.journey-caption-copy {
  max-width: 30ch;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.18;
}

.graph-journey-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.journey-step {
  position: relative;
  min-height: 0;
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  opacity: 0.48;
  transform: translateY(0) scale(0.99);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.journey-step::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--yellow));
  content: "";
  opacity: 0.18;
  transform: scaleX(0.24);
  transform-origin: left center;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.journey-step::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--yellow));
  content: "";
  opacity: 0.12;
  transform: scaleX(var(--step-progress, 0));
  transform-origin: left center;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.journey-step span {
  display: block;
  color: var(--muted);
  font-family: "Calibre Semibold", Geist, sans-serif;
  font-size: 15px;
}

.journey-step strong {
  display: block;
  margin-top: 12px;
  color: rgba(21, 21, 21, 0.42);
  font-size: clamp(24px, 1.8vw, 30px);
  font-weight: 880;
  line-height: 0.96;
  transition: color 220ms ease;
}

.journey-step p {
  max-width: none;
  margin-top: 10px;
  color: rgba(21, 21, 21, 0.52);
  font-size: 14px;
  line-height: 1.18;
  transition: color 220ms ease;
}

.graph-journey-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(233, 231, 223, 0.62)),
    var(--white);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.12);
}

.journey-step.is-complete {
  border-color: rgba(21, 21, 21, 0.16);
  background: rgba(255, 255, 255, 0.74);
  opacity: 0.84;
  transform: translateY(0);
}

.journey-step.is-complete::before {
  opacity: 0.58;
  transform: scaleX(1);
}

.journey-step.is-complete::after {
  opacity: 0.34;
}

.journey-step.is-complete strong {
  color: rgba(21, 21, 21, 0.78);
}

.journey-step.is-complete p {
  color: rgba(21, 21, 21, 0.62);
}

.journey-step.is-active {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
  opacity: 1;
  transform: translateY(-4px) scale(1);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.09);
}

.journey-step.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.journey-step.is-active::after {
  opacity: 0.84;
}

.journey-step.is-active strong {
  color: var(--ink);
}

.journey-step.is-active p {
  color: var(--ink-soft);
}

.graph-journey[data-static="true"] {
  min-height: auto;
  padding-top: 24px;
  padding-bottom: 80px;
}

.graph-journey[data-static="true"] .graph-journey-sticky {
  position: static;
  grid-template-columns: 1fr;
  min-height: auto;
}

.graph-journey[data-static="true"] .graph-journey-copy {
  padding-top: 0;
}

.graph-journey[data-static="true"] .graph-journey-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.graph-journey[data-static="true"] .journey-step {
  min-height: 174px;
  opacity: 1;
  transform: none;
  background: rgba(255, 255, 255, 0.9);
}

.graph-journey[data-static="true"] .journey-step::before {
  opacity: 0.58;
  transform: scaleX(1);
}

.graph-journey[data-static="true"] .journey-step::after {
  opacity: 0.34;
  transform: scaleX(1);
}

.graph-journey[data-static="true"] .journey-step strong {
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 30px);
}

.graph-journey[data-static="true"] .journey-step p {
  color: var(--ink-soft);
  font-size: 14px;
}

.journey-scene {
  position: relative;
  min-height: 720px;
  isolation: isolate;
}

.journey-scene::before {
  position: absolute;
  inset: 10% 8%;
  content: "";
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 86, 208, 0.14), transparent 18%),
    radial-gradient(circle at 72% 18%, rgba(216, 255, 54, 0.16), transparent 18%),
    radial-gradient(circle at 74% 70%, rgba(42, 206, 157, 0.14), transparent 20%),
    radial-gradient(circle at 24% 74%, rgba(104, 51, 255, 0.12), transparent 18%);
  filter: blur(28px);
  opacity: 0.94;
  pointer-events: none;
}

.journey-scene::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(21, 21, 21, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(rgba(0, 0, 0, 0.9), transparent 92%);
  pointer-events: none;
}

.journey-edge-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.journey-edge {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 0;
  background: rgba(21, 21, 21, 0.4);
  transform-origin: 0 50%;
  opacity: 0;
}

.journey-edge::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(21, 21, 21, 0.42);
  border-right: 2px solid rgba(21, 21, 21, 0.42);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.journey-edge span {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 5px 9px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, calc(-100% - 8px));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  opacity: var(--edge-label-opacity, 1);
  transition: opacity 180ms ease;
}

.journey-node {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  transform-origin: center center;
  transition:
    opacity 220ms ease,
    filter 220ms ease;
  will-change: transform, opacity, filter;
}

.journey-node-card {
  width: clamp(176px, 15vw, 232px);
  padding: 14px 16px 16px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.journey-node-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.journey-node-mark {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--node-tone-soft);
  color: var(--node-tone);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.journey-node-type {
  color: var(--node-tone);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.journey-node strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 850;
  line-height: 0.96;
  text-wrap: balance;
}

.journey-node-claim strong,
.journey-node-verification strong,
.journey-node-editor strong,
.journey-node-app strong {
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.02;
}

.journey-node-verification,
.journey-node-app {
  width: clamp(150px, 12vw, 190px);
}

.journey-node-app {
  z-index: 4;
}

.journey-node-company {
  z-index: 4;
  width: clamp(208px, 18vw, 268px);
}

.journey-node-company strong {
  font-size: clamp(30px, 2.6vw, 42px);
}

.journey-node-verification,
.journey-node-editor {
  z-index: 3;
}

.journey-node-claim {
  width: clamp(176px, 13vw, 200px);
}

.journey-node-editor {
  width: clamp(164px, 13vw, 196px);
}

.journey-node-topic {
  z-index: 3;
}

.journey-node-person,
.journey-node-source,
.journey-node-place {
  z-index: 2;
}

.tone-blue {
  --node-tone: var(--blue);
  --node-tone-soft: rgba(67, 97, 238, 0.16);
}

.tone-green {
  --node-tone: var(--green);
  --node-tone-soft: rgba(42, 206, 157, 0.16);
}

.tone-pink {
  --node-tone: var(--pink);
  --node-tone-soft: rgba(255, 86, 208, 0.18);
}

.tone-purple {
  --node-tone: var(--purple);
  --node-tone-soft: rgba(104, 51, 255, 0.16);
}

.tone-yellow {
  --node-tone: #97b800;
  --node-tone-soft: rgba(216, 255, 54, 0.2);
}

.tone-coral {
  --node-tone: var(--coral);
  --node-tone-soft: rgba(255, 82, 58, 0.15);
}

.tone-neutral {
  --node-tone: var(--ink-soft);
  --node-tone-soft: rgba(21, 21, 21, 0.08);
}

.video-section {
  padding: 112px max(24px, calc((100vw - var(--content-max)) / 2)) 118px;
  background: var(--ink);
  color: var(--white);
}

.video-heading {
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 42px;
}

.video-heading .kicker {
  color: var(--yellow);
}

.video-heading h2 {
  max-width: 860px;
  font-size: clamp(44px, 6.2vw, 98px);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 0.9;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.video-heading p {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(251, 251, 248, 0.66);
  font-size: clamp(18px, 1.9vw, 25px);
  line-height: 1.16;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(251, 251, 248, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(251, 251, 248, 0.08), rgba(251, 251, 248, 0.025)),
    rgba(251, 251, 248, 0.045);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.video-card.is-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
}

.video-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-bottom: 1px solid rgba(251, 251, 248, 0.14);
  background: var(--ink);
}

.video-card.is-featured .video-media {
  border-right: 1px solid rgba(251, 251, 248, 0.14);
  border-bottom: 0;
}

.video-media::before {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow:
    14px 0 0 var(--yellow),
    28px 0 0 var(--green);
  content: "";
  pointer-events: none;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background:
    linear-gradient(rgba(251, 251, 248, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 251, 248, 0.05) 1px, transparent 1px),
    var(--ink);
  background-size: 30px 30px;
  object-fit: cover;
}

.video-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.video-eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  margin: 0;
  padding: 8px 10px 6px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.video-copy h3 {
  color: var(--white);
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 880;
  line-height: 0.94;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.video-card:not(.is-featured) .video-copy h3 {
  font-size: clamp(24px, 2.3vw, 36px);
}

.video-copy p:not(.video-eyebrow) {
  max-width: 600px;
  color: rgba(251, 251, 248, 0.66);
  font-size: 17px;
  line-height: 1.2;
}

.spaces-section {
  overflow: hidden;
  padding: 112px max(24px, calc((100vw - var(--content-max)) / 2)) 28px;
  background: var(--ink);
  color: var(--white);
}

.spaces-heading {
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 1fr);
  gap: 0 44px;
  align-items: start;
}

.spaces-heading h2 {
  max-width: 10ch;
  font-size: clamp(40px, 4.9vw, 78px);
}

.spaces-heading > p:not(.kicker) {
  grid-column: 2;
  color: rgba(251, 251, 248, 0.66);
}

.spaces-actions {
  grid-column: 2;
  margin-top: 28px;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid rgba(251, 251, 248, 0.16);
  border-left: 1px solid rgba(251, 251, 248, 0.16);
}

.space-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 270px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 72px;
  appearance: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  border: 0;
  border-right: 1px solid rgba(251, 251, 248, 0.16);
  border-bottom: 1px solid rgba(251, 251, 248, 0.16);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--space-accent) 24%, transparent), transparent 46%),
    rgba(251, 251, 248, 0.045);
  box-shadow:
    inset 0 5px 0 var(--space-accent, var(--yellow)),
    0 0 0 rgba(0, 0, 0, 0);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  isolation: isolate;
}

.space-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 14%, color-mix(in srgb, var(--space-accent) 34%, transparent), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--space-accent) 28%, transparent), transparent 58%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.space-card::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--space-accent, var(--yellow)), transparent);
  opacity: 0.72;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.space-card:hover,
.space-card:focus-visible,
.space-card.is-selected {
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--space-accent) 34%, transparent), transparent 50%),
    rgba(251, 251, 248, 0.07);
  box-shadow:
    inset 0 5px 0 var(--space-accent, var(--yellow)),
    0 22px 44px rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.space-card:hover::before,
.space-card:focus-visible::before,
.space-card.is-selected::before {
  opacity: 1;
}

.space-card:hover::after,
.space-card:focus-visible::after,
.space-card.is-selected::after {
  opacity: 1;
  transform: scaleX(1.02);
}

.space-card:focus-visible {
  outline: none;
}

.space-card-label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 8px 10px 6px;
  border-radius: 999px;
  background: var(--space-accent, var(--yellow));
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.space-card h3 {
  max-width: 340px;
  margin-top: 82px;
  margin-bottom: auto;
  color: var(--white);
  font-size: clamp(27px, 3vw, 43px);
  font-weight: 880;
  line-height: 0.94;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.space-card-cta {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(251, 251, 248, 0.94);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.space-card-cta::after {
  content: "->";
  font-size: 13px;
}

.space-card:hover .space-card-cta,
.space-card:focus-visible .space-card-cta,
.space-card.is-selected .space-card-cta {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .space-card {
    transform: none;
  }

  .space-card-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

.accent-green {
  --space-accent: var(--green);
}

.accent-coral {
  --space-accent: var(--coral);
}

.accent-blue {
  --space-accent: var(--blue);
}

.accent-purple {
  --space-accent: var(--purple);
}

.accent-pink {
  --space-accent: var(--pink);
}

.accent-yellow {
  --space-accent: var(--yellow);
}

.use-cases-section {
  scroll-margin-top: 104px;
  padding: 56px max(16px, calc((100vw - var(--content-max)) / 2)) 72px;
}

.use-cases-heading {
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.use-cases-heading .kicker {
  color: var(--ink);
}

.geo-native-strip {
  scroll-margin-top: 104px;
  position: relative;
  margin-bottom: 30px;
  padding: 28px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 86, 208, 0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(67, 97, 238, 0.08), transparent 22%),
    radial-gradient(circle at 66% 78%, rgba(216, 255, 54, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 244, 0.96));
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.07);
}

.geo-native-strip-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.geo-native-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.geo-native-brand-mark {
  width: 46px;
  height: 46px;
  padding: 8px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.geo-native-brand-copy {
  display: grid;
  gap: 3px;
}

.geo-native-kicker {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.geo-native-meta {
  color: rgba(21, 21, 21, 0.58);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.geo-native-strip-copy h3 {
  max-width: 11ch;
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 0.96;
}

.geo-native-strip-copy > div:not(.geo-native-brand) p {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.2;
}

.geo-native-stage {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
}

.geo-native-hub {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  padding: 11px 14px 11px 12px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.geo-native-hub::after {
  position: absolute;
  left: 50%;
  top: calc(100% + 2px);
  width: 1px;
  height: 18px;
  background: linear-gradient(rgba(21, 21, 21, 0.24), rgba(21, 21, 21, 0.04));
  content: "";
  transform: translateX(-50%);
}

.geo-native-hub-mark {
  width: 32px;
  height: 32px;
  padding: 3px;
  color: var(--ink);
}

.geo-native-hub-copy {
  display: grid;
  gap: 2px;
}

.geo-native-hub-copy strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.geo-native-hub-copy span {
  color: rgba(21, 21, 21, 0.56);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.geo-native-strip-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 12px;
}

.geo-native-strip-list::before {
  position: absolute;
  top: 0;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 86, 208, 0.22), rgba(104, 51, 255, 0.22), rgba(216, 255, 54, 0.18));
  content: "";
}

.geo-native-card {
  --native-preview-scale: 1;
  --native-preview-shift: 0px;
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  min-height: 308px;
  padding: 18px 18px 16px;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 247, 0.92));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.geo-native-card::before {
  position: absolute;
  left: 50%;
  top: -13px;
  width: 1px;
  height: 13px;
  background: linear-gradient(rgba(21, 21, 21, 0.2), rgba(21, 21, 21, 0.04));
  content: "";
  transform: translateX(-50%);
}

.geo-native-card::after {
  position: absolute;
  inset: auto -10% -30% auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--case-accent, var(--yellow)) 10%, white);
  content: "";
  filter: blur(12px);
  opacity: 0.8;
  pointer-events: none;
}

.geo-native-card:hover,
.geo-native-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(21, 21, 21, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.1);
  outline: none;
}

.geo-native-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  height: clamp(176px, 12vw, 198px);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.02), rgba(21, 21, 21, 0.14)),
    rgba(21, 21, 21, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.geo-native-card-media::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--case-accent, var(--yellow)) 90%, white), transparent 90%);
  content: "";
  z-index: 2;
}

.geo-native-card-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(21, 21, 21, 0.18)),
    linear-gradient(180deg, transparent 38%, rgba(21, 21, 21, 0.42) 100%);
  content: "";
  z-index: 1;
}

.geo-native-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(var(--native-preview-shift)) scale(var(--native-preview-scale));
  transform-origin: center top;
  transition: transform 260ms ease;
}

.geo-native-card:hover .geo-native-card-media img,
.geo-native-card:focus-visible .geo-native-card-media img {
  transform: translateY(var(--native-preview-shift)) scale(calc(var(--native-preview-scale) + 0.015));
}

.geo-native-card[data-native-app="geo-podcasts"] {
  --native-preview-scale: 1;
  --native-preview-shift: 0px;
}

.geo-native-card[data-native-app="geo-news"] {
  --native-preview-scale: 1;
  --native-preview-shift: 0px;
}

.geo-native-card[data-native-app="geo-people"] {
  --native-preview-scale: 1;
  --native-preview-shift: 0px;
}

.geo-native-card-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px 5px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--case-accent, var(--yellow)) 22%, white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.geo-native-card-status {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 7px 10px 5px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.geo-native-card h4 {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  font-size: clamp(28px, 2.1vw, 34px);
  font-weight: 860;
  line-height: 0.96;
}

.geo-native-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.geo-native-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.geo-native-card-domain {
  color: rgba(21, 21, 21, 0.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.geo-native-card-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.geo-native-card[data-tone="coral"] {
  --case-accent: var(--coral);
}

.geo-native-card[data-tone="green"] {
  --case-accent: var(--green);
}

.geo-native-card[data-tone="blue"] {
  --case-accent: var(--blue);
}

.geo-native-card[data-tone="yellow"] {
  --case-accent: var(--yellow);
}

.geo-native-card[data-tone="purple"] {
  --case-accent: var(--purple);
}

.geo-native-card[data-tone="mint"] {
  --case-accent: var(--mint);
}

.geo-native-card[data-tone="pink"] {
  --case-accent: var(--pink);
}

.filter-bar {
  position: sticky;
  z-index: 10;
  top: 92px;
  display: grid;
  grid-template-columns: repeat(var(--filter-count, 1), minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  padding: 10px 0 18px;
  background: linear-gradient(var(--paper) 72%, rgba(241, 241, 241, 0));
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-button {
  display: inline-flex;
  min-height: 40px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 11px 15px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.filter-button:hover {
  transform: translateY(-1px);
}

.case-stage {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.case-panel {
  position: relative;
  display: grid;
  min-height: 450px;
  grid-template-columns: 56px minmax(360px, 0.84fr) minmax(360px, 1.08fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
}

.case-index {
  display: grid;
  place-items: start center;
  padding-top: 26px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: "Calibre Semibold", Geist, sans-serif;
  font-size: 16px;
}

.case-preview {
  position: relative;
  display: flex;
  min-height: 100%;
  align-items: stretch;
  padding: 18px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.preview-shell {
  position: relative;
  flex: 1;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(251, 251, 248, 0.98), rgba(251, 251, 248, 0.94));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.54) inset;
}

.browser-top {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.browser-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line-strong);
}

.browser-top span:nth-child(1) {
  background: var(--coral);
}

.browser-top span:nth-child(2) {
  background: var(--yellow);
}

.browser-top span:nth-child(3) {
  background: var(--green);
}

.browser-top em {
  min-width: 0;
  overflow: hidden;
  margin-left: 6px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-frame {
  position: absolute;
  top: 38px;
  left: 50%;
  z-index: 2;
  width: 1280px;
  height: 1280px;
  border: 0;
  background: white;
  transform: translateX(-50%) scale(0.4);
  transform-origin: top center;
  pointer-events: none;
}

.preview-fallback {
  position: absolute;
  inset: 38px 0 0;
  z-index: 1;
}

.site-preview-image {
  position: absolute;
  inset: 38px 0 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: calc(100% - 38px);
  background: var(--paper);
  object-fit: cover;
  object-position: center top;
}

.preview-art {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 404px;
  overflow: hidden;
  background:
    linear-gradient(rgba(21, 21, 21, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 30px 30px;
}

.preview-art::before {
  position: absolute;
  inset: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  content: "";
}

.preview-art strong {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 28px;
  font-weight: 850;
  line-height: 0.94;
}

.art-node,
.art-line {
  position: absolute;
  display: block;
}

.art-node {
  z-index: 2;
  width: 15px;
  height: 15px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.art-node-a {
  top: 23%;
  left: 21%;
}

.art-node-b {
  top: 41%;
  left: 52%;
  width: 20px;
  height: 20px;
}

.art-node-c {
  right: 18%;
  bottom: 33%;
}

.art-node-d {
  bottom: 20%;
  left: 30%;
}

.art-line {
  z-index: 1;
  height: 1px;
  transform-origin: left center;
  background: rgba(21, 21, 21, 0.22);
}

.art-line-a {
  top: 27%;
  left: 23%;
  width: 42%;
  transform: rotate(20deg);
}

.art-line-b {
  top: 45%;
  left: 54%;
  width: 32%;
  transform: rotate(24deg);
}

.art-line-c {
  bottom: 24%;
  left: 31%;
  width: 34%;
  transform: rotate(-27deg);
}

.case-content {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px 24px 20px;
}

.case-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-content h3 {
  max-width: 650px;
  margin-top: 10px;
  font-size: clamp(28px, 3.35vw, 52px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.93;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.case-content p:not(.case-meta) {
  max-width: 640px;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.16;
}

.case-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-chip-row span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 11px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 251, 248, 0.76);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.case-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.case-link:hover,
.case-link:focus-visible {
  background: var(--case-accent, var(--yellow));
  color: var(--ink);
}

.case-link-secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.case-link-secondary:hover,
.case-link-secondary:focus-visible {
  border-color: var(--case-accent, var(--yellow));
  background: color-mix(in srgb, var(--case-accent, var(--yellow)) 16%, white);
  color: var(--ink);
}

.case-panel[data-tone="coral"] {
  --case-accent: var(--coral);
}

.case-panel[data-tone="green"] {
  --case-accent: var(--green);
}

.case-panel[data-tone="blue"] {
  --case-accent: var(--blue);
}

.case-panel[data-tone="yellow"] {
  --case-accent: var(--yellow);
}

.case-panel[data-tone="purple"] {
  --case-accent: var(--purple);
}

.case-panel[data-tone="mint"] {
  --case-accent: var(--mint);
}

.case-panel[data-tone="pink"] {
  --case-accent: var(--pink);
}

.case-panel[data-tone] .case-index,
.case-panel[data-tone] .art-node-b {
  color: var(--case-accent);
}

.case-panel[data-tone] .art-node {
  background: var(--case-accent);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

.site-footer {
  display: flex;
  width: min(var(--content-max), calc(100% - 32px));
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 880;
}

.site-footer a {
  font-size: 14px;
  font-weight: 800;
}

.movement-cta {
  position: relative;
  overflow: hidden;
  width: min(var(--content-max), calc(100% - 32px));
  min-height: 430px;
  margin: 0 auto 28px;
  padding: 44px;
  border: 1px solid rgba(251, 251, 248, 0.16);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.movement-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(251, 251, 248, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 251, 248, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(120deg, transparent, black 20%, black 74%, transparent);
}

.movement-cta::after {
  position: absolute;
  right: 44px;
  bottom: 44px;
  width: min(420px, 42vw);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--yellow));
}

.movement-cta > * {
  position: relative;
  z-index: 1;
}

.movement-cta h2 {
  max-width: 900px;
  margin-top: 24px;
}

.movement-cta .button {
  margin-top: 34px;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(10px, -14px, 0) scale(1.16);
  }
}

@media (max-width: 1050px) {
  .filter-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }

  .filter-button {
    width: auto;
    flex: 0 0 auto;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    height: auto;
    min-height: auto;
    padding: 136px 32px 56px;
  }

  .hero-copy-block {
    width: 100%;
    max-width: 100%;
    padding-top: 12px;
  }

  .hero h1 {
    max-width: 820px;
    font-size: clamp(62px, 8vw, 92px);
    white-space: normal;
    text-wrap: balance;
  }

  .hero-copy {
    max-width: 780px;
    font-size: clamp(22px, 3vw, 30px);
  }

  .hero-preview-stack {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
  }

  .hero-preview,
  .hero-preview:nth-child(2),
  .hero-preview:nth-child(3) {
    margin-left: 0;
    transform: none;
  }

  .belief-band > div,
  .graph-power-heading,
  .video-heading,
  .use-cases-heading,
  .geo-native-strip,
  .spaces-heading {
    grid-template-columns: 1fr;
  }

  .geo-native-stage {
    gap: 14px;
  }

  .geo-native-strip-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .geo-native-card {
    min-height: 284px;
  }

  .geo-native-card h4 {
    max-width: none;
    font-size: clamp(22px, 2.8vw, 28px);
  }

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

  .video-card.is-featured {
    grid-template-columns: 1fr;
  }

  .spaces-heading > p:not(.kicker) {
    grid-column: auto;
  }

  .spaces-actions {
    grid-column: auto;
  }

  .spaces-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .graph-journey {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 88px;
  }

  .graph-journey-sticky {
    position: static;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .graph-journey-copy {
    padding-top: 0;
  }

  .graph-journey-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .journey-step p {
    max-width: none;
  }

  .graph-journey-visual,
  .journey-scene {
    min-height: 660px;
  }

  .case-panel {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .case-preview {
    min-height: 380px;
    border-right: 0;
  }

  .preview-shell {
    min-height: 344px;
  }

  .case-content {
    grid-column: 2;
    border-top: 1px solid var(--line);
  }

  .case-links {
    gap: 8px;
  }
}

@media (max-width: 700px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 10px 12px 10px 14px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: grid;
  }

  .brand-context {
    display: none;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 112px 16px 46px;
  }

  .hero-copy-block {
    width: min(100%, 340px);
    max-width: 340px;
    padding-top: 0;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(44px, 11vw, 54px);
    line-height: 0.94;
    white-space: normal;
    text-wrap: balance;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 19px;
    line-height: 1.12;
  }

  .hero-definition {
    gap: 10px 14px;
  }

  .hero-definition span {
    font-size: 11px;
  }

  .button {
    min-height: 58px;
    padding: 18px 20px 16px;
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .early-access-dialog {
    width: min(100% - 20px, 720px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    padding: 22px 18px 20px;
    border-radius: 14px;
  }

  .early-access-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .early-access-copy p:last-child {
    font-size: 18px;
  }

  .early-access-field-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .early-access-field span,
  .early-access-check span {
    font-size: 17px;
  }

  .early-access-field input,
  .early-access-field textarea {
    font-size: 16px;
  }

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

  .early-access-submit {
    width: 100%;
    min-width: 0;
  }

  .early-access-success {
    padding: 22px 18px 20px;
    border-radius: 14px;
  }

  .early-access-success h3 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .early-access-success p:not(.kicker) {
    font-size: 17px;
  }

  .early-access-success-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .early-access-success-actions .button {
    width: 100%;
  }

  .hero-preview-stack {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    min-height: 126px;
    padding: 20px 18px;
  }

  .hero-preview strong {
    margin-top: 18px;
    max-width: 100%;
    font-size: clamp(28px, 8vw, 38px);
    text-wrap: balance;
  }

  .belief-band,
  .graph-power,
  .video-section,
  .use-cases-section,
  .spaces-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .belief-band {
    padding-top: 76px;
    padding-bottom: 78px;
  }

  .belief-band h2,
  .graph-power-heading h2,
  .video-heading h2,
  .use-cases-heading h2,
  .spaces-heading h2,
  .movement-cta h2 {
    font-size: clamp(34px, 9.4vw, 46px);
    line-height: 0.94;
  }

  .spaces-heading h2 {
    max-width: 12ch;
  }

  .graph-power {
    padding-top: 78px;
    padding-bottom: 40px;
  }

  .graph-journey {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .journey-caption {
    padding: 16px;
  }

  .journey-caption-title {
    font-size: clamp(21px, 6vw, 28px);
  }

  .journey-caption-copy {
    font-size: 15px;
  }

  .graph-journey-steps {
    gap: 12px;
  }

  .graph-journey[data-static="true"] .graph-journey-steps {
    grid-auto-flow: column;
    grid-auto-columns: minmax(214px, 264px);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px 6px 10px 0;
    scrollbar-width: none;
  }

  .graph-journey[data-static="true"] .graph-journey-steps::-webkit-scrollbar {
    display: none;
  }

  .journey-step {
    min-height: 174px;
    padding: 16px 16px 14px;
  }

  .journey-step strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .journey-step p {
    font-size: 15px;
  }

  .graph-journey-visual,
  .journey-scene {
    min-height: 520px;
  }

  .journey-node-card {
    width: clamp(122px, 34vw, 176px);
    padding: 10px 12px 12px;
    border-radius: 22px;
  }

  .journey-node-verification,
  .journey-node-app,
  .journey-node-claim,
  .journey-node-editor {
    width: clamp(118px, 30vw, 164px);
  }

  .journey-node-mark {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .journey-node-type {
    font-size: 10px;
  }

  .journey-node strong {
    margin-top: 10px;
    font-size: clamp(16px, 4.4vw, 24px);
    line-height: 1;
  }

  .journey-edge span {
    padding: 4px 7px;
    font-size: 10px;
  }

  .video-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .geo-native-strip {
    margin-bottom: 24px;
    padding: 20px 18px;
    gap: 18px;
  }

  .geo-native-brand {
    gap: 12px;
  }

  .geo-native-brand-mark {
    width: 42px;
    height: 42px;
    padding: 7px;
  }

  .geo-native-strip-copy h3 {
    max-width: none;
    font-size: clamp(30px, 8.8vw, 42px);
  }

  .geo-native-strip-copy > div:not(.geo-native-brand) p {
    font-size: 16px;
  }

  .geo-native-hub {
    margin-left: 0;
  }

  .geo-native-hub::after {
    left: 24px;
  }

  .geo-native-strip-list::before {
    left: 24px;
    right: 24px;
  }

  .geo-native-strip-list {
    grid-template-columns: 1fr;
  }

  .geo-native-card {
    min-height: 262px;
    padding: 16px 16px 14px;
  }

  .geo-native-card-media {
    height: 192px;
    border-radius: 16px;
  }

  .geo-native-card h4 {
    font-size: clamp(22px, 6.2vw, 30px);
  }

  .geo-native-card p {
    font-size: 13px;
  }

  .geo-native-card-footer {
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }

  .video-heading {
    margin-bottom: 32px;
  }

  .video-copy {
    padding: 20px 18px;
  }

  .video-card video {
    aspect-ratio: 16 / 10;
  }

  .spaces-section {
    padding-top: 78px;
    padding-bottom: 72px;
  }

  .spaces-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .space-card {
    min-height: 218px;
    padding: 18px 18px 58px;
  }

  .space-card h3 {
    margin-top: 56px;
    font-size: clamp(28px, 8.6vw, 41px);
  }

  .space-card-cta {
    left: 18px;
    bottom: 18px;
  }

  .case-panel {
    grid-template-columns: 1fr;
  }

  .case-index {
    display: none;
  }

  .case-preview,
  .case-content {
    grid-column: auto;
  }

  .case-preview {
    min-height: 300px;
    padding: 14px;
  }

  .preview-art {
    min-height: 300px;
  }

  .preview-shell {
    min-height: 270px;
    border-radius: 16px;
  }

  .site-frame {
    transform: translateX(-50%) scale(0.31);
  }

  .case-content {
    gap: 16px;
    padding: 22px 18px;
  }

  .case-content h3 {
    font-size: clamp(30px, 9.6vw, 46px);
  }

  .case-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .movement-cta {
    min-height: 360px;
    padding: 28px 18px;
  }

  .movement-cta::after {
    right: 18px;
    bottom: 24px;
    width: calc(100% - 36px);
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 50px;
    padding: 7px 8px 7px 12px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-context {
    display: none;
  }

  .geo-mark {
    width: 24px;
    height: 24px;
  }

  .nav-links a {
    min-height: 34px;
    padding: 9px 10px 7px;
    font-size: 12px;
  }

  .menu-toggle {
    min-height: 40px;
    gap: 8px;
    padding: 10px 11px 8px;
  }

  .menu-toggle-text {
    font-size: 12px;
  }

  .mobile-nav {
    top: calc(100% + 8px);
    padding: 10px;
  }

  .mobile-nav a {
    min-height: 46px;
    padding: 12px 14px 10px;
    font-size: 14px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
