:root {
  color-scheme: light;
  --paper: #f5f5f2;
  --paper-strong: #fbfbf8;
  --surface: #e9e9e5;
  --ink: #121212;
  --muted: #666661;
  --line: rgba(18, 18, 18, 0.14);
  --line-soft: rgba(18, 18, 18, 0.08);
  --blue: #1769ff;
  --blue-dark: #0c3ba8;
  --lime: #d7ff3f;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --shadow: 0 32px 90px rgba(20, 28, 45, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: #fff;
  background: var(--blue);
}

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

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

button {
  color: inherit;
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transition: top 180ms ease;
}

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

.shell {
  width: min(100% - 80px, 1320px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  background: rgba(245, 245, 242, 0.76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  transition: height 260ms var(--ease), border-color 260ms ease, background-color 260ms ease;
}

.site-header.is-scrolled {
  height: 64px;
  border-color: var(--line-soft);
  background: rgba(245, 245, 242, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 80px, 1320px);
  height: 100%;
  margin-inline: auto;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.28rem;
  font-weight: 760;
  letter-spacing: -0.065em;
}

.wordmark-idea {
  color: var(--ink);
}

.wordmark-i {
  margin-right: 0.02em;
  color: var(--blue);
  font-size: 0.68em;
  font-weight: 780;
}

.wordmark-lab {
  color: var(--blue);
  font-weight: 520;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  padding-block: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 7vw, 112px);
  min-height: 100svh;
  padding-block: 132px 70px;
}

.eyebrow,
.section-index,
.panel-kicker,
.work-overline,
.work-next > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1,
.work-title-row h1 {
  margin: 28px 0 0;
  font-size: clamp(4.4rem, 7.8vw, 8.7rem);
  font-weight: 650;
  letter-spacing: -0.078em;
  line-height: 0.84;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  max-width: 9ch;
  color: var(--blue);
}

.hero-cn {
  margin: 30px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 570;
  letter-spacing: -0.03em;
}

.hero-intro {
  max-width: 36rem;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  letter-spacing: -0.025em;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.9rem;
  font-weight: 680;
}

.text-link span {
  font-size: 1.05rem;
  transition: transform 260ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-mark {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.96), transparent 38%),
    linear-gradient(145deg, #ecece8, #d9dbd6);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-mark::after {
  position: absolute;
  inset: 19%;
  z-index: -1;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(55px);
  opacity: 0.18;
  content: "";
  animation: breathe 7s ease-in-out infinite;
}

.hero-mark-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 25% 25%;
}

.hero-letter {
  position: absolute;
  display: grid;
  width: 50%;
  height: 50%;
  place-items: center;
  font-size: clamp(5rem, 10vw, 10.5rem);
  font-weight: 690;
  letter-spacing: -0.11em;
  line-height: 1;
}

.hero-letter-i {
  top: 0;
  left: 0;
}

.hero-letter-d {
  top: 0;
  right: 0;
  color: var(--blue);
}

.hero-letter-e {
  bottom: 0;
  left: 0;
  color: var(--blue);
}

.hero-letter-a {
  right: 0;
  bottom: 0;
}

.hero-mark-caption {
  position: absolute;
  right: 22px;
  bottom: 19px;
  left: 22px;
  overflow: hidden;
  font-size: 0.63rem;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.idea-section,
.featured-section,
.future-section,
.module-section,
.project-detail,
.video-placeholder,
.work-next {
  border-top: 1px solid var(--line);
}

.idea-section {
  padding-block: clamp(90px, 10vw, 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1.55fr);
  gap: 40px;
  margin-bottom: clamp(70px, 9vw, 120px);
}

.section-heading h2,
.module-heading h2,
.detail-copy h2,
.video-placeholder h2,
.future-section h2 {
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 6.8rem);
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.section-heading > div > p,
.module-heading > p:last-child,
.detail-copy > p,
.future-section > p + h2 + p {
  max-width: 42rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.idea-explorer {
  border-top: 1px solid var(--line);
}

.idea-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.idea-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 18px;
  min-width: 0;
  padding: 26px 24px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease;
}

.idea-tab:first-child {
  border-left: 1px solid var(--line);
}

.idea-tab > span {
  grid-row: 1 / 3;
  padding-top: 3px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.idea-tab strong {
  overflow: hidden;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 680;
  letter-spacing: -0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.idea-tab small {
  color: var(--muted);
  font-size: 0.72rem;
}

.idea-tab:hover,
.idea-tab.is-active {
  color: #fff;
  background: var(--blue);
}

.idea-tab:hover > span,
.idea-tab:hover small,
.idea-tab.is-active > span,
.idea-tab.is-active small {
  color: rgba(255, 255, 255, 0.72);
}

.idea-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  min-height: 610px;
  border: 1px solid var(--line);
  border-top: 0;
}

.idea-visual {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border-right: 1px solid var(--line);
  background: #e2e3df;
  isolation: isolate;
}

.visual-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 520ms var(--ease), transform 720ms var(--ease);
}

.idea-panel[data-mode="architecture"] .visual-architecture,
.idea-panel[data-mode="art"] .visual-art,
.idea-panel[data-mode="intelligence"] .visual-intelligence {
  opacity: 1;
  transform: scale(1);
}

.visual-architecture {
  transform: scale(1.04);
  background-color: #ebece8;
  background-image:
    linear-gradient(rgba(23, 105, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 255, 0.11) 1px, transparent 1px);
  background-size: 32px 32px;
}

.plan-room,
.plan-axis,
.plan-dot {
  position: absolute;
  display: block;
}

.plan-room {
  border: 5px solid var(--blue);
}

.plan-room::before,
.plan-room::after {
  position: absolute;
  background: var(--blue);
  content: "";
}

.plan-room-one {
  inset: 18% 27% 26% 17%;
}

.plan-room-one::before {
  top: 41%;
  right: -5px;
  width: 42%;
  height: 5px;
}

.plan-room-one::after {
  top: 41%;
  right: 39%;
  width: 5px;
  height: 59%;
}

.plan-room-two {
  top: 29%;
  right: 13%;
  width: 22%;
  height: 32%;
  border-width: 2px;
  opacity: 0.46;
}

.plan-axis {
  background: rgba(18, 18, 18, 0.72);
}

.plan-axis-x {
  right: 8%;
  bottom: 17%;
  left: 8%;
  height: 1px;
}

.plan-axis-y {
  top: 8%;
  bottom: 8%;
  left: 10%;
  width: 1px;
}

.plan-dot {
  top: 14%;
  right: 14%;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 12px rgba(215, 255, 63, 0.23);
}

.visual-art {
  overflow: hidden;
  transform: scale(1.08);
  background:
    radial-gradient(circle at 27% 23%, #d7ff3f 0 9%, transparent 9.5%),
    radial-gradient(circle at 69% 60%, #1769ff 0 23%, transparent 23.5%),
    linear-gradient(145deg, #f36dff 0%, #ffb649 44%, #f3f1ec 100%);
}

.art-orbit,
.art-disc {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.art-orbit {
  border: 2px solid rgba(18, 18, 18, 0.86);
}

.art-orbit-one {
  top: 14%;
  left: 17%;
  width: 66%;
  aspect-ratio: 1;
}

.art-orbit-two {
  top: 33%;
  left: 2%;
  width: 88%;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.46;
}

.art-disc {
  top: 42%;
  left: 38%;
  width: 24%;
  aspect-ratio: 1;
  background: var(--ink);
  box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.22);
}

.visual-intelligence {
  transform: scale(1.04);
  background: #eaf3ff;
}

.visual-intelligence img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intelligence-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42%;
  width: 1px;
  background: rgba(215, 255, 63, 0.95);
  box-shadow: 0 0 24px rgba(215, 255, 63, 0.8);
  animation: scan 5s ease-in-out infinite alternate;
}

.visual-mode-label {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid rgba(18, 18, 18, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  backdrop-filter: blur(16px);
}

.idea-definition {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(38px, 5vw, 70px);
}

.idea-definition h3 {
  max-width: 12ch;
  margin: 20px 0 0;
  font-size: clamp(2.35rem, 4vw, 4.5rem);
  font-weight: 610;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.panel-description {
  max-width: 31rem;
  margin: 26px 0 auto;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.letter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.letter-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.letter-grid b {
  color: var(--blue);
  font-size: 1.28rem;
}

.letter-grid span {
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-section {
  padding-block: clamp(90px, 10vw, 150px);
}

.section-heading.compact {
  margin-bottom: 64px;
}

.work-teaser,
.project-stage {
  display: block;
}

.media-stack {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: #dce8f5;
  box-shadow: var(--shadow);
}

.media-primary,
.media-primary img,
.media-secondary {
  width: 100%;
  height: 100%;
}

.media-primary img,
.media-secondary {
  object-fit: cover;
  transition: opacity 620ms var(--ease), transform 900ms var(--ease);
}

.media-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
}

.preview-prompt,
.stage-launch {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.preview-prompt {
  top: 22px;
  right: 22px;
  padding: 10px 13px;
  color: rgba(18, 18, 18, 0.7);
  font-size: 0.65rem;
  font-weight: 680;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.work-teaser:hover .media-primary img,
.project-stage:hover .media-primary img {
  opacity: 0;
  transform: scale(0.985);
}

.work-teaser:hover .media-secondary,
.project-stage:hover .media-secondary {
  opacity: 1;
  transform: scale(1);
}

.teaser-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 4px 0;
}

.teaser-meta p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.75rem;
}

.teaser-meta h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2.3rem);
  font-weight: 620;
  letter-spacing: -0.045em;
}

.round-arrow {
  display: grid;
  width: 50px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: color 220ms ease, background-color 220ms ease, transform 260ms var(--ease);
}

.work-teaser:hover .round-arrow {
  color: #fff;
  background: var(--blue);
  transform: rotate(8deg);
}

.future-section {
  padding-block: clamp(90px, 10vw, 145px);
}

.future-section h2 {
  max-width: 12ch;
  margin-top: 34px;
}

.future-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 54px;
}

.future-list span {
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 620;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 30px;
  min-height: 220px;
  padding-block: 70px 36px;
  border-top: 1px solid var(--line);
}

.footer-wordmark {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.site-footer p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

/* Work */

.work-hero {
  padding-block: 130px clamp(100px, 11vw, 160px);
}

.work-overline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.work-overline p {
  margin: 0;
}

.work-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 56px;
  padding-block: clamp(64px, 8vw, 110px);
}

.work-title-row h1 {
  margin: 0;
  font-size: clamp(4rem, 8.4vw, 9.2rem);
}

.work-intro {
  padding-bottom: 8px;
}

.work-intro p {
  margin: 0;
}

.work-cn-title {
  margin-bottom: 18px !important;
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.work-cn-title + p {
  color: var(--muted);
  line-height: 1.7;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  margin-top: 30px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 680;
  transition: background-color 220ms ease, transform 260ms var(--ease);
}

.primary-button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

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

.primary-button.dark:hover {
  background: #333;
}

.project-stage .media-stack {
  aspect-ratio: 16 / 9;
}

.stage-launch {
  right: 24px;
  bottom: 24px;
  gap: 18px;
  padding: 13px 17px;
  font-size: 0.72rem;
  font-weight: 720;
}

.stage-launch b {
  font-size: 1rem;
}

.module-section {
  padding-block: clamp(100px, 11vw, 160px);
}

.module-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr 0.6fr;
  align-items: start;
  gap: 36px;
  margin-bottom: 86px;
}

.module-heading h2 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.module-heading h2 span {
  display: block;
}

.module-heading > p:last-child {
  margin: 4px 0 0;
}

.module-list {
  border-top: 1px solid var(--line);
}

.module-list article {
  display: grid;
  grid-template-columns: 0.18fr 0.82fr 1fr;
  align-items: center;
  gap: 28px;
  min-height: 160px;
  border-bottom: 1px solid var(--line);
}

.module-list article > span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 720;
}

.module-list article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.module-list article div p {
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.module-list h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 610;
  letter-spacing: -0.055em;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
  padding-block: clamp(100px, 11vw, 160px);
}

.detail-copy h2 {
  margin-top: 30px;
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.project-detail > img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 70px;
}

.video-placeholder h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.video-placeholder button {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: min(100%, 360px);
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: transparent;
  text-align: left;
}

.video-placeholder button span {
  padding: 7px 9px;
  border-radius: 7px;
  color: #fff;
  background: #f05a8a;
  font-size: 0.62rem;
  font-weight: 740;
}

.video-placeholder button strong {
  font-size: 0.78rem;
  font-weight: 600;
}

.work-next {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 40px;
  padding-block: 76px 120px;
}

.work-next > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
}

.work-next span {
  font-size: clamp(1.25rem, 2.8vw, 2.4rem);
  font-weight: 570;
  letter-spacing: -0.045em;
}

.work-next span + span::before {
  margin-right: 26px;
  color: var(--blue);
  content: "·";
}

/* 404 */

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
}

.error-card {
  width: min(100%, 760px);
  padding: clamp(36px, 7vw, 80px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.error-card > p {
  margin: 80px 0 18px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.error-card h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

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

@keyframes breathe {
  0%, 100% { transform: scale(0.86); opacity: 0.14; }
  50% { transform: scale(1.18); opacity: 0.25; }
}

@keyframes scan {
  from { transform: translateX(-160px); }
  to { transform: translateX(150px); }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.78fr;
    gap: 42px;
  }

  .hero-mark-caption {
    display: none;
  }

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

  .idea-visual {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .idea-definition {
    min-height: 500px;
  }

  .module-heading {
    grid-template-columns: 0.4fr 1.6fr;
  }

  .module-heading > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 800px) {
  .shell,
  .header-inner {
    width: min(100% - 40px, 1320px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 150px;
  }

  .hero-copy {
    min-height: 55svh;
  }

  .hero-mark {
    width: min(100%, 620px);
    margin-left: auto;
  }

  .section-heading,
  .section-heading.compact,
  .work-title-row,
  .project-detail,
  .work-next {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .idea-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    scrollbar-width: thin;
  }

  .work-title-row {
    align-items: start;
  }

  .work-intro {
    max-width: 30rem;
  }

  .module-heading {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .module-heading > p:last-child {
    grid-column: auto;
  }

  .module-list article {
    grid-template-columns: 60px 1fr;
    padding-block: 28px;
  }

  .module-list article > p {
    grid-column: 2;
  }

  .project-detail > img {
    grid-row: 1;
  }

  .video-placeholder {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-next {
    gap: 28px;
  }

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

  .footer-wordmark {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-md: 18px;
    --radius-lg: 25px;
  }

  .site-header {
    height: 66px;
  }

  .site-header.is-scrolled {
    height: 58px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero {
    gap: 34px;
    padding-block: 120px 70px;
  }

  .hero-copy {
    min-height: 54svh;
  }

  .hero h1,
  .work-title-row h1 {
    font-size: clamp(3.7rem, 17vw, 5.3rem);
    line-height: 0.88;
  }

  .hero-intro {
    max-width: 29rem;
  }

  .hero-mark {
    border-radius: 25px;
  }

  .hero-letter {
    font-size: 23vw;
  }

  .section-heading h2,
  .future-section h2 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .idea-tabs {
    margin-right: -20px;
  }

  .idea-tab {
    padding: 22px 18px;
  }

  .idea-panel,
  .idea-visual {
    min-height: 390px;
  }

  .idea-definition {
    min-height: 520px;
    padding: 32px 24px;
  }

  .idea-definition h3 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

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

  .media-stack,
  .project-stage .media-stack {
    aspect-ratio: 4 / 5;
  }

  .media-stack picture img,
  .media-stack > img {
    object-position: center;
  }

  .media-secondary,
  .preview-prompt {
    display: none;
  }

  .teaser-meta {
    align-items: center;
  }

  .round-arrow {
    width: 44px;
  }

  .work-overline {
    padding-bottom: 16px;
  }

  .work-title-row {
    gap: 44px;
    padding-block: 54px 64px;
  }

  .work-hero {
    padding-top: 108px;
  }

  .stage-launch {
    right: 14px;
    bottom: 14px;
  }

  .module-list article {
    grid-template-columns: 40px 1fr;
    gap: 18px;
  }

  .project-detail {
    gap: 48px;
  }

  .video-placeholder button {
    width: 100%;
    min-width: 0;
  }

  .work-next span {
    display: block;
    width: 100%;
  }

  .work-next span + span::before {
    margin-right: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-wordmark {
    grid-column: auto;
    margin-bottom: 30px;
  }
}

@media (hover: none) {
  .preview-prompt {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Parametric public entry */

.minimal-home,
.login-page {
  color: #050505;
  background: #fff;
  font-family: "Avenir Next", "Helvetica Neue", "PingFang SC", sans-serif;
}

.minimal-home {
  --field-x: 0.14;
  --field-y: 0.52;
  --field-energy: 0;
  --brand-x: -2px;
  --brand-y: 0px;
  --letter-d-y: 0px;
  --letter-e-y: 0px;
  --letter-a-y: 0px;
  --lab-x: -2px;
  --i-shift: 0px;
  --cursor-x: 32vw;
  --cursor-y: 52vh;
  --cursor-scale: 1;
  --cursor-rotation: 0deg;
  --cursor-direction: 0deg;
  --cursor-tail-length: 22px;
  --cursor-trail-opacity: 0.18;
  --cursor-ring-scale: 1;
  --atlas-shift-x: 0px;
  --atlas-shift-y: 0px;
  --atlas-scale: 1;
  min-height: 100svh;
  overflow-x: clip;
  overflow-y: auto;
}

.home-page {
  min-height: 100svh;
}

.home-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  min-height: 100svh;
  padding:
    max(32px, env(safe-area-inset-top))
    clamp(26px, 5.2vw, 80px)
    max(32px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 53% 49%, rgba(23, 105, 255, 0.055), transparent 29%),
    radial-gradient(circle at 18% 19%, rgba(97, 151, 221, 0.045), transparent 25%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.64), transparent 34% 72%, rgba(223, 235, 248, 0.22)),
    #fbfbfa;
}

.home-stage::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 48% 42% at 25% 52%, rgba(251, 251, 250, 0.96) 0 31%, rgba(251, 251, 250, 0.7) 52%, transparent 100%);
  content: "";
  pointer-events: none;
}

.home-stage::after {
  position: absolute;
  inset: clamp(14px, 1.6vw, 24px);
  z-index: 1;
  border: 1px solid rgba(5, 5, 5, 0.1);
  content: "";
  pointer-events: none;
}

.idea-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #fbfbfa;
  opacity: 0.92;
  pointer-events: none;
}

.idea-atlas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  opacity: 0.78;
  filter: contrast(1.12) saturate(0.92);
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: translate3d(var(--atlas-shift-x), var(--atlas-shift-y), 0) scale(var(--atlas-scale));
  transform-origin: center;
  transition: transform 900ms var(--ease), opacity 500ms ease;
  will-change: transform;
}

.idea-atlas-mobile {
  display: none;
}

.parametric-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0);
  transition: opacity 180ms ease;
  will-change: transform;
}

.has-parametric-cursor .parametric-cursor {
  display: block;
  opacity: 1;
}

.parametric-cursor-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #0657ff;
  border-radius: 50%;
  opacity: var(--cursor-ring-opacity, 0.46);
  transform: translate(-50%, -50%) rotate(var(--cursor-angle, -45deg)) scale(var(--cursor-speed-scale, 1));
  transition: width 220ms var(--ease), height 220ms var(--ease), opacity 180ms ease, background-color 180ms ease, transform 120ms ease;
  will-change: width, height, opacity, transform;
}

.parametric-cursor-mark {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 4px 8px rgba(15, 32, 68, 0.2));
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: width 220ms var(--ease), height 220ms var(--ease), transform 160ms var(--ease);
}

.parametric-cursor-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

.parametric-cursor.is-interactive .parametric-cursor-ring {
  width: 44px;
  height: 44px;
  background: rgba(6, 87, 255, 0.06);
  opacity: 1;
}

.parametric-cursor.is-interactive .parametric-cursor-mark {
  width: 29px;
  height: 29px;
}

.parametric-cursor.is-pressed .parametric-cursor-ring {
  transform: translate(-50%, -50%) rotate(var(--cursor-angle, -45deg)) scale(0.82);
}

.parametric-cursor.is-pressed .parametric-cursor-mark {
  transform: translate(-50%, -50%) scale(0.82);
}

@media (hover: hover) and (pointer: fine) {
  body.has-parametric-cursor,
  body.has-parametric-cursor * {
    cursor: none !important;
  }

  body.has-parametric-cursor.cursor-over-text input,
  body.has-parametric-cursor.cursor-over-text textarea,
  body.has-parametric-cursor.cursor-over-text [contenteditable="true"] {
    cursor: text !important;
  }

  body.has-parametric-cursor.cursor-over-text .parametric-cursor {
    opacity: 0;
  }
}

.home-frame {
  position: absolute;
  top: clamp(25px, 2.5vw, 38px);
  right: clamp(32px, 3.2vw, 50px);
  left: clamp(32px, 3.2vw, 50px);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: rgba(5, 5, 5, 0.47);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1;
  pointer-events: none;
}

.home-parameters {
  position: absolute;
  top: 50%;
  right: clamp(34px, 3.4vw, 54px);
  z-index: 3;
  display: grid;
  gap: 17px;
  width: 6.8rem;
  color: rgba(5, 5, 5, 0.34);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  pointer-events: none;
  transform: translateY(-50%);
}

.home-parameters span {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transition: color 420ms ease, transform 520ms var(--ease);
}

.home-parameters span::before {
  width: 8px;
  height: 1px;
  justify-self: end;
  background: currentColor;
  content: "";
  transition: width 520ms var(--ease), background-color 420ms ease;
}

.home-parameters span.is-active {
  color: #0657ff;
  transform: translateX(-7px);
}

.home-parameters span.is-active::before {
  width: 20px;
}

.home-core {
  position: relative;
  z-index: 4;
  align-self: center;
  width: min(83vw, 1420px);
  padding-block: clamp(88px, 14vh, 156px) 54px;
  animation: home-arrive 980ms var(--ease) both;
}

.home-brand {
  display: flex;
  align-items: baseline;
  width: max-content;
  margin: 0;
  color: #050505;
  font-size: clamp(5rem, 11.8vw, 11.5rem);
  font-weight: 630;
  line-height: 0.7;
  white-space: nowrap;
  transform: translate3d(var(--brand-x), var(--brand-y), 0);
  transition: transform 900ms var(--ease);
}

.home-brand > span {
  display: inline-block;
}

.home-brand-i {
  position: relative;
  z-index: 2;
  margin-right: 0.055em;
  color: #0657ff;
  font-size: 1em;
  font-weight: 430;
  letter-spacing: -0.085em;
  transform: translate3d(0, var(--i-shift), 0);
}

.home-brand-letter {
  margin-left: -0.085em;
  letter-spacing: -0.015em;
  transition: transform 700ms var(--ease);
}

.home-brand-letter:nth-child(2) {
  transform: translateY(var(--letter-d-y));
}

.home-brand-letter:nth-child(3) {
  transform: translateY(var(--letter-e-y));
}

.home-brand-letter:nth-child(4) {
  transform: translateY(var(--letter-a-y));
}

.home-brand-lab {
  margin-left: -0.075em;
  color: #0657ff;
  font-weight: 430;
  letter-spacing: -0.085em;
  transform: translateX(var(--lab-x));
  transition: transform 720ms var(--ease);
}

.home-statement {
  width: max-content;
  max-width: min(100%, 32em);
  margin: clamp(38px, 5.2vw, 66px) 0 0 clamp(2px, 0.5vw, 8px);
  padding: 7px 11px 7px 0;
  color: #151515;
  background: rgba(251, 251, 250, 0.78);
  box-shadow: 0 0 28px 18px rgba(251, 251, 250, 0.72);
  font-size: clamp(1rem, 1.55vw, 1.38rem);
  font-weight: 480;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.home-actions {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: clamp(30px, 4vw, 58px);
  animation: home-arrive 980ms 170ms var(--ease) both;
}

.home-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 112px;
  padding: 12px 0 10px;
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: color 220ms ease, gap 320ms var(--ease), min-width 320ms var(--ease);
}

.home-actions a::before {
  position: absolute;
  inset: -10px -8px;
  content: "";
}

.home-actions a:hover {
  min-width: 124px;
  gap: 30px;
  color: #0657ff;
}

.home-action-primary {
  color: #0657ff;
}

/* Live field */

.home-live {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  color: #f6f7fb;
  background:
    radial-gradient(circle at 16% 28%, rgba(6, 87, 255, 0.25), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #050505;
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.home-live::before {
  position: absolute;
  top: -24vw;
  left: -15vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(63, 124, 255, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(6, 87, 255, 0.025),
    0 0 0 18vw rgba(6, 87, 255, 0.018);
  content: "";
  pointer-events: none;
}

.home-live-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 1600px);
  min-height: 100svh;
  margin: 0 auto;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.home-live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 clamp(28px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(246, 247, 251, 0.56);
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-live-header p {
  margin: 0;
}

.home-live-state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2e72ff;
  box-shadow: 0 0 0 5px rgba(46, 114, 255, 0.12), 0 0 22px rgba(46, 114, 255, 0.85);
  animation: live-field-pulse 2.4s ease-in-out infinite;
}

.home-live[data-live-state="ready"] .home-live-dot {
  background: #64ffb0;
  box-shadow: 0 0 0 5px rgba(100, 255, 176, 0.1), 0 0 22px rgba(100, 255, 176, 0.72);
}

.home-live[data-live-state="idle"] .home-live-dot {
  background: #8390a8;
  box-shadow: 0 0 0 5px rgba(131, 144, 168, 0.1);
  animation: none;
}

.home-live-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: 0;
}

.home-live-primary {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(54px, 7vw, 112px) clamp(28px, 4.5vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.home-live-primary > strong {
  display: block;
  color: #f8f9ff;
  font-size: clamp(8.5rem, 18vw, 18rem);
  font-weight: 280;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.11em;
  line-height: 0.72;
  text-shadow: 0 0 80px rgba(6, 87, 255, 0.22);
}

.home-live-primary > span {
  margin-top: clamp(30px, 4.2vw, 58px);
  color: #5e91ff;
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.home-live-primary h2 {
  max-width: 11ch;
  margin: clamp(54px, 7vw, 94px) 0 0;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  font-weight: 430;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.home-live-primary p {
  max-width: 30em;
  margin: 24px 0 0;
  color: rgba(246, 247, 251, 0.52);
  font-size: 0.78rem;
  line-height: 1.75;
}

.home-live-figure {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: clamp(40px, 5vw, 80px) clamp(28px, 3.8vw, 60px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.home-live-figure svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.home-live-baseline,
.home-live-sparkline {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.home-live-baseline {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.home-live-sparkline {
  filter: drop-shadow(0 0 13px rgba(42, 111, 255, 0.7));
  stroke: #2e72ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  transition: d 700ms var(--ease);
}

.home-live-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  color: rgba(246, 247, 251, 0.42);
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: 0.55rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.home-live-metrics {
  grid-column: span 3;
  display: grid;
  align-content: center;
  min-width: 0;
  margin: 0;
  padding: clamp(40px, 5vw, 80px) clamp(28px, 3.5vw, 56px);
}

.home-live-metrics div {
  padding: clamp(30px, 4vw, 54px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-live-metrics div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.home-live-metrics dt {
  color: rgba(246, 247, 251, 0.46);
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.home-live-metrics dd {
  overflow: hidden;
  margin: 18px 0 0;
  color: #f8f9ff;
  font-size: clamp(2.6rem, 4.8vw, 5.6rem);
  font-weight: 320;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-overflow: ellipsis;
}

.home-feedback {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  min-height: 132px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.home-feedback > div {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 90px);
  padding: 26px clamp(28px, 4.5vw, 72px);
}

.home-feedback > div > span {
  color: #5e91ff;
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.home-feedback p {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.8rem);
  font-weight: 420;
  letter-spacing: -0.055em;
}

.home-feedback a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  min-width: clamp(230px, 24vw, 360px);
  padding: 26px clamp(28px, 4vw, 58px);
  color: #050505;
  background: #f6f7fb;
  font-size: 0.78rem;
  font-weight: 680;
  transition: color 240ms ease, background-color 240ms ease, gap 420ms var(--ease);
}

.home-feedback a:hover {
  gap: 66px;
  color: #fff;
  background: #0657ff;
}

@keyframes live-field-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (max-width: 980px) {
  .home-live-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-live-primary {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-live-figure,
  .home-live-metrics {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .home-live-shell {
    border: 0;
  }

  .home-live-header {
    min-height: 72px;
    padding-inline: max(22px, env(safe-area-inset-left));
    font-size: 0.54rem;
  }

  .home-live-state {
    max-width: 54%;
    justify-content: flex-end;
    text-align: right;
  }

  .home-live-grid {
    display: block;
  }

  .home-live-primary,
  .home-live-figure,
  .home-live-metrics {
    padding-right: max(22px, env(safe-area-inset-right));
    padding-left: max(22px, env(safe-area-inset-left));
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-live-primary {
    min-height: 74svh;
    padding-block: 70px;
  }

  .home-live-primary > strong {
    font-size: clamp(8rem, 43vw, 12rem);
  }

  .home-live-primary h2 {
    margin-top: 66px;
  }

  .home-live-figure {
    padding-block: 58px;
  }

  .home-live-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 20px;
  }

  .home-live-metrics div {
    padding: 32px 18px 34px 0;
    border-bottom: 0;
  }

  .home-live-metrics div:last-child {
    padding-right: 0;
    padding-left: 22px;
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-live-metrics dd {
    font-size: clamp(2.5rem, 14vw, 4.2rem);
  }

  .home-feedback {
    display: block;
  }

  .home-feedback > div {
    display: block;
    padding: 40px max(22px, env(safe-area-inset-left));
  }

  .home-feedback p {
    margin-top: 22px;
  }

  .home-feedback a {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    padding-right: max(22px, env(safe-area-inset-right));
    padding-left: max(22px, env(safe-area-inset-left));
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-live-dot {
    animation: none;
  }
}

/* Feedback channel */

.feedback-page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow-x: clip;
  color: #f6f7fb;
  background:
    radial-gradient(circle at 78% 20%, rgba(6, 87, 255, 0.22), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #050505;
  background-size: auto, 72px 72px, 72px 72px, auto;
  font-family: "Avenir Next", "Helvetica Neue", "PingFang SC", sans-serif;
}

.feedback-header,
.feedback-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-right: clamp(26px, 5vw, 80px);
  padding-left: clamp(26px, 5vw, 80px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.feedback-header {
  min-height: 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.feedback-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.075em;
}

.feedback-wordmark span:first-child,
.feedback-wordmark span:last-child {
  color: #2e72ff;
  font-weight: 450;
}

.feedback-wordmark span:first-child {
  margin-right: 0.05em;
}

.feedback-back {
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 650;
  transition: color 200ms ease, border-color 200ms ease;
}

.feedback-back:hover {
  color: #5e91ff;
  border-color: #5e91ff;
}

.feedback-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  width: min(100%, 1600px);
  min-height: 0;
  margin: 0 auto;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.feedback-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 132px) clamp(26px, 5vw, 80px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.feedback-index {
  display: flex;
  justify-content: space-between;
  max-width: 480px;
  color: rgba(246, 247, 251, 0.46);
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.feedback-intro h1 {
  max-width: 11ch;
  margin: clamp(54px, 7vw, 110px) 0 0;
  font-size: clamp(4.2rem, 6.2vw, 7rem);
  font-weight: 360;
  letter-spacing: -0.085em;
  line-height: 0.88;
  white-space: nowrap;
}

.feedback-intro > p {
  max-width: 30em;
  margin: clamp(42px, 5vw, 72px) 0 0;
  color: rgba(246, 247, 251, 0.58);
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  line-height: 1.8;
}

.feedback-console {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  overflow: hidden;
  padding: clamp(60px, 7vw, 108px) clamp(26px, 4vw, 64px);
}

.feedback-console::before {
  position: absolute;
  top: 12%;
  left: 50%;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(46, 114, 255, 0.46);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(46, 114, 255, 0.035),
    0 0 0 94px rgba(46, 114, 255, 0.02),
    inset 0 0 80px rgba(46, 114, 255, 0.1);
  content: "";
  transform: translateX(-50%);
}

.feedback-console-signal {
  position: absolute;
  top: 20%;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 130px;
}

.feedback-console-signal span {
  width: 1px;
  height: 34%;
  background: #2e72ff;
  box-shadow: 0 0 14px rgba(46, 114, 255, 0.8);
  animation: feedback-signal 2.4s var(--ease) infinite alternate;
}

.feedback-console-signal span:nth-child(2) { height: 72%; animation-delay: -0.8s; }
.feedback-console-signal span:nth-child(3) { height: 100%; animation-delay: -1.6s; }
.feedback-console-signal span:nth-child(4) { height: 58%; animation-delay: -0.4s; }
.feedback-console-signal span:nth-child(5) { height: 24%; animation-delay: -1.2s; }

.feedback-console-copy,
.feedback-console > a {
  position: relative;
  z-index: 1;
}

.feedback-console-copy > p:first-child {
  margin: 0;
  color: #5e91ff;
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.15em;
}

.feedback-console-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 410;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.feedback-console-copy > p:last-child {
  max-width: 28em;
  margin: 24px 0 0;
  color: rgba(246, 247, 251, 0.5);
  font-size: 0.78rem;
  line-height: 1.75;
}

.feedback-console > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  margin-top: clamp(42px, 5vw, 72px);
  padding: 0 24px;
  color: #050505;
  background: #f6f7fb;
  font-size: 0.78rem;
  font-weight: 680;
  transition: color 220ms ease, background-color 220ms ease, padding 360ms var(--ease);
}

.feedback-console > a:hover {
  padding-right: 30px;
  color: #fff;
  background: #0657ff;
}

.feedback-footer {
  min-height: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(246, 247, 251, 0.34);
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: 0.52rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

@keyframes feedback-signal {
  to { opacity: 0.28; transform: scaleY(0.35); }
}

@media (max-width: 820px) {
  .feedback-main {
    grid-template-columns: 1fr;
  }

  .feedback-intro {
    min-height: 70svh;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .feedback-console {
    min-height: 72svh;
  }

  .feedback-console::before {
    width: min(72vw, 520px);
  }
}

@media (max-width: 620px) {
  .feedback-header,
  .feedback-footer,
  .feedback-main {
    border-right: 0;
    border-left: 0;
  }

  .feedback-header {
    min-height: 72px;
    padding-right: max(22px, env(safe-area-inset-right));
    padding-left: max(22px, env(safe-area-inset-left));
  }

  .feedback-intro,
  .feedback-console {
    padding-right: max(22px, env(safe-area-inset-right));
    padding-left: max(22px, env(safe-area-inset-left));
  }

  .feedback-intro {
    min-height: 72svh;
    padding-block: 72px;
  }

  .feedback-index span:last-child,
  .feedback-footer span:last-child {
    display: none;
  }

  .feedback-intro h1 {
    margin-top: 58px;
    font-size: clamp(4rem, 20vw, 5.6rem);
    white-space: normal;
  }

  .feedback-console {
    min-height: 78svh;
    padding-block: 68px;
  }

  .feedback-footer {
    min-height: 52px;
    padding-right: max(22px, env(safe-area-inset-right));
    padding-left: max(22px, env(safe-area-inset-left));
  }
}

@media (prefers-reduced-motion: reduce) {
  .feedback-console-signal span {
    animation: none;
  }
}

/* Protected entry */

.login-page {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100svh;
}

.login-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 86px;
  padding:
    max(24px, env(safe-area-inset-top))
    clamp(24px, 5vw, 76px)
    16px;
}

.login-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: #050505;
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: -0.075em;
}

.login-wordmark-i {
  margin-right: 0.08em;
  color: #0657ff;
  font-size: 0.48em;
  font-weight: 760;
  letter-spacing: 0;
  transform: translateY(-0.06em);
}

.login-wordmark span:last-child {
  font-weight: 450;
}

.login-back {
  padding-block: 8px;
  border-bottom: 1px solid #050505;
  font-size: 0.78rem;
  font-weight: 620;
  transition: color 180ms ease, border-color 180ms ease;
}

.login-back:hover {
  color: #0657ff;
  border-color: #0657ff;
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(350px, 0.65fr);
  align-items: end;
  gap: clamp(70px, 10vw, 180px);
  width: 100%;
  padding:
    clamp(70px, 11vh, 140px)
    clamp(24px, 5vw, 76px)
    max(48px, env(safe-area-inset-bottom));
}

.login-intro,
.login-panel {
  animation: home-arrive 780ms var(--ease) both;
}

.login-panel {
  animation-delay: 100ms;
}

.login-index {
  margin: 0 0 26px;
  color: #0657ff;
  font-size: 0.67rem;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.login-intro h1 {
  margin: 0;
  font-size: clamp(5rem, 11.5vw, 11rem);
  font-weight: 610;
  letter-spacing: -0.09em;
  line-height: 0.76;
}

.login-intro h1 span {
  color: #0657ff;
}

.login-panel {
  padding-top: 28px;
  border-top: 1px solid rgba(5, 5, 5, 0.82);
}

.login-panel-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 610;
  letter-spacing: -0.055em;
}

.login-panel-heading p {
  max-width: 28rem;
  margin: 15px 0 0;
  color: #656565;
  font-size: 0.82rem;
  line-height: 1.65;
}

.login-form {
  margin-top: 42px;
}

.login-field {
  position: relative;
  margin-top: 26px;
}

.login-field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: #2d2d2d;
  font-size: 0.72rem;
  font-weight: 650;
}

.login-field label span {
  color: #7a7a7a;
  font-size: 0.64rem;
  font-weight: 500;
}

.login-field input {
  width: 100%;
  min-height: 50px;
  padding: 8px 0 4px;
  border: 0;
  border-bottom: 1px solid #b9b9b9;
  border-radius: 0;
  outline: 0;
  color: #050505;
  background: transparent;
  font: 560 1.05rem/1.2 "Avenir Next", "Helvetica Neue", "PingFang SC", sans-serif;
  letter-spacing: 0.01em;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.login-field input:focus {
  border-color: #0657ff;
  box-shadow: 0 1px 0 #0657ff;
}

.login-field input:-webkit-autofill,
.login-field input:-webkit-autofill:hover,
.login-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #050505;
  box-shadow: 0 0 0 1000px #fff inset;
}

.login-status {
  min-height: 20px;
  margin: 22px 0 10px;
  color: #c32929;
  font-size: 0.74rem;
  line-height: 1.5;
}

.login-status[data-kind="success"] {
  color: #0657ff;
}

.login-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid #0657ff;
  border-radius: 0;
  color: #fff;
  background: #0657ff;
  font-size: 0.78rem;
  font-weight: 650;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, transform 240ms var(--ease);
}

.login-submit:hover {
  color: #0657ff;
  background: #fff;
}

.login-submit:active {
  transform: translateY(1px);
}

.login-submit:disabled {
  color: rgba(255, 255, 255, 0.76);
  background: #467ffa;
  cursor: progress;
}

@keyframes home-arrive {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .home-core {
    width: 88vw;
    padding-block: 104px 48px;
  }

  .home-brand {
    font-size: clamp(4.7rem, 20.5vw, 9.8rem);
  }

  .home-parameters {
    right: 32px;
  }

  .home-frame span:last-child {
    display: none;
  }

  .login-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 86px;
    padding-top: 72px;
  }

  .login-intro h1 {
    font-size: clamp(5rem, 23vw, 9rem);
  }

  .login-panel {
    width: min(100%, 560px);
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  .home-stage {
    grid-template-rows: 1fr auto;
    padding-inline: 28px;
    padding-bottom: max(27px, env(safe-area-inset-bottom));
  }

  .home-stage::after {
    inset: 11px;
  }

  .home-frame {
    top: 23px;
    right: 28px;
    left: 28px;
  }

  .home-core {
    align-self: center;
    width: 100%;
    padding-block: 114px 84px;
  }

  .home-brand {
    font-size: clamp(4.15rem, 20.8vw, 6.4rem);
  }

  .home-brand-i {
    margin-right: 0.055em;
  }

  .home-statement {
    width: auto;
    max-width: 18em;
    margin-top: 35px;
    padding-right: 5px;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .home-parameters {
    top: auto;
    right: 28px;
    bottom: 108px;
    left: 28px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: auto;
    font-size: 0.51rem;
    transform: none;
  }

  .home-parameters span {
    display: block;
    overflow: hidden;
    padding-top: 8px;
    border-top: 1px solid rgba(5, 5, 5, 0.18);
    text-overflow: ellipsis;
    transition: color 420ms ease, border-color 420ms ease;
  }

  .home-parameters span::before {
    display: none;
  }

  .home-parameters span.is-active {
    border-color: #0657ff;
    transform: none;
  }

  .home-actions {
    width: 100%;
    gap: 24px;
  }

  .home-actions a {
    min-width: 0;
    width: min(50%, 150px);
  }

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

  .login-layout {
    gap: 46px;
    padding-top: 38px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .login-index {
    margin-bottom: 14px;
  }

  .login-intro h1 {
    font-size: clamp(4.2rem, 20vw, 6.3rem);
  }

  .login-panel {
    padding-top: 22px;
  }

  .login-panel-heading p {
    margin-top: 10px;
  }

  .login-form {
    margin-top: 26px;
  }

  .login-field {
    margin-top: 18px;
  }

  .login-field input {
    min-height: 44px;
  }

  .login-status {
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-core,
  .home-actions {
    animation: none;
  }

  .home-brand,
  .home-brand-i,
  .home-brand-letter,
  .home-brand-lab,
  .home-parameters span {
    transform: none;
    transition: none;
  }

  .parametric-cursor {
    opacity: 1;
    transition: none;
  }

  .parametric-cursor-mark,
  .parametric-cursor-ring {
    will-change: auto;
  }
}

/* Focused project page */

.work-page {
  min-height: 100svh;
  color: #050505;
  background: #fff;
  font-family: "Avenir Next", "Helvetica Neue", "PingFang SC", sans-serif;
}

.work-page::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(6, 87, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 87, 255, 0.035) 1px, transparent 1px);
  background-size: clamp(48px, 5vw, 80px) clamp(48px, 5vw, 80px);
  content: "";
  mask-image: linear-gradient(110deg, #000, transparent 62%);
  pointer-events: none;
}

.work-page .site-header {
  background: rgba(255, 255, 255, 0.78);
}

.work-page .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

.wordmark-i,
.login-wordmark-i {
  margin-right: 0;
  color: #0657ff;
  font-size: 1em;
  font-weight: 520;
  letter-spacing: -0.075em;
  transform: none;
}

.work-minimal {
  min-height: 100svh;
  padding-top: 76px;
}

.work-focus {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(56px, 8vw, 132px);
  min-height: calc(100svh - 76px);
  padding-block: clamp(60px, 8vh, 108px);
}

.work-focus-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.work-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 30rem;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.2);
  color: rgba(5, 5, 5, 0.54);
  font-size: 0.62rem;
  font-weight: 680;
  letter-spacing: 0.14em;
}

.work-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0657ff;
}

.work-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(6, 87, 255, 0.09);
}

.work-focus h1 {
  margin: clamp(36px, 6vh, 68px) 0 0;
  font-size: clamp(4.7rem, 8.4vw, 8.8rem);
  font-weight: 620;
  letter-spacing: -0.085em;
  line-height: 0.74;
}

.work-focus h1 span {
  display: block;
  margin: 0.24em 0 0 0.46em;
  color: #0657ff;
  font-size: 0.68em;
  font-weight: 470;
}

.work-summary {
  max-width: 27rem;
  margin: clamp(42px, 6vh, 68px) 0 0;
  color: #525252;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  letter-spacing: -0.025em;
  line-height: 1.72;
}

.work-launch {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  min-width: 210px;
  min-height: 54px;
  margin-top: 34px;
  padding: 0 18px;
  color: #fff;
  background: #0657ff;
  font-size: 0.78rem;
  font-weight: 660;
  transition: background-color 200ms ease, transform 280ms var(--ease);
}

.work-launch:hover {
  background: #003fc2;
  transform: translateY(-2px);
}

.work-launch span:last-child {
  font-size: 1rem;
  transition: transform 260ms var(--ease);
}

.work-launch:hover span:last-child {
  transform: translate(2px, -2px);
}

.work-film-placeholder {
  display: block;
  margin-top: 18px;
  padding: 0;
  border: 0;
  color: rgba(5, 5, 5, 0.42);
  background: transparent;
  font-size: 0.65rem;
  font-weight: 580;
  letter-spacing: 0.06em;
}

.work-requirement {
  margin: 18px 0 0;
  color: rgba(5, 5, 5, 0.42);
  font-size: 0.65rem;
  font-weight: 580;
  letter-spacing: 0.06em;
}

.work-preview {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  border: 1px solid rgba(5, 5, 5, 0.1);
  background: #e9eff8;
  box-shadow: 0 36px 110px rgba(15, 34, 72, 0.14);
}

.work-preview-primary,
.work-preview-primary img,
.work-preview-secondary {
  width: 100%;
  height: 100%;
}

.work-preview-primary img,
.work-preview-secondary {
  object-fit: cover;
  transition: opacity 680ms var(--ease), transform 900ms var(--ease);
}

.work-preview-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
}

.work-preview:hover .work-preview-primary img {
  opacity: 0;
  transform: scale(0.985);
}

.work-preview:hover .work-preview-secondary {
  opacity: 1;
  transform: scale(1);
}

.work-preview figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  color: rgba(5, 5, 5, 0.64);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.59rem;
  font-weight: 680;
  letter-spacing: 0.11em;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.work-preview figcaption span:last-child {
  color: #0657ff;
  letter-spacing: 0.03em;
}

.work-focus-neural {
  position: relative;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
}

.work-minimal > .work-focus:first-child {
  border-top: 0;
}

.work-minimal > .work-focus:first-child::before {
  display: none;
}

.work-focus-neural::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(70px, 8vw, 128px);
  height: 2px;
  background: #0657ff;
  content: "";
}

.work-focus-neural h1 {
  font-size: clamp(4.2rem, 7.8vw, 8.2rem);
}

.work-neural-preview {
  background: #030812;
  box-shadow: 0 36px 110px rgba(0, 37, 118, 0.22);
}

.neural-preview-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 29% 48%, rgba(27, 120, 255, 0.22), transparent 25%),
    radial-gradient(circle at 72% 47%, rgba(0, 235, 218, 0.16), transparent 24%),
    linear-gradient(135deg, #02050c, #061325 52%, #020611);
}

.neural-preview-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 174, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 174, 255, 0.09) 1px, transparent 1px);
  background-size: 8% 12%;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 76%);
  transform: perspective(700px) rotateX(58deg) scale(1.35) translateY(18%);
  transform-origin: center bottom;
}

.neural-preview-orbit,
.neural-preview-core,
.neural-preview-node,
.neural-preview-bridge {
  position: absolute;
  display: block;
}

.neural-preview-orbit {
  top: 25%;
  width: 38%;
  aspect-ratio: 1;
  border: 1px solid rgba(92, 190, 255, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 48px rgba(9, 115, 255, 0.16), 0 0 32px rgba(0, 161, 255, 0.18);
  animation: neural-orbit 7s linear infinite;
}

.neural-preview-orbit::before,
.neural-preview-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(88, 229, 255, 0.38);
  border-radius: inherit;
  content: "";
}

.neural-preview-orbit::after {
  inset: 28%;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.28);
}

.neural-preview-orbit-a {
  left: 10%;
}

.neural-preview-orbit-b {
  right: 9%;
  border-color: rgba(38, 255, 221, 0.28);
  animation-direction: reverse;
  animation-duration: 9s;
}

.neural-preview-core {
  top: 47%;
  width: 7%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #c9f5ff;
  box-shadow: 0 0 8px #fff, 0 0 24px #37b6ff, 0 0 68px rgba(28, 111, 255, 0.9);
  animation: neural-core 1.8s ease-in-out infinite alternate;
}

.neural-preview-core-a {
  left: 26%;
}

.neural-preview-core-b {
  right: 25%;
  background: #d9fff8;
  box-shadow: 0 0 8px #fff, 0 0 24px #20e4cc, 0 0 68px rgba(0, 201, 194, 0.78);
  animation-delay: -0.65s;
}

.neural-preview-bridge {
  top: 50%;
  left: 31%;
  width: 39%;
  height: 1px;
  background: linear-gradient(90deg, #4aaaff, #fff 48%, #20e4cc);
  box-shadow: 0 0 7px #66d8ff, 0 -6px 18px rgba(57, 166, 255, 0.45), 0 6px 18px rgba(32, 228, 204, 0.35);
  transform: rotate(-1deg);
  animation: neural-bridge 1.35s ease-in-out infinite alternate;
}

.neural-preview-node {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px #52b9ff;
  animation: neural-node 2.4s ease-in-out infinite alternate;
}

.node-01 { top: 30%; left: 18%; }
.node-02 { top: 65%; left: 21%; animation-delay: -0.5s; }
.node-03 { top: 39%; left: 38%; animation-delay: -1.1s; }
.node-04 { top: 60%; left: 42%; animation-delay: -1.6s; }
.node-05 { top: 32%; left: 52%; animation-delay: -0.8s; }
.node-06 { top: 69%; left: 57%; animation-delay: -1.35s; }
.node-07 { top: 37%; left: 79%; animation-delay: -0.25s; }
.node-08 { top: 62%; left: 84%; animation-delay: -1.8s; }
.node-09 { top: 21%; left: 68%; animation-delay: -1.15s; }
.node-10 { top: 76%; left: 32%; animation-delay: -0.7s; }

.neural-preview-readout {
  position: absolute;
  left: 20px;
  color: rgba(190, 231, 255, 0.68);
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: clamp(0.48rem, 0.65vw, 0.62rem);
  font-weight: 650;
  letter-spacing: 0.14em;
}

.neural-preview-readout-top {
  top: 20px;
}

.neural-preview-readout-bottom {
  bottom: 54px;
}

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

@keyframes neural-core {
  to { transform: scale(1.26); filter: brightness(1.35); }
}

@keyframes neural-bridge {
  to { opacity: 0.54; transform: rotate(1deg) scaleX(0.96); }
}

@keyframes neural-node {
  to { opacity: 0.35; transform: translate3d(8px, -5px, 0) scale(0.7); }
}

.work-focus-gesture-v2,
.work-focus-flightlab {
  position: relative;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
}

.work-focus-gesture-v2::before,
.work-focus-flightlab::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(70px, 8vw, 128px);
  height: 2px;
  content: "";
}

.work-focus-gesture-v2::before {
  background: #ff5148;
}

.work-focus-flightlab::before {
  background: #0657ff;
}

.work-focus-gesture-v2 h1 {
  font-size: clamp(4.15rem, 7.7vw, 8.15rem);
}

.work-focus-gesture-v2 h1 span {
  color: #ff5148;
}

.work-focus-gesture-v2 .work-launch {
  background: #ff5148;
}

.work-focus-gesture-v2 .work-launch:hover {
  background: #d92f28;
}

.work-gesture-v2-preview {
  background: #0c1220;
  box-shadow: 0 36px 110px rgba(14, 48, 105, 0.2);
}

.gesture-v2-preview-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #101827;
}

.gesture-v2-preview-field > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.015);
  transition: transform 900ms var(--ease), filter 680ms var(--ease);
}

.gesture-v2-material {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 12, 26, 0.2), rgba(5, 12, 26, 0.2)),
    url("./work/hand-landmarker/preview/sample-balloon.webp") center / cover;
  filter: contrast(1.3) saturate(0.68) hue-rotate(12deg);
  clip-path: inset(0 0 0 52%);
  transition: clip-path 760ms var(--ease), filter 680ms var(--ease);
}

.gesture-v2-material::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 247, 218, 0.86) 0 2px, transparent 2.5px) 0 0 / 10px 10px,
    radial-gradient(circle, rgba(27, 99, 255, 0.5) 0 1.4px, transparent 2px) 5px 5px / 10px 10px;
  content: "";
  mix-blend-mode: screen;
  opacity: 0.74;
}

.gesture-v2-split {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 1px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(6, 87, 255, 0.34), 0 0 26px rgba(6, 87, 255, 0.4);
  transition: left 760ms var(--ease);
}

.gesture-v2-split i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #0657ff;
  box-shadow: 0 0 0 4px rgba(6, 87, 255, 0.28);
  transform: translate(-50%, -50%);
}

.gesture-v2-split i::before,
.gesture-v2-split i::after {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 1px;
  background: #fff;
  content: "";
}

.gesture-v2-split i::before { left: 6px; }
.gesture-v2-split i::after { right: 6px; }

.gesture-v2-readout {
  position: absolute;
  left: 20px;
  padding: 6px 8px;
  color: #fff;
  background: rgba(7, 14, 27, 0.66);
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: clamp(0.48rem, 0.65vw, 0.62rem);
  font-weight: 650;
  letter-spacing: 0.13em;
  backdrop-filter: blur(10px);
}

.gesture-v2-readout-top { top: 20px; }
.gesture-v2-readout-bottom { bottom: 54px; }

.work-gesture-v2-preview:hover .gesture-v2-preview-field > img {
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.035);
}

.work-gesture-v2-preview:hover .gesture-v2-material {
  clip-path: inset(0 0 0 43%);
  filter: contrast(1.45) saturate(0.82) hue-rotate(-8deg);
}

.work-gesture-v2-preview:hover .gesture-v2-split {
  left: 43%;
}

@media (max-width: 900px) {
  .work-minimal {
    padding-top: 66px;
  }

  .work-focus {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: auto;
    padding-block: 70px 54px;
  }

  .work-focus-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.68fr);
    column-gap: 48px;
    align-items: end;
  }

  .work-kicker {
    grid-column: 1 / -1;
    max-width: none;
  }

  .work-focus h1 {
    grid-row: 2 / 5;
    font-size: clamp(5.4rem, 15vw, 9rem);
  }

  .work-summary {
    margin-top: 52px;
  }

  .work-launch {
    margin-top: 26px;
  }

  .work-film-placeholder {
    grid-column: 2;
  }

  .work-requirement {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .work-focus {
    gap: 42px;
    padding-top: 48px;
  }

  .work-focus-copy {
    display: block;
  }

  .work-focus h1 {
    max-width: 100%;
    font-size: clamp(4rem, 17.5vw, 5.6rem);
    white-space: nowrap;
  }

  .work-summary {
    margin-top: 44px;
  }

  .work-focus-neural h1 {
    font-size: clamp(3.55rem, 15.5vw, 5rem);
  }

  .work-launch {
    width: 100%;
  }

  .work-preview {
    aspect-ratio: 4 / 5;
  }

  .work-preview-secondary,
  .work-preview figcaption span:last-child {
    display: none;
  }

  .work-neural-preview figcaption span:last-child {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neural-preview-orbit,
  .neural-preview-core,
  .neural-preview-bridge,
  .neural-preview-node {
    animation: none;
  }
}

/* Public mobile refinement */

@media (pointer: coarse), (hover: none) {
  .parametric-cursor,
  .has-parametric-cursor .parametric-cursor {
    display: none !important;
  }

  .home-actions a,
  .site-nav a,
  .login-back,
  .login-submit,
  .work-launch {
    -webkit-tap-highlight-color: rgba(6, 87, 255, 0.12);
    touch-action: manipulation;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: calc(72px + env(safe-area-inset-top));
  }

  body {
    overflow-x: clip;
  }

  .shell {
    width: auto;
    margin-right: max(20px, env(safe-area-inset-right));
    margin-left: max(20px, env(safe-area-inset-left));
  }

  .site-header {
    height: calc(64px + env(safe-area-inset-top));
  }

  .site-header.is-scrolled {
    height: calc(58px + env(safe-area-inset-top));
  }

  .header-inner {
    width: auto;
    margin-right: max(20px, env(safe-area-inset-right));
    margin-left: max(20px, env(safe-area-inset-left));
    padding-top: env(safe-area-inset-top);
  }

  .wordmark {
    font-size: 1.18rem;
  }

  .site-nav {
    gap: 8px;
  }

  .nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 10px;
  }

  .minimal-home {
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .idea-atlas-desktop {
    display: none;
  }

  .idea-atlas-mobile {
    display: block;
    object-fit: cover;
    opacity: 0.92;
  }

  .home-stage {
    min-height: 100svh;
    padding-top: max(28px, env(safe-area-inset-top));
    padding-right: max(22px, env(safe-area-inset-right));
    padding-bottom: max(22px, env(safe-area-inset-bottom));
    padding-left: max(22px, env(safe-area-inset-left));
  }

  .home-stage::after {
    top: max(10px, env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
  }

  .home-frame {
    top: max(22px, calc(env(safe-area-inset-top) + 12px));
    right: max(22px, calc(env(safe-area-inset-right) + 12px));
    left: max(22px, calc(env(safe-area-inset-left) + 12px));
  }

  .home-core {
    width: 100%;
    padding-block: clamp(92px, 15svh, 126px) 76px;
  }

  .home-brand {
    max-width: 100%;
    font-size: clamp(4.15rem, 20vw, 5.4rem);
  }

  .home-statement {
    max-width: 20em;
    margin-top: 32px;
    padding-right: 0;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .home-parameters {
    right: max(22px, env(safe-area-inset-right));
    bottom: max(100px, calc(env(safe-area-inset-bottom) + 84px));
    left: max(22px, env(safe-area-inset-left));
    gap: 7px;
    font-size: 0.5rem;
    letter-spacing: 0.06em;
  }

  .home-parameters span {
    min-width: 0;
    padding-top: 7px;
    white-space: nowrap;
  }

  .home-actions {
    gap: 10px;
    width: 100%;
  }

  .home-actions a {
    width: auto;
    min-width: 0;
    min-height: 52px;
    flex: 1 1 0;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid rgba(5, 5, 5, 0.72);
    font-size: 0.8rem;
  }

  .home-actions a:hover {
    min-width: 0;
    gap: 12px;
  }

  .home-actions .home-action-primary {
    border-color: #0657ff;
    color: #fff;
    background: #0657ff;
  }

  .home-actions a:active,
  .work-launch:active,
  .login-submit:active {
    transform: scale(0.985);
  }

  .login-header {
    min-height: calc(68px + env(safe-area-inset-top));
    padding-top: max(18px, env(safe-area-inset-top));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: 12px;
    padding-left: max(20px, env(safe-area-inset-left));
  }

  .login-wordmark {
    font-size: 1.14rem;
  }

  .login-back {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 2px;
  }

  .login-layout {
    gap: 30px;
    padding-top: 24px;
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    padding-left: max(20px, env(safe-area-inset-left));
  }

  .login-index {
    margin-bottom: 12px;
  }

  .login-intro h1 {
    max-width: 100%;
    font-size: clamp(3.8rem, 18vw, 4.85rem);
    line-height: 0.88;
    white-space: nowrap;
  }

  .login-intro h1 br {
    display: none;
  }

  .login-panel {
    width: 100%;
    padding-top: 18px;
  }

  .login-panel-heading h2 {
    font-size: 1.48rem;
  }

  .login-panel-heading p {
    margin-top: 8px;
    line-height: 1.55;
  }

  .login-form {
    margin-top: 22px;
  }

  .login-field {
    margin-top: 15px;
  }

  .login-field input {
    min-height: 52px;
    padding-top: 10px;
    font-size: 1rem;
  }

  .login-status {
    min-height: 20px;
    margin: 12px 0 8px;
  }

  .login-submit {
    min-height: 56px;
    padding-inline: 16px;
  }

  .work-minimal {
    padding-top: calc(64px + env(safe-area-inset-top));
  }

  .work-focus {
    gap: 30px;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: max(34px, env(safe-area-inset-bottom));
  }

  .work-kicker {
    gap: 18px;
    padding-bottom: 13px;
    font-size: 0.58rem;
  }

  .work-focus h1 {
    margin-top: 30px;
    font-size: clamp(3.7rem, 17vw, 4.75rem);
    line-height: 0.78;
  }

  .work-summary {
    margin-top: 32px;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .work-launch {
    min-height: 56px;
    margin-top: 26px;
    padding-inline: 16px;
  }

  .work-film-placeholder {
    min-height: 36px;
    margin-top: 8px;
    font-size: 0.62rem;
  }

  .work-preview {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    box-shadow: 0 22px 64px rgba(15, 34, 72, 0.13);
  }

  .work-preview-primary img {
    object-position: center top;
  }

  .work-preview figcaption {
    padding: 14px;
    font-size: 0.56rem;
  }
}

@media (max-width: 375px) {
  .home-stage {
    padding-right: max(18px, env(safe-area-inset-right));
    padding-left: max(18px, env(safe-area-inset-left));
  }

  .home-core {
    padding-bottom: 72px;
  }

  .home-brand {
    font-size: clamp(4rem, 20vw, 4.7rem);
  }

  .home-actions a {
    min-height: 50px;
    padding-inline: 12px;
    font-size: 0.76rem;
  }

  .home-parameters {
    right: max(18px, env(safe-area-inset-right));
    left: max(18px, env(safe-area-inset-left));
  }

  .login-layout,
  .login-header {
    padding-right: max(18px, env(safe-area-inset-right));
    padding-left: max(18px, env(safe-area-inset-left));
  }

  .login-intro h1 {
    font-size: 17.5vw;
  }

  .work-focus h1 {
    font-size: 16.5vw;
  }
}

/* AEROGRAPH 01 — flight manuscript */

.minimal-home {
  --aerograph-paper: #dff2ff;
  --aerograph-paper-light: #fbfeff;
  --aerograph-ink: #102a43;
  --aerograph-graphite: #0c69a7;
  --aerograph-blue: #096bc3;
  --aerograph-mist: #c9edff;
  --aerograph-waypoint: #ffffff;
  color: var(--aerograph-ink);
  background: var(--aerograph-paper);
}

.minimal-home .home-stage {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: max(680px, 100svh);
  padding: 0;
  background:
    radial-gradient(ellipse 42% 28% at 76% 38%, rgba(255, 255, 255, 0.32), transparent 72%),
    radial-gradient(ellipse 34% 20% at 88% 68%, rgba(222, 246, 255, 0.38), transparent 74%),
    linear-gradient(116deg, #fbfeff 0%, #edf8ff 34%, #a9ddfc 66%, #4a9de0 100%);
}

.minimal-home .home-stage::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 68% 78% at 16% 50%, rgba(251, 254, 255, 0.98) 0 35%, rgba(243, 251, 255, 0.82) 54%, rgba(232, 247, 255, 0.26) 72%, transparent 88%),
    linear-gradient(90deg, rgba(251, 254, 255, 0.28), transparent 62%);
  content: "";
  pointer-events: none;
}

.minimal-home .home-stage::after {
  position: absolute;
  inset: clamp(12px, 1.35vw, 22px);
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.58);
  content: "";
  pointer-events: none;
}

.minimal-home .idea-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 1;
  pointer-events: none;
}

.minimal-home .idea-atlas {
  display: none;
}

.aerograph-text-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  color: var(--aerograph-graphite);
  pointer-events: none;
  transition: opacity 240ms ease;
}

.aerograph-text-layer.is-changing-language {
  opacity: 0.24;
}

.aerograph-line {
  --line-x: 0px;
  --line-y: 0px;
  --line-rotate: 0deg;
  --line-alpha: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, var(--line-alpha));
  font: 540 10.5px/1.7 "SF Mono", "Roboto Mono", "PingFang SC", monospace;
  letter-spacing: 0.045em;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  transform: translate3d(var(--line-x), var(--line-y), 0) rotate(var(--line-rotate));
  transform-origin: left center;
  transition: color 380ms ease, transform 460ms cubic-bezier(0.22, 0.65, 0.26, 1);
  will-change: transform;
}

.aerograph-line[data-tone="sky"] {
  color: rgba(8, 91, 167, calc(var(--line-alpha) * 0.76));
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.5);
}

.aerograph-line[data-tone="cloud"] {
  color: rgba(255, 255, 255, var(--line-alpha));
}

.aerograph-line[hidden] {
  display: none;
}

.minimal-home .home-frame {
  top: clamp(28px, 2.6vw, 42px);
  right: clamp(32px, 3.4vw, 54px);
  left: clamp(32px, 3.4vw, 54px);
  z-index: 4;
  color: rgba(16, 42, 67, 0.52);
  font-family: "SF Mono", "Roboto Mono", "PingFang SC", monospace;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.language-switch {
  position: absolute;
  top: clamp(20px, 1.8vw, 30px);
  left: 50%;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  min-height: 44px;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  color: rgba(16, 42, 67, 0.36);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 28px rgba(39, 117, 169, 0.08);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.language-switch button {
  min-width: 38px;
  min-height: 38px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  color: rgba(16, 42, 67, 0.5);
  background: transparent;
  font: 650 0.58rem/1 "Avenir Next", "Helvetica Neue", "PingFang SC", sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.language-switch button[aria-pressed="true"] {
  color: #075c9f;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 3px 12px rgba(28, 112, 170, 0.11);
}

.language-switch button:focus-visible {
  outline: 2px solid #096bc3;
  outline-offset: 2px;
}

.language-switch > span {
  font-size: 0.54rem;
}

.minimal-home .home-parameters {
  top: 21%;
  right: clamp(32px, 3.4vw, 54px);
  z-index: 4;
  display: grid;
  gap: 11px;
  width: auto;
  color: rgba(17, 19, 23, 0.32);
  font-family: "SF Mono", "Roboto Mono", "PingFang SC", monospace;
  font-size: 0.53rem;
  letter-spacing: 0.11em;
  transform: none;
}

.minimal-home .home-parameters span {
  display: grid;
  grid-template-columns: 20px 68px 34px;
  align-items: baseline;
  gap: 7px;
  opacity: 0.56;
  transform: none;
  transition: color 480ms ease, opacity 480ms ease;
}

.minimal-home .home-parameters span::before {
  display: none;
}

.minimal-home .home-parameters b,
.minimal-home .home-parameters em,
.minimal-home .home-parameters small {
  font: inherit;
}

.minimal-home .home-parameters b {
  color: var(--aerograph-waypoint);
  font-variant-numeric: tabular-nums;
}

.minimal-home .home-parameters em {
  color: inherit;
  font-style: normal;
  font-weight: 650;
}

.minimal-home .home-parameters small {
  letter-spacing: 0.04em;
}

.minimal-home .home-parameters span.is-active {
  color: var(--aerograph-blue);
  opacity: 1;
  transform: none;
}

.minimal-home .home-core {
  position: absolute;
  top: 49%;
  left: clamp(34px, 5.2vw, 80px);
  z-index: 4;
  width: min(57vw, 900px);
  padding: 0;
  transform: translateY(-53%);
}

.minimal-home .home-brand {
  max-width: 100%;
  color: var(--aerograph-ink);
  font-size: clamp(5rem, 10.7vw, 10.8rem);
  font-weight: 620;
  line-height: 0.72;
  transform: none;
  transition: none;
}

.minimal-home .home-brand-i,
.minimal-home .home-brand-letter,
.minimal-home .home-brand-lab,
.minimal-home .home-brand-letter:nth-child(2),
.minimal-home .home-brand-letter:nth-child(3),
.minimal-home .home-brand-letter:nth-child(4) {
  transform: none;
  transition: none;
}

.minimal-home .home-brand-i,
.minimal-home .home-brand-lab {
  color: var(--aerograph-blue);
}

.minimal-home .home-statement {
  width: fit-content;
  max-width: 31em;
  margin: clamp(32px, 4vw, 52px) 0 0 0.08em;
  padding: 2px 0 2px 15px;
  border-left: 2px solid var(--aerograph-blue);
  color: rgba(17, 19, 23, 0.88);
  background: transparent;
  box-shadow: none;
  font-size: clamp(0.94rem, 1.25vw, 1.12rem);
  font-weight: 480;
  letter-spacing: -0.025em;
  line-height: 1.62;
}

.home-field-note {
  position: absolute;
  right: clamp(38px, 5.2vw, 80px);
  bottom: clamp(116px, 14vh, 154px);
  z-index: 4;
  width: min(31vw, 410px);
  padding-top: 14px;
  border-top: 1px solid rgba(17, 19, 23, 0.42);
  background: linear-gradient(90deg, rgba(246, 244, 238, 0.84), rgba(246, 244, 238, 0.54) 72%, transparent);
}

.home-field-note > p,
.home-field-note footer {
  margin: 0;
  color: rgba(17, 19, 23, 0.46);
  font-family: "SF Mono", "Roboto Mono", "PingFang SC", monospace;
  font-size: 0.5rem;
  font-weight: 620;
  letter-spacing: 0.13em;
  line-height: 1.5;
}

.home-field-note blockquote {
  margin: 15px 0 13px;
}

.home-field-note strong,
.home-field-note span {
  display: block;
}

.home-field-note strong {
  color: var(--aerograph-ink);
  font-family: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.home-field-note span {
  max-width: 29em;
  margin-top: 9px;
  color: rgba(17, 19, 23, 0.7);
  font-size: clamp(0.72rem, 0.86vw, 0.82rem);
  line-height: 1.78;
}

.minimal-home .home-actions {
  position: absolute;
  bottom: clamp(34px, 4.6vh, 52px);
  left: clamp(34px, 5.2vw, 80px);
  z-index: 4;
  gap: clamp(30px, 4vw, 58px);
  width: auto;
}

.minimal-home .home-actions a {
  min-height: 44px;
  color: var(--aerograph-ink);
}

.minimal-home .home-actions .home-action-primary {
  color: var(--aerograph-blue);
}

.minimal-home .parametric-cursor-ring {
  width: 27px;
  height: 27px;
  border-color: rgba(6, 87, 255, 0.72);
}

.minimal-home .parametric-cursor-mark,
.minimal-home .parametric-cursor.is-interactive .parametric-cursor-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aerograph-blue);
  filter: none;
}

.minimal-home .parametric-cursor-mark img {
  display: none;
}

.minimal-home .parametric-cursor.is-interactive .parametric-cursor-ring {
  width: 39px;
  height: 39px;
  background: rgba(6, 87, 255, 0.045);
}

.minimal-home .home-live {
  background:
    radial-gradient(circle at 18% 8%, rgba(6, 87, 255, 0.23), transparent 28%),
    linear-gradient(rgba(191, 207, 229, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 207, 229, 0.024) 1px, transparent 1px),
    #07111f;
  background-size: auto, 72px 72px, 72px 72px, auto;
}

@media (max-width: 980px) {
  .minimal-home .home-brand {
    font-size: clamp(4.9rem, 12.5vw, 8rem);
  }

  .home-field-note {
    width: min(39vw, 380px);
  }

  .minimal-home .home-parameters span {
    grid-template-columns: 18px 61px 30px;
  }
}

@media (max-width: 700px) {
  .minimal-home .home-stage {
    min-height: max(680px, 100svh);
    background:
      radial-gradient(circle at 66% 68%, rgba(191, 207, 229, 0.28), transparent 28%),
      radial-gradient(circle at 24% 30%, rgba(255, 255, 255, 0.78), transparent 32%),
      linear-gradient(rgba(17, 19, 23, 0.017) 1px, transparent 1px),
      linear-gradient(90deg, rgba(17, 19, 23, 0.017) 1px, transparent 1px),
      var(--aerograph-paper);
    background-size: auto, auto, 52px 52px, 52px 52px, auto;
  }

  .minimal-home .home-stage::before {
    background:
      radial-gradient(ellipse 95% 36% at 33% 31%, rgba(246, 244, 238, 0.98) 0 48%, rgba(246, 244, 238, 0.65) 75%, transparent 100%),
      radial-gradient(ellipse 92% 28% at 36% 53%, rgba(246, 244, 238, 0.9) 0 45%, rgba(246, 244, 238, 0.32) 78%, transparent 100%);
  }

  .minimal-home .home-stage::after {
    top: max(10px, env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    left: max(10px, env(safe-area-inset-left));
  }

  .aerograph-line {
    font-size: 9px;
    letter-spacing: 0.025em;
  }

  .minimal-home .home-frame {
    top: max(22px, calc(env(safe-area-inset-top) + 12px));
    right: max(22px, calc(env(safe-area-inset-right) + 12px));
    left: max(22px, calc(env(safe-area-inset-left) + 12px));
    font-size: 0.48rem;
  }

  .minimal-home .home-frame span:last-child {
    display: none;
  }

  .minimal-home .home-core {
    top: 17.5%;
    right: max(22px, env(safe-area-inset-right));
    left: max(22px, env(safe-area-inset-left));
    width: auto;
    padding: 0;
    transform: none;
  }

  .minimal-home .home-brand {
    font-size: clamp(4.15rem, 20vw, 5.5rem);
    line-height: 0.72;
  }

  .minimal-home .home-statement {
    max-width: 20em;
    margin-top: 27px;
    padding-left: 12px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .home-field-note {
    top: 44.5%;
    right: max(22px, env(safe-area-inset-right));
    bottom: auto;
    left: max(22px, env(safe-area-inset-left));
    width: auto;
    padding-top: 11px;
    background: linear-gradient(90deg, rgba(246, 244, 238, 0.94), rgba(246, 244, 238, 0.72) 72%, transparent);
  }

  .home-field-note > p {
    font-size: 0.44rem;
    letter-spacing: 0.09em;
  }

  .home-field-note blockquote {
    margin: 10px 0 9px;
  }

  .home-field-note strong {
    font-size: 1rem;
  }

  .home-field-note span {
    max-width: 27em;
    margin-top: 6px;
    font-size: 0.69rem;
    line-height: 1.68;
  }

  .home-field-note footer {
    display: none;
  }

  .minimal-home .home-parameters {
    top: auto;
    right: max(22px, env(safe-area-inset-right));
    bottom: max(89px, calc(env(safe-area-inset-bottom) + 76px));
    left: max(22px, env(safe-area-inset-left));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    width: auto;
    font-size: 0.45rem;
  }

  .minimal-home .home-parameters span {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px;
    min-width: 0;
    padding-top: 7px;
    border-top: 1px solid rgba(17, 19, 23, 0.2);
  }

  .minimal-home .home-parameters span.is-active {
    border-color: var(--aerograph-blue);
  }

  .minimal-home .home-parameters small {
    display: none;
  }

  .minimal-home .home-actions {
    right: max(22px, env(safe-area-inset-right));
    bottom: max(22px, env(safe-area-inset-bottom));
    left: max(22px, env(safe-area-inset-left));
    gap: 10px;
    width: auto;
  }

  .minimal-home .home-actions a {
    min-width: 0;
    min-height: 52px;
    flex: 1 1 0;
    padding: 0 14px;
    border: 1px solid rgba(17, 19, 23, 0.7);
  }

  .minimal-home .home-actions .home-action-primary {
    border-color: var(--aerograph-blue);
    color: #fff;
    background: var(--aerograph-blue);
  }
}

@media (max-width: 375px) {
  .minimal-home .home-core,
  .home-field-note,
  .minimal-home .home-parameters,
  .minimal-home .home-actions {
    right: max(18px, env(safe-area-inset-right));
    left: max(18px, env(safe-area-inset-left));
  }

  .minimal-home .home-brand {
    font-size: clamp(4rem, 20vw, 4.7rem);
  }

  .home-field-note {
    top: 43.5%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aerograph-line {
    transition: none;
    will-change: auto;
  }
}

/* IDEA FIELD 01 — high-altitude light field */
.minimal-home {
  --field-ink: #082d50;
  --field-blue: #0879c6;
  --field-sky: #76bee9;
  --field-cloud: #f8fdff;
  --field-deep: #06345f;
  --aerograph-paper: #dff4ff;
  --aerograph-paper-light: #fbfeff;
  --aerograph-ink: var(--field-ink);
  --aerograph-graphite: #0b659f;
  --aerograph-blue: var(--field-blue);
  --aerograph-mist: #c7ebfb;
  --aerograph-waypoint: #ffffff;
  background: var(--field-deep);
}

.minimal-home .home-stage {
  min-height: max(680px, 100svh);
  overflow: hidden;
  background:
    radial-gradient(ellipse 40% 29% at 64% 43%, rgba(255, 255, 255, 0.98) 0 24%, rgba(244, 252, 255, 0.78) 44%, rgba(219, 243, 254, 0.18) 71%, transparent 82%),
    radial-gradient(ellipse 25% 17% at 86% 58%, rgba(249, 254, 255, 0.86) 0 20%, rgba(221, 244, 253, 0.35) 59%, transparent 80%),
    linear-gradient(132deg, #8dcff1 0%, #d9f2ff 29%, #f9fdff 46%, #83c4e7 63%, #2379b8 80%, #06345f 100%);
  background-size: auto;
}

.minimal-home .home-stage::before {
  z-index: 0;
  background:
    radial-gradient(ellipse 52% 62% at 12% 48%, rgba(249, 253, 255, 0.98) 0 36%, rgba(235, 248, 255, 0.85) 54%, rgba(212, 239, 252, 0.22) 76%, transparent 91%),
    radial-gradient(ellipse 35% 20% at 74% 37%, rgba(255, 255, 255, 0.55) 0 28%, rgba(255, 255, 255, 0.1) 72%, transparent 88%),
    linear-gradient(90deg, rgba(246, 252, 255, 0.32), transparent 48%);
}

.minimal-home .home-stage::after {
  z-index: 7;
  border-color: rgba(244, 252, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(7, 58, 99, 0.04);
}

.minimal-home .idea-atlas {
  display: none !important;
  opacity: 0 !important;
  animation: none !important;
  transition: none;
}

.minimal-home .idea-field {
  z-index: 1;
  display: block;
  background: transparent;
  opacity: 1;
  mix-blend-mode: normal;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 27%, rgba(0, 0, 0, 0.74) 47%, #000 62%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 27%, rgba(0, 0, 0, 0.74) 47%, #000 62%);
}

.aerograph-text-layer {
  z-index: 2;
  display: block;
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.05) 30%, #000 54%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.05) 30%, #000 54%);
}

.aerograph-line {
  color: rgba(244, 252, 255, var(--line-alpha));
  text-shadow: 0 1px 12px rgba(5, 52, 95, 0.16);
}

.aerograph-line[data-tone="sky"] {
  color: rgba(7, 90, 145, calc(var(--line-alpha) * 0.86));
  text-shadow: 0 1px 11px rgba(255, 255, 255, 0.58);
}

.aerograph-line[data-tone="cloud"] {
  color: rgba(255, 255, 255, var(--line-alpha));
}

.minimal-home .home-frame {
  z-index: 5;
  color: rgba(7, 55, 94, 0.54);
  text-shadow: 0 1px 12px rgba(250, 254, 255, 0.72);
}

.minimal-home .home-frame span:last-child {
  color: rgba(7, 55, 94, 0.58);
  text-shadow: 0 1px 14px rgba(250, 254, 255, 0.72);
}

.language-switch {
  position: absolute;
  top: clamp(18px, 1.8vw, 30px);
  right: auto;
  left: 50%;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: auto;
  min-height: 48px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: rgba(7, 55, 94, 0.5);
  background: rgba(239, 250, 255, 0.25);
  box-shadow: 0 10px 32px rgba(5, 55, 96, 0.08);
  backdrop-filter: blur(16px) saturate(115%);
  font: 650 0.5rem/1 "SF Mono", "Roboto Mono", monospace;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.language-switch button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 10px;
  color: inherit;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  box-shadow: none;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: #075d9b;
  background: rgba(251, 254, 255, 0.9);
  box-shadow: 0 4px 14px rgba(5, 64, 108, 0.12);
}

.language-switch > span {
  color: rgba(7, 55, 94, 0.28);
}

.minimal-home .home-parameters {
  top: 20%;
  right: clamp(32px, 3.4vw, 54px);
  z-index: 5;
  gap: 12px;
  padding: 12px 14px 12px 13px;
  border-left: 1px solid rgba(7, 72, 118, 0.2);
  border-radius: 0 4px 4px 0;
  background: rgba(248, 253, 255, 0.18);
  text-shadow: 0 1px 10px rgba(250, 254, 255, 0.48);
  backdrop-filter: blur(8px);
}

.minimal-home .home-parameters span {
  grid-template-columns: 20px 92px 62px;
  color: rgba(7, 55, 94, 0.56);
  opacity: 0.78;
}

.minimal-home .home-parameters b {
  color: rgba(7, 55, 94, 0.48);
}

.minimal-home .home-parameters span.is-active,
.minimal-home .home-parameters span.is-active b {
  color: #086dac;
  opacity: 1;
}

.minimal-home .home-core {
  top: 38.5%;
  left: clamp(34px, 5.2vw, 80px);
  z-index: 5;
  width: min(49vw, 770px);
  transform: translateY(-52%);
}

.minimal-home .home-brand {
  color: var(--field-ink);
  font-size: clamp(5rem, 9.85vw, 10rem);
  line-height: 0.72;
  text-shadow: 0 4px 34px rgba(235, 249, 255, 0.74);
}

.minimal-home .home-brand-i,
.minimal-home .home-brand-lab {
  color: var(--field-blue);
}

.minimal-home .home-statement {
  margin-top: clamp(30px, 3.4vw, 46px);
  border-left-color: var(--field-blue);
  color: rgba(6, 43, 78, 0.88);
  background: transparent;
  box-shadow: none;
}

.home-field-note {
  right: auto;
  bottom: clamp(118px, 14vh, 154px);
  left: clamp(34px, 5.2vw, 80px);
  z-index: 5;
  display: block;
  width: min(34vw, 440px);
  padding: 13px 16px 11px 0;
  border-top: 1px solid rgba(7, 74, 119, 0.34);
  background: linear-gradient(90deg, rgba(241, 251, 255, 0.72), rgba(227, 246, 255, 0.24) 78%, transparent);
  backdrop-filter: blur(5px);
}

.home-field-note > p,
.home-field-note footer {
  color: rgba(7, 55, 94, 0.52);
}

.home-field-note strong {
  color: var(--field-ink);
}

.home-field-note span {
  color: rgba(7, 55, 94, 0.76);
}

.minimal-home .home-actions {
  z-index: 5;
}

@media (max-width: 980px) {
  .minimal-home .home-core {
    width: min(52vw, 690px);
  }

  .minimal-home .home-parameters span {
    grid-template-columns: 18px 78px 54px;
  }

  .home-field-note {
    width: min(40vw, 410px);
  }
}

@media (max-width: 700px) {
  .minimal-home .home-stage {
    min-height: max(760px, 100svh);
    background:
      radial-gradient(ellipse 88% 22% at 54% 45%, rgba(255, 255, 255, 0.96) 0 28%, rgba(235, 249, 255, 0.66) 58%, transparent 82%),
      linear-gradient(180deg, #f9fdff 0%, #e2f5ff 35%, #c8edfc 49%, #72bce7 68%, #1c70ad 84%, #06345f 100%);
    background-size: auto;
  }

  .minimal-home .home-stage::before {
    background:
      radial-gradient(ellipse 116% 34% at 23% 19%, rgba(250, 254, 255, 0.98) 0 44%, rgba(236, 249, 255, 0.72) 68%, transparent 94%),
      radial-gradient(ellipse 90% 18% at 68% 51%, rgba(255, 255, 255, 0.66) 0 25%, rgba(255, 255, 255, 0.12) 72%, transparent 88%);
  }

  .minimal-home .idea-atlas-desktop,
  .minimal-home .idea-atlas-mobile {
    display: none !important;
  }

  .minimal-home .idea-field,
  .aerograph-text-layer {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.3) 50%, #000 61%);
    mask-image: linear-gradient(180deg, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.3) 50%, #000 61%);
  }

  .aerograph-text-layer {
    opacity: 0.68;
  }

  .minimal-home .home-frame {
    top: max(22px, calc(env(safe-area-inset-top) + 12px));
    right: max(20px, calc(env(safe-area-inset-right) + 10px));
    left: max(20px, calc(env(safe-area-inset-left) + 10px));
  }

  .minimal-home .home-frame span:last-child {
    display: none;
  }

  .minimal-home .home-core {
    top: max(132px, calc(env(safe-area-inset-top) + 116px));
    right: max(22px, env(safe-area-inset-right));
    left: max(22px, env(safe-area-inset-left));
    width: auto;
    transform: none;
  }

  .minimal-home .home-brand {
    font-size: clamp(4.15rem, 20vw, 5.55rem);
    text-shadow: 0 3px 28px rgba(246, 253, 255, 0.9);
  }

  .minimal-home .home-statement {
    max-width: 21em;
    margin-top: 25px;
    font-size: 0.88rem;
  }

  .language-switch {
    top: max(52px, calc(env(safe-area-inset-top) + 42px));
    right: max(20px, env(safe-area-inset-right));
    left: auto;
    transform: none;
  }

  .home-field-note {
    top: 40%;
    right: max(22px, env(safe-area-inset-right));
    bottom: auto;
    left: max(22px, env(safe-area-inset-left));
    width: auto;
    padding: 11px 12px 9px 0;
    background: linear-gradient(90deg, rgba(244, 252, 255, 0.84), rgba(223, 244, 255, 0.26) 84%, transparent);
  }

  .home-field-note > p {
    color: rgba(7, 55, 94, 0.48);
  }

  .home-field-note span {
    color: rgba(7, 55, 94, 0.72);
  }

  .minimal-home .home-parameters {
    top: auto;
    right: max(22px, env(safe-area-inset-right));
    bottom: max(92px, calc(env(safe-area-inset-bottom) + 78px));
    left: max(22px, env(safe-area-inset-left));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    height: auto;
    text-shadow: 0 1px 12px rgba(3, 33, 63, 0.34);
  }

  .minimal-home .home-parameters span {
    grid-template-columns: auto 1fr;
    color: rgba(247, 253, 255, 0.58);
    border-top-color: rgba(244, 252, 255, 0.34);
  }

  .minimal-home .home-parameters span.is-active {
    border-top-color: #ffffff;
  }

  .minimal-home .home-actions {
    right: auto;
    bottom: max(30px, env(safe-area-inset-bottom));
    width: calc(100% - 44px);
    max-width: none;
  }

  .minimal-home .home-actions a {
    border-color: rgba(245, 252, 255, 0.66);
    color: #ffffff;
    background: rgba(5, 55, 96, 0.18);
    box-shadow: 0 10px 28px rgba(3, 38, 70, 0.12);
    backdrop-filter: blur(10px);
    white-space: nowrap;
  }

  .minimal-home .home-actions .home-action-primary {
    border-color: rgba(255, 255, 255, 0.88);
    color: var(--field-deep);
    background: rgba(249, 254, 255, 0.92);
  }
}

@media (max-width: 375px) {
  .minimal-home .home-core,
  .home-field-note,
  .minimal-home .home-parameters,
  .minimal-home .home-actions {
    right: max(18px, env(safe-area-inset-right));
    left: max(18px, env(safe-area-inset-left));
  }

  .home-field-note {
    top: 39%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .minimal-home .idea-field,
  .aerograph-text-layer,
  .aerograph-line {
    transition: none;
    animation: none !important;
  }
}

/* Archived atlas composition retained below for source history.
.minimal-home {
  --field-paper: #fafaf8;
  --field-ink: #111317;
  --field-blue: #0657ff;
  --aerograph-blue: var(--field-blue);
  color: var(--field-ink);
  background: var(--field-paper);
}

.minimal-home .home-stage {
  min-height: max(680px, 100svh);
  background:
    radial-gradient(circle at 52% 48%, rgba(222, 229, 239, 0.2), transparent 30%),
    linear-gradient(rgba(22, 32, 51, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 32, 51, 0.014) 1px, transparent 1px),
    var(--field-paper);
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.minimal-home .home-stage::before {
  z-index: 3;
  background:
    radial-gradient(ellipse 38% 29% at 23% 48%, rgba(250, 250, 248, 0.985) 0 38%, rgba(250, 250, 248, 0.86) 61%, rgba(250, 250, 248, 0.2) 88%, transparent 100%),
    radial-gradient(ellipse 22% 15% at 12% 91%, rgba(250, 250, 248, 0.96) 0 42%, rgba(250, 250, 248, 0.52) 72%, transparent 100%);
}

.minimal-home .home-stage::after {
  z-index: 7;
  border-color: rgba(22, 32, 51, 0.105);
  box-shadow: none;
}

.minimal-home .idea-atlas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  opacity: 0.92 !important;
  filter: contrast(1.08) !important;
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: translate3d(var(--atlas-shift-x), var(--atlas-shift-y), 0) scale(var(--atlas-scale));
  transform-origin: 52% 50%;
}

.minimal-home .idea-atlas-mobile {
  display: none !important;
}

.minimal-home .idea-field {
  z-index: 1;
  background: transparent;
  opacity: 1;
  filter: none;
  mix-blend-mode: multiply;
  -webkit-mask-image: none;
  mask-image: none;
}

.aerograph-text-layer,
.home-field-note {
  display: none !important;
}

.minimal-home .home-frame {
  z-index: 5;
  color: rgba(22, 32, 51, 0.48);
  text-shadow: none;
}

.language-switch {
  top: clamp(54px, 6.4vw, 92px);
  right: clamp(32px, 3.4vw, 54px);
  left: auto;
  z-index: 6;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(22, 32, 51, 0.34);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
}

.language-switch button {
  min-width: 30px;
  min-height: 30px;
  padding: 0 5px;
  border-radius: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  font: 650 0.5rem/1 "SF Mono", "Roboto Mono", monospace;
}

.language-switch button[aria-pressed="true"] {
  color: var(--field-blue);
  background: transparent;
  box-shadow: none;
}

.minimal-home .home-parameters {
  top: 38%;
  right: clamp(32px, 3.4vw, 54px);
  z-index: 5;
  gap: 12px;
  height: auto;
  text-shadow: none;
}

.minimal-home .home-parameters span {
  grid-template-columns: 20px 92px 62px;
  color: rgba(22, 32, 51, 0.34);
  opacity: 0.72;
}

.minimal-home .home-parameters b {
  color: rgba(22, 32, 51, 0.46);
}

.minimal-home .home-parameters span.is-active,
.minimal-home .home-parameters span.is-active b {
  color: var(--field-blue);
  opacity: 1;
}

.minimal-home .home-core {
  top: 49.5%;
  left: clamp(34px, 5.2vw, 80px);
  z-index: 5;
  width: min(54vw, 860px);
  transform: translateY(-52%);
}

.minimal-home .home-brand {
  color: var(--field-ink);
  font-size: clamp(5rem, 10.25vw, 10.45rem);
  line-height: 0.72;
  text-shadow: 0 0 28px rgba(250, 250, 248, 0.42);
}

.minimal-home .home-brand-i,
.minimal-home .home-brand-lab {
  color: var(--field-blue);
}

.minimal-home .home-statement {
  margin-top: clamp(34px, 4vw, 52px);
  border-left-color: var(--field-blue);
  color: rgba(17, 19, 23, 0.88);
  background: rgba(250, 250, 248, 0.36);
  box-shadow: 0 0 28px 18px rgba(250, 250, 248, 0.3);
}

.minimal-home .home-actions {
  z-index: 5;
}

html.idealab-home-intro-active:not(.idealab-home-intro-entering) .idea-atlas {
  opacity: 0 !important;
  transform: scale(0.28);
}

html.idealab-home-intro-entering .idea-atlas {
  animation: idealabAtlasHandoff 960ms cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

@keyframes idealabAtlasHandoff {
  0% { opacity: 0; transform: scale(0.28); }
  44% { opacity: 0.5; }
  100% { opacity: 0.92; transform: scale(1); }
}

@media (max-width: 700px) {
  .minimal-home .home-stage {
    min-height: max(680px, 100svh);
    background:
      radial-gradient(circle at 55% 47%, rgba(222, 229, 239, 0.2), transparent 33%),
      linear-gradient(rgba(22, 32, 51, 0.013) 1px, transparent 1px),
      linear-gradient(90deg, rgba(22, 32, 51, 0.013) 1px, transparent 1px),
      var(--field-paper);
    background-size: auto, 52px 52px, 52px 52px, auto;
  }

  .minimal-home .home-stage::before {
    background:
      radial-gradient(ellipse 105% 22% at 38% 38%, rgba(250, 250, 248, 0.985) 0 48%, rgba(250, 250, 248, 0.72) 70%, transparent 100%),
      radial-gradient(ellipse 100% 13% at 50% 91%, rgba(250, 250, 248, 0.97) 0 48%, rgba(250, 250, 248, 0.48) 75%, transparent 100%);
  }

  .minimal-home .idea-atlas-desktop { display: none !important; }
  .minimal-home .idea-atlas-mobile { display: block !important; }

  .minimal-home .home-core {
    top: 37.5%;
    right: max(22px, env(safe-area-inset-right));
    left: max(22px, env(safe-area-inset-left));
    width: auto;
    transform: translateY(-50%);
  }

  .minimal-home .home-brand {
    font-size: clamp(4.4rem, 20.8vw, 6.4rem);
  }

  .minimal-home .home-statement {
    max-width: 27em;
    margin-top: 30px;
    font-size: 0.88rem;
  }

  .language-switch {
    top: max(44px, calc(env(safe-area-inset-top) + 30px));
    right: max(22px, env(safe-area-inset-right));
  }

  .minimal-home .home-parameters {
    top: auto;
    right: max(22px, env(safe-area-inset-right));
    bottom: max(89px, calc(env(safe-area-inset-bottom) + 76px));
    left: max(22px, env(safe-area-inset-left));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    height: auto;
  }

  .minimal-home .home-parameters span {
    grid-template-columns: auto 1fr;
    color: rgba(22, 32, 51, 0.4);
    border-top-color: rgba(22, 32, 51, 0.2);
  }

  .minimal-home .home-parameters span.is-active {
    border-top-color: var(--field-blue);
  }

  .minimal-home .home-actions {
    right: auto;
    bottom: max(30px, env(safe-area-inset-bottom));
    width: calc(100% - 44px);
    max-width: none;
  }

  .minimal-home .home-actions a {
    border-color: rgba(17, 19, 23, 0.7);
    color: var(--field-ink);
    background: rgba(250, 250, 248, 0.68);
    box-shadow: none;
    backdrop-filter: none;
    white-space: nowrap;
  }

  .minimal-home .home-actions .home-action-primary {
    border-color: var(--field-blue);
    color: #fff;
    background: var(--field-blue);
  }
}

@media (prefers-reduced-motion: reduce) {
  .minimal-home .idea-atlas,
  .minimal-home .idea-field {
    transition: none;
    animation: none !important;
  }
}
*/

.minimal-home .home-stage[data-board-theme="flight-blue"] .idea-field,
.minimal-home .home-stage[data-board-theme="flight-blue"] .aerograph-text-layer {
  transition: opacity 260ms ease, filter 260ms ease;
}

.minimal-home .home-stage.is-flight-engaged .idea-field {
  filter: brightness(1.08) saturate(1.1);
}

.minimal-home .home-stage.is-flight-engaged .aerograph-text-layer {
  opacity: 0.96;
  filter: drop-shadow(0 9px 22px rgba(5, 66, 112, 0.18));
}

.minimal-home .home-stage.is-flight-engaged .parametric-cursor-ring {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 5px rgba(8, 121, 198, 0.12), 0 0 24px rgba(255, 255, 255, 0.42);
  transform: scale(1.18);
}

@media (max-width: 700px) {
  .minimal-home .home-parameters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(244, 252, 255, 0.36);
    border-radius: 3px;
    background: rgba(4, 53, 93, 0.24);
    backdrop-filter: blur(10px);
  }

  .minimal-home .home-parameters span {
    color: rgba(248, 253, 255, 0.78);
    opacity: 1;
  }

  .minimal-home .home-parameters b {
    color: rgba(248, 253, 255, 0.64);
  }

  .minimal-home .home-parameters span.is-active,
  .minimal-home .home-parameters span.is-active b {
    color: #ffffff;
  }

  .minimal-home .home-parameters em {
    font-size: 0.42rem;
  }

  .home-field-note {
    background: linear-gradient(90deg, rgba(244, 252, 255, 0.96) 0 72%, rgba(231, 247, 255, 0.72) 88%, transparent 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .minimal-home .home-stage[data-board-theme="flight-blue"] .idea-field,
  .minimal-home .home-stage[data-board-theme="flight-blue"] .aerograph-text-layer {
    transition: none;
  }
}

/* Three-system access */

.minimal-home .home-actions {
  align-items: flex-end;
  overflow: visible;
}

.home-system-menu {
  position: relative;
  min-width: 142px;
}

.home-system-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  min-height: 44px;
  padding: 12px 0 10px;
  border-bottom: 1px solid currentColor;
  color: var(--field-blue, #0657ff);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  transition: color 220ms ease, gap 320ms var(--ease);
}

.home-system-trigger::-webkit-details-marker {
  display: none;
}

.home-system-trigger::before {
  position: absolute;
  inset: -10px -8px;
  content: "";
}

.home-system-trigger-mark {
  display: inline-block;
  font-size: 1rem;
  font-weight: 420;
  transition: transform 320ms var(--ease);
}

.home-system-menu[open] .home-system-trigger-mark {
  transform: rotate(45deg);
}

.home-system-list {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 0;
  width: min(360px, calc(100vw - 44px));
  padding: 8px;
  border: 1px solid rgba(12, 49, 81, 0.28);
  color: #f7fbff;
  background: rgba(4, 27, 48, 0.92);
  box-shadow: 0 26px 80px rgba(1, 25, 46, 0.28);
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transform-origin: left bottom;
  pointer-events: none;
  backdrop-filter: blur(24px) saturate(128%);
  -webkit-backdrop-filter: blur(24px) saturate(128%);
  transition: opacity 180ms ease, transform 320ms var(--ease);
}

.home-system-menu[open] .home-system-list {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.minimal-home .home-actions .home-system-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-width: 0;
  min-height: 72px;
  padding: 13px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #f7fbff;
  background: transparent;
  font-size: inherit;
  transition: color 180ms ease, background-color 180ms ease, padding 260ms var(--ease);
}

.minimal-home .home-actions .home-system-list a:last-child {
  border-bottom: 0;
}

.minimal-home .home-actions .home-system-list a::before {
  display: none;
}

.minimal-home .home-actions .home-system-list a:hover {
  min-width: 0;
  padding-right: 10px;
  padding-left: 18px;
  color: #fff;
  background: rgba(90, 176, 255, 0.13);
}

.home-system-list a > span:first-child {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.home-system-list small,
.home-system-list b {
  display: block;
}

.home-system-list small {
  color: rgba(196, 225, 247, 0.54);
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: 0.5rem;
  font-weight: 620;
  letter-spacing: 0.14em;
}

.home-system-list b {
  overflow: hidden;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 590;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Gaussian project preview */

.work-focus-gaussian {
  position: relative;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
}

.work-focus-gaussian::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(70px, 8vw, 128px);
  height: 2px;
  background: #b8f35a;
  content: "";
}

.work-focus-gaussian h1 {
  font-size: clamp(4.2rem, 7.6vw, 8rem);
}

.work-focus-gaussian h1 span {
  color: #4d770b;
  font-size: 0.48em;
  letter-spacing: -0.065em;
}

.work-gaussian-preview {
  background: #080c0b;
  box-shadow: 0 36px 110px rgba(23, 49, 22, 0.23);
}

.gaussian-preview-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(184, 243, 90, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 243, 90, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 58% 45%, rgba(168, 228, 121, 0.09), transparent 34%),
    #080c0b;
  background-size: 38px 38px, 38px 38px, auto, auto;
  perspective: 900px;
}

.gaussian-preview-haze {
  position: absolute;
  top: 7%;
  left: 29%;
  width: 50%;
  height: 80%;
  border-radius: 48% 32% 41% 28%;
  background:
    radial-gradient(circle at 44% 28%, rgba(238, 232, 205, 0.18), transparent 20%),
    radial-gradient(circle at 64% 62%, rgba(117, 153, 114, 0.16), transparent 31%);
  filter: blur(24px);
  transform: rotate(-4deg);
}

.gaussian-preview-volume {
  position: absolute;
  top: 11%;
  left: 34%;
  width: 38%;
  height: 72%;
  clip-path: polygon(18% 2%, 78% 0, 98% 16%, 90% 92%, 24% 100%, 2% 83%, 8% 20%);
  background-image:
    radial-gradient(circle, rgba(248, 242, 216, 0.95) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(179, 212, 156, 0.72) 0 0.85px, transparent 1.55px),
    radial-gradient(circle at 38% 18%, rgba(255, 255, 245, 0.9), transparent 29%),
    linear-gradient(165deg, rgba(211, 213, 190, 0.34), rgba(40, 62, 51, 0.2));
  background-position: 0 0, 4px 5px, 0 0, 0 0;
  background-size: 8px 8px, 11px 11px, auto, auto;
  box-shadow: 0 0 70px rgba(202, 241, 156, 0.17);
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.56));
  opacity: 0.93;
  transform: rotateY(-22deg) rotateX(4deg) rotateZ(-3deg);
  transform-origin: 54% 62%;
  animation: gaussian-volume-drift 8s ease-in-out infinite alternate;
}

.gaussian-preview-volume::before,
.gaussian-preview-volume::after {
  position: absolute;
  content: "";
}

.gaussian-preview-volume::before {
  inset: 9% 14% 12% 16%;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(8, 12, 11, 0.64) 22% 26%, transparent 26% 64%, rgba(8, 12, 11, 0.72) 64% 69%, transparent 69%),
    linear-gradient(transparent 0 18%, rgba(8, 12, 11, 0.58) 18% 22%, transparent 22% 44%, rgba(8, 12, 11, 0.55) 44% 50%, transparent 50%);
  mix-blend-mode: multiply;
}

.gaussian-preview-volume::after {
  inset: 0;
  background: linear-gradient(90deg, transparent 0 45%, rgba(199, 252, 109, 0.3) 50%, transparent 55%);
  opacity: 0.5;
  transform: translateX(-120%);
  animation: gaussian-preview-scan 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.gaussian-preview-slice {
  position: absolute;
  top: 7%;
  bottom: 10%;
  left: 56%;
  width: 1px;
  background: linear-gradient(transparent, rgba(190, 255, 96, 0.88) 18% 82%, transparent);
  box-shadow: 0 0 14px rgba(190, 255, 96, 0.62), 0 0 42px rgba(190, 255, 96, 0.22);
  animation: gaussian-slice-drift 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.gaussian-preview-axis {
  position: absolute;
  right: 24px;
  bottom: 72px;
  display: block;
  background: rgba(184, 243, 90, 0.48);
  transform-origin: right bottom;
}

.gaussian-preview-axis-x {
  width: 44px;
  height: 1px;
}

.gaussian-preview-axis-y {
  width: 1px;
  height: 44px;
}

.gaussian-preview-readout {
  position: absolute;
  left: 20px;
  color: rgba(223, 245, 204, 0.64);
  font-family: "SF Mono", "Roboto Mono", monospace;
  font-size: clamp(0.48rem, 0.65vw, 0.62rem);
  font-weight: 650;
  letter-spacing: 0.14em;
}

.gaussian-preview-readout-top {
  top: 20px;
}

.gaussian-preview-readout-bottom {
  bottom: 54px;
}

@keyframes gaussian-volume-drift {
  to { transform: rotateY(-14deg) rotateX(1deg) rotateZ(1deg) translate3d(8px, -3px, 0); }
}

@keyframes gaussian-preview-scan {
  0%, 16% { transform: translateX(-120%); }
  72%, 100% { transform: translateX(120%); }
}

@keyframes gaussian-slice-drift {
  0%, 16% { left: 38%; opacity: 0.2; }
  72%, 100% { left: 74%; opacity: 0.9; }
}

@media (max-width: 700px) {
  .minimal-home .home-actions > a,
  .home-system-menu {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  .home-system-trigger {
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    color: var(--field-deep, #07395e);
    background: rgba(249, 254, 255, 0.92);
    box-shadow: 0 10px 28px rgba(3, 38, 70, 0.12);
    backdrop-filter: blur(10px);
  }

  .home-system-list {
    right: 0;
    left: auto;
    width: calc(100vw - 44px);
    transform-origin: right bottom;
  }

  .work-focus-gaussian h1 {
    white-space: normal;
  }

  .work-focus-gaussian h1 span {
    margin-left: 0.18em;
  }
}

@media (max-width: 375px) {
  .home-system-list {
    width: calc(100vw - 36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-system-list,
  .home-system-trigger-mark,
  .gaussian-preview-volume,
  .gaussian-preview-volume::after,
  .gaussian-preview-slice {
    transition: none;
    animation: none;
  }
}
