:root {
  --page: #f5f5f7;
  --surface: #ffffff;
  --ink: #0b0b0f;
  --muted: #68686f;
  --soft: #e9e9ed;
  --line: rgba(11, 11, 15, 0.09);
  --blue: #0071e3;
  --blue-light: #e7f2ff;
  --lime: #b8ff5b;
  --radius-xl: 44px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 16px 45px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--page);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.story-open {
  overflow: hidden;
  height: 100dvh;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus,
[role="button"]:focus,
input:focus,
textarea:focus {
  outline: none;
}

dialog:focus {
  outline: none;
}

button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

button,
input {
  font: inherit;
}

input,
textarea {
  -webkit-user-select: text;
  user-select: text;
}

button {
  color: inherit;
}

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

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

.section-shell {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  z-index: 1000;
  background: linear-gradient(90deg, #111116, #8d8d96, #b8ff5b);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 8px 0;
  pointer-events: none;
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.site-header.nav-hidden {
  transform: translate3d(0, -110%, 0);
}

.nav-shell {
  width: min(1380px, calc(100% - 48px));
  min-height: 54px;
  margin-inline: auto;
  padding: 6px 8px 6px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(249, 249, 251, 0.78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #09090c;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.desktop-nav a {
  padding: 8px 11px;
  border-radius: 999px;
  color: #55555d;
  font-size: 12px;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-contact {
  padding: 11px 16px;
  border-radius: 999px;
  background: #0a0a0d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-contact:hover {
  transform: translateY(-1px);
  background: #000;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  position: relative;
}

.menu-button span {
  width: 16px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -8px;
  border-radius: 2px;
  background: #0a0a0d;
  transition: transform 200ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-of-type {
  transform: translateY(4px);
}

.menu-button i {
  display: none;
}

.menu-button.is-open span:first-child {
  transform: rotate(45deg);
}

.menu-button.is-open span:last-of-type {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(340px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
  background: rgba(249, 249, 251, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.mobile-menu a {
  display: flex;
  padding: 14px 15px;
  border-radius: 16px;
  color: #393940;
  font-size: 14px;
  font-weight: 650;
}

.mobile-menu a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hero {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
  padding-block: 82px 112px;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -100px -6vw auto -6vw;
  height: min(660px, 80%);
  z-index: -1;
  border-radius: 0 0 70px 70px;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(0, 113, 227, 0.13), transparent 34%),
    radial-gradient(ellipse at 52% 36%, rgba(184, 255, 91, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(231, 242, 255, 0.5), rgba(245, 245, 247, 0));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: #777780;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #29c55f;
  box-shadow: 0 0 0 5px rgba(41, 197, 95, 0.1);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(64px, 7.5vw, 126px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: #777780;
  font-family: ui-serif, "Iowan Old Style", "Baskerville", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 660px;
  margin: 36px 0 0;
  color: #5f5f67;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.025em;
}

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

.primary-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 12px 0 23px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.primary-button {
  background: #0a0a0d;
  color: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 17px;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.text-button {
  padding-inline: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.hero-footnote {
  max-width: 580px;
  margin-top: 48px;
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-top: 1px solid var(--line);
  color: #777780;
  font-size: 12px;
  line-height: 1.6;
}

.live-dot {
  display: none;
  width: 7px;
  height: 7px;
  margin-top: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #29c55f;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.42; transform: scale(0.72); }
}

.hero-stage {
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  width: 94%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(79, 163, 255, 0.75), transparent 25%),
    radial-gradient(circle at 68% 70%, rgba(183, 255, 91, 0.4), transparent 27%),
    radial-gradient(circle at 50% 50%, #d7e7ff 0, #e9e9ff 48%, transparent 68%);
  filter: blur(14px);
  opacity: 0.88;
  z-index: -1;
  animation: glow-shift 10s ease-in-out infinite alternate;
}

@keyframes glow-shift {
  to { transform: translate3d(2%, -2%, 0) scale(1.04); filter: blur(20px) hue-rotate(12deg); }
}

.hero-product {
  width: min(100%, 650px);
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 38px;
  background: rgba(8, 8, 11, 0.96);
  color: #fff;
  box-shadow: 0 55px 110px rgba(20, 31, 61, 0.28);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
}

.hero-product-bar {
  min-height: 52px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-rotator {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #15151a;
}

.hero-rotator img,
.rotator-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms ease, transform 1600ms cubic-bezier(.2, .8, .2, 1);
}

.project-media .rotator-image {
  object-fit: cover;
  padding: 0;
  background: transparent;
}

.hero-rotator img.is-active,
.rotator-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-product-copy {
  padding: 23px 20px 20px;
}

.hero-product-copy p {
  margin: 0 0 6px;
  color: #9f9fa8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product-copy strong {
  display: block;
  max-width: 460px;
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.floating-chip {
  position: absolute;
  min-width: 168px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(20px);
}

.floating-chip span,
.floating-chip small {
  display: block;
}

.floating-chip span {
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.floating-chip small {
  margin-top: 2px;
  color: #707078;
  font-size: 10px;
  font-weight: 650;
}

.chip-one {
  left: -3%;
  bottom: 9%;
  animation: float-one 6s ease-in-out infinite;
}

.chip-two {
  right: -2%;
  top: 14%;
  animation: float-two 7s ease-in-out infinite;
}

@keyframes float-one {
  50% { transform: translateY(-11px) rotate(-1deg); }
}

@keyframes float-two {
  50% { transform: translateY(12px) rotate(1deg); }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 130px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.stat {
  min-height: 150px;
  padding: 28px;
  display: grid;
  grid-template-columns: 34px auto 1fr;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.stat svg {
  width: 28px;
  height: 28px;
}

.stat-value {
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.055em;
}

.stat-label {
  color: #777780;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-button,
.growth-card,
.sector-card,
.architecture-card,
.architecture-diagram,
.story-metric {
  appearance: none;
  text-align: left;
  cursor: pointer;
}

.stat-button {
  border: 0;
  transition: transform 240ms ease, background 240ms ease;
}

.stat-button:hover {
  transform: translateY(-2px);
  background: #fff;
}

.growth,
.work-section,
.capabilities,
.writing,
.stack-section,
.contact {
  padding-block: 40px 130px;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 45px;
}

.section-heading h2,
.stack-intro h2 {
  margin: 0;
  font-size: clamp(48px, 6.3vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.section-heading > p:last-child,
.heading-row > p,
.stack-intro > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.heading-row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.heading-row > p {
  margin: 0 0 7px;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.growth-card {
  min-height: 360px;
  padding: 27px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  color: inherit;
  transition: transform 320ms cubic-bezier(.2, .8, .2, 1), box-shadow 320ms ease;
  will-change: transform;
}

.growth-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

.growth-card-primary {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 156, 255, 0.85), transparent 35%),
    linear-gradient(150deg, #07111f, #0b4a98 70%, #0088ff);
}

.growth-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #777780;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-card-primary .growth-card-top {
  color: rgba(255, 255, 255, 0.68);
}

.status-pill {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.growth-card > strong {
  display: block;
  margin-top: 42px;
  font-size: clamp(56px, 5vw, 78px);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.metric-unit {
  font-size: 0.42em;
  letter-spacing: -0.03em;
}

.growth-card > p {
  max-width: 260px;
  margin: auto 0 0;
  color: #777780;
  font-size: 13px;
  line-height: 1.55;
}

.growth-card-primary > p {
  color: rgba(255, 255, 255, 0.7);
}

.micro-chart {
  height: 82px;
  margin-top: 38px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.micro-chart i {
  flex: 1;
  min-width: 8px;
  border-radius: 999px;
  background: linear-gradient(#c2f3ff, #44a6ff);
  opacity: 0.88;
}

.metric-orbit {
  width: 160px;
  height: 160px;
  position: absolute;
  right: -38px;
  bottom: -42px;
  border: 1px solid #d9d9df;
  border-radius: 50%;
}

.metric-orbit::before,
.metric-orbit::after {
  content: "";
  position: absolute;
  inset: 23px;
  border: 1px solid #e6e6ea;
  border-radius: 50%;
}

.metric-orbit::after {
  inset: 50px;
  background: #0a0a0d;
  box-shadow: 0 0 0 10px #fff;
}

.metric-ring {
  --value: 29;
  width: 142px;
  height: 142px;
  position: absolute;
  right: -23px;
  bottom: -27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#0071e3 calc(var(--value) * 1%), #ededf0 0);
}

.metric-ring span {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #fff;
}

.signal-lines {
  width: 150px;
  height: 110px;
  position: absolute;
  right: -18px;
  bottom: -10px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  transform: rotate(-8deg);
}

.signal-lines i {
  width: 20px;
  border-radius: 999px 999px 0 0;
  background: #0a0a0d;
}

.signal-lines i:nth-child(1) { height: 30%; opacity: 0.22; }
.signal-lines i:nth-child(2) { height: 53%; opacity: 0.38; }
.signal-lines i:nth-child(3) { height: 72%; opacity: 0.66; }
.signal-lines i:nth-child(4) { height: 100%; }

.flagship {
  padding-block: 35px 130px;
}

.flagship-card {
  width: 100%;
  min-height: 680px;
  padding: 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xl);
  background: #050507;
  color: #fff;
  text-align: left;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.flagship-copy {
  padding: clamp(42px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.kicker-light {
  color: rgba(255, 255, 255, 0.54);
}

.flagship-copy h2 {
  margin: 0;
  font-size: clamp(65px, 7vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.flagship-description {
  max-width: 490px;
  margin: 28px 0 28px;
  color: #fff;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.flagship-metrics {
  width: 100%;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.flagship-metrics span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.flagship-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 23px;
  letter-spacing: -0.04em;
  text-transform: none;
}

.open-story {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}

.open-story b {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 17px;
}

.flagship-media {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: #111116;
}

.flagship-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050507 0, transparent 18%, transparent 90%, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}



.flagship-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  background: transparent;
}

.work-section {
  scroll-margin-top: 90px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.project-card {
  min-height: 570px;
  padding: 10px;
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  text-align: left;
  cursor: pointer;
  transition: transform 400ms cubic-bezier(.2, .8, .2, 1), box-shadow 400ms ease;
}

.project-card:nth-child(5n + 1),
.project-card:nth-child(5n + 4) {
  grid-column: span 7;
}

.project-card:nth-child(5n + 2),
.project-card:nth-child(5n + 5) {
  grid-column: span 5;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.13);
}

.project-media {
  min-height: 330px;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.16)),
    var(--project-color, #17171c);
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.project-media-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.23);
  color: #fff;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
}

.image-dots {
  position: absolute;
  right: 16px;
  bottom: 15px;
  z-index: 2;
  display: flex;
  gap: 5px;
}

.image-dots i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.image-dots i.is-active {
  width: 18px;
  background: #fff;
}

.project-info {
  padding: 23px 17px 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.project-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.project-heading h3 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 51px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.project-heading span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #0a0a0d;
  color: #fff;
  transition: transform 250ms ease;
}

.project-card:hover .project-heading span {
  transform: rotate(45deg);
}

.project-info > p {
  max-width: 600px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.project-footer {
  margin-top: auto;
  padding-top: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #777780;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-stack-mini {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.project-stack-mini span {
  padding: 7px 8px;
  border-radius: 999px;
  background: #f0f0f3;
  color: #55555d;
  white-space: nowrap;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 18px;
}

.capability-card {
  min-height: 520px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #fff;
}

.capability-card.dark {
  background: #08080b;
}

.capability-card.blue {
  color: #07101c;
  background: linear-gradient(145deg, #eaf5ff, #70c2ff);
}

.capability-card.warm {
  color: #1b0c05;
  background: linear-gradient(145deg, #fff2df, #ffb878);
}

.capability-number {
  color: currentColor;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.capability-card h3 {
  margin: 40px 0 0;
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.capability-card p {
  max-width: 440px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.6;
}

.capability-card.blue p,
.capability-card.warm p {
  color: rgba(7, 16, 28, 0.63);
}

.capability-visual {
  position: absolute;
  inset: auto 0 0;
  height: 210px;
}

.agent-visual i {
  width: 66px;
  height: 66px;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.04);
}

.agent-visual i:nth-child(1) { left: 8%; bottom: 30px; }
.agent-visual i:nth-child(2) { left: 35%; bottom: 105px; }
.agent-visual i:nth-child(3) { right: 25%; bottom: 25px; }
.agent-visual i:nth-child(4) { right: 7%; bottom: 118px; }

.agent-visual b {
  width: 190px;
  height: 190px;
  position: absolute;
  left: 42%;
  bottom: -95px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 30%, #b8ff5b, #23c86a 45%, #09120d 75%);
  box-shadow: 0 0 80px rgba(92, 255, 121, 0.3);
}

.stack-visual i {
  width: 64%;
  height: 100px;
  position: absolute;
  left: 18%;
  border: 1px solid rgba(7, 16, 28, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 45px rgba(21, 91, 146, 0.13);
}

.stack-visual i:nth-child(1) { bottom: -45px; }
.stack-visual i:nth-child(2) { bottom: 5px; transform: scale(0.88); opacity: 0.78; }
.stack-visual i:nth-child(3) { bottom: 54px; transform: scale(0.72); opacity: 0.54; }

.interface-visual i {
  position: absolute;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 40px rgba(136, 55, 5, 0.15);
}

.interface-visual i:nth-child(1) { width: 42%; height: 150px; left: 8%; bottom: -25px; }
.interface-visual i:nth-child(2) { width: 38%; height: 105px; right: 8%; bottom: 65px; }
.interface-visual i:nth-child(3) { width: 26%; height: 65px; left: 38%; bottom: 18px; background: #1b0c05; }

.founder-journey,
.sector-section,
.engineering-section,
.recognition,
.vision-section {
  padding-block: 40px 130px;
}

.journey-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.journey-track::-webkit-scrollbar {
  display: none;
}

.journey-card {
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  appearance: none;
  text-align: left;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 113, 227, 0.18), transparent 25%),
    radial-gradient(circle at 14% 88%, rgba(184, 255, 91, 0.24), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 241, 247, 0.94));
  box-shadow: var(--shadow-soft);
  color: inherit;
  transition: transform 300ms cubic-bezier(.2, .8, .2, 1), box-shadow 300ms ease, border-color 300ms ease;
}

.journey-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 113, 227, 0.24);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
}

.journey-card::before {
  content: "";
  position: absolute;
  inset: auto 28px 112px 28px;
  height: 1px;
  background: linear-gradient(90deg, #0a0a0d, rgba(184, 255, 91, 0.65), transparent);
}

.journey-card::after {
  content: "";
  width: 132px;
  height: 132px;
  position: absolute;
  right: -42px;
  bottom: -42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 113, 227, 0.14);
  background: conic-gradient(from 130deg, rgba(0, 113, 227, 0.18), rgba(184, 255, 91, 0.28), transparent 62%);
  box-shadow: inset 0 0 0 22px rgba(255, 255, 255, 0.36);
}

.journey-card span {
  color: #111116;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-card h3 {
  max-width: 270px;
  margin: auto 0 0;
  font-size: 35px;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.journey-card p {
  margin: 17px 0 0;
  color: #66666e;
  font-size: 14px;
  line-height: 1.55;
}

.sector-grid,
.architecture-grid,
.recognition-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sector-card,
.architecture-card,
.recognition-tile {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(184, 255, 91, 0.17), transparent 26%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 280ms cubic-bezier(.2, .8, .2, 1), box-shadow 280ms ease;
}

.sector-card:hover,
.architecture-card:hover,
.recognition-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.11);
}

.sector-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(0, 113, 227, 0.18), transparent 25%),
    radial-gradient(circle at 8% 92%, rgba(184, 255, 91, 0.24), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 242, 248, 0.94));
}

.sector-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 86px;
  height: 86px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(11, 11, 15, 0.08), transparent 56%),
    rgba(255, 255, 255, 0.58);
  transform: rotate(12deg);
  transition: transform 300ms ease;
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0071e3, #b8ff5b);
  opacity: 0.72;
}

.sector-card:hover::after {
  transform: rotate(18deg) scale(1.08);
}

.sector-card > *,
.recognition-tile > * {
  position: relative;
  z-index: 1;
}

.sector-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.32), transparent 28%),
    #0a0a0d;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.sector-card strong,
.architecture-card strong,
.recognition-tile strong {
  display: block;
  margin-top: 56px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.sector-card small,
.architecture-card span,
.recognition-tile p {
  display: block;
  margin-top: 12px;
  color: #777780;
  font-size: 12px;
  line-height: 1.5;
}

.architecture-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    var(--project-color, #0a0a0d);
}

.architecture-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.architecture-card strong {
  margin-top: 38px;
  color: #fff;
}

.architecture-mini {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.architecture-mini i {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.tech-universe {
  min-height: 610px;
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #07070b;
  color: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.18);
}

.tech-orbits,
.tech-orbits i {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.tech-orbits i:nth-child(1) { inset: 14%; }
.tech-orbits i:nth-child(2) { inset: 26%; }
.tech-orbits i:nth-child(3) { inset: 39%; background: radial-gradient(circle, rgba(0, 113, 227, 0.7), transparent 64%); }

.tech-node {
  width: 160px;
  min-height: 80px;
  padding: 14px;
  position: absolute;
  left: calc(50% + cos((var(--i) * 32.72deg)) * 34%);
  top: calc(50% + sin((var(--i) * 32.72deg)) * 34%);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.tech-node span {
  display: block;
  font-size: 14px;
  font-weight: 760;
}

.tech-node small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  line-height: 1.35;
}

.recognition-tile {
  position: relative;
  overflow: hidden;
}

.recognition-tile::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a0a0d, #b8ff5b);
  opacity: 0.82;
}

.recognition-tile span {
  color: #111116;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.recognition-tile strong {
  margin-top: 42px;
}

.vision-panel {
  min-height: 680px;
  padding: clamp(46px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 78% 16%, rgba(184, 255, 91, 0.34), transparent 24%),
    radial-gradient(circle at 15% 24%, rgba(0, 113, 227, 0.74), transparent 30%),
    #08080b;
  color: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

.vision-panel h2 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(54px, 7.4vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.vision-panel > p:not(.kicker) {
  max-width: 740px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
  line-height: 1.55;
}

.vision-grid {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vision-grid button,
.story-end button {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.research {
  padding-block: 20px 150px;
  scroll-margin-top: 90px;
}

.research-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 83% 12%, rgba(58, 74, 171, 0.4), transparent 28%),
    #07070b;
  color: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

.research-image {
  min-height: 720px;
  padding: 52px 0 0 52px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.research-image img {
  width: min(100%, 510px);
  transform: translateY(85px) rotate(-3deg);
  border-radius: 6px 6px 0 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.research-copy {
  padding: clamp(52px, 8vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.research-copy h2 {
  max-width: 700px;
  margin: 0;
  font-family: ui-serif, "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(57px, 7vw, 110px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.research-subtitle {
  color: #9fa9ff !important;
  font-size: 16px !important;
  font-weight: 650;
}

.research-copy > p:not(.kicker) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.65;
}

.research-toggle {
  min-height: 56px;
  margin-top: 32px;
  padding: 0 10px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #08080b;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.research-toggle span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a0a0d;
  color: #fff;
  font-size: 23px;
  font-weight: 300;
  transition: transform 250ms ease;
}

.research-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.research-more {
  grid-column: 1 / -1;
  padding: 0 52px 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.research-more[hidden] {
  display: none;
}

.research-more article {
  min-height: 230px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.research-more article span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 750;
}

.research-more article h3 {
  margin: 48px 0 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.research-more article p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.6;
}

.inline-story-button {
  grid-column: 1 / -1;
  min-height: 72px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 24px;
  background: #fff;
  color: #09090c;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.writing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.writing-column {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.column-title {
  padding-bottom: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #777780;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.story-list {
  display: grid;
}

.story-row {
  width: 100%;
  padding: 21px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.story-row:last-child {
  border-bottom: 0;
}

.story-row-copy {
  display: grid;
  gap: 7px;
}

.story-row-copy strong {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.story-row-copy span {
  color: #777780;
  font-size: 12px;
  line-height: 1.5;
}

.story-row-meta {
  display: flex;
  align-items: center;
  gap: 13px;
}

.story-row-meta small {
  padding: 7px 9px;
  border-radius: 999px;
  background: #f0f0f3;
  color: #55555d;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-row-meta b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a0a0d;
  color: #fff;
  font-size: 14px;
  transition: transform 220ms ease;
}

.story-row:hover .story-row-meta b {
  transform: rotate(45deg);
}

.stack-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.stack-cloud {
  display: grid;
  gap: 12px;
}

.stack-group {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.stack-group strong {
  display: block;
  margin-bottom: 11px;
  color: #111116;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stack-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-cloud span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #43434a;
  font-size: 13px;
  font-weight: 680;
  box-shadow: 0 8px 23px rgba(0, 0, 0, 0.03);
}

.stack-cloud span:nth-child(4n + 1) {
  background: #f4f4f7;
  color: #34343b;
}

.stack-cloud span:nth-child(7n + 2) {
  background: var(--blue-light);
  color: #0056ad;
}

.contact-card {
  min-height: 560px;
  padding: clamp(52px, 8vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 119, 255, 0.9), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(184, 255, 91, 0.42), transparent 25%),
    #07070a;
  color: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

.contact-card::after {
  content: "";
  width: 450px;
  height: 450px;
  position: absolute;
  right: -80px;
  bottom: -180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.035), 0 0 0 100px rgba(255, 255, 255, 0.025);
}

.contact-card h2 {
  max-width: 960px;
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: clamp(58px, 7.6vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.contact-card > p:not(.kicker) {
  max-width: 700px;
  margin: 28px 0 0;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  line-height: 1.55;
}

.contact-links {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.contact-links a {
  min-height: 52px;
  padding: 0 17px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.site-footer {
  padding-block: 0 45px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #777780;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-dialog {
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--page);
  color: var(--ink);
}

.story-dialog[open] {
  animation: story-in 420ms cubic-bezier(.2, .8, .2, 1);
}

.story-dialog::backdrop {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

@keyframes story-in {
  from { opacity: 0; transform: translateY(35px) scale(0.985); }
}

.story-page {
  min-height: 100%;
  background: var(--page);
}

.story-nav {
  min-height: 46px;
  padding: 5px max(18px, calc((100vw - 1380px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(11, 11, 15, 0.07);
  background: rgba(245, 245, 247, 0.84);
  backdrop-filter: blur(25px);
}

.story-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
}

.story-brand .brand-mark {
  width: 28px;
  height: 28px;
  font-size: 10px;
}

.story-close {
  min-height: 32px;
  padding: 0 5px 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.story-close span {
  font-size: 11px;
  font-weight: 750;
}

.story-close b {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a0a0d;
  color: #fff;
  font-size: 21px;
  font-weight: 300;
}

.story-hero {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  min-height: min(720px, calc(100dvh - 46px));
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #09090c;
  color: #fff;
  isolation: isolate;
}

.story-hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 5vw, 58px);
}

.story-hero-frame {
  width: 100%;
  height: min(62dvh, 620px);
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: #09090c;
}

.story-hero-image {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  opacity: 1;
  background: transparent;
  z-index: auto;
}

.story-hero::after {
  display: none;
}

.story-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(68px, 9vw, 150px);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.story-hero-content > p:last-of-type {
  max-width: 750px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.story-hero-metrics {
  max-width: 860px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.story-hero-metrics span {
  min-height: 105px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  border-radius: 24px;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.story-hero-metrics strong {
  color: #000;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: none;
}

.story-scroll-indicator {
  position: absolute;
  right: clamp(28px, 6vw, 80px);
  bottom: clamp(24px, 4vw, 52px);
  z-index: 1;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-body {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 140px;
}

.story-actions {
  margin-bottom: 54px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-actions button,
.story-action-link {
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #303037;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.story-actions button:hover,
.story-action-link:hover {
  transform: translateY(-2px);
  background: #0a0a0d;
  color: #fff;
}

.story-action-link-dark {
  background: #0a0a0d;
  color: #fff;
}

.story-demo-pill {
  background: linear-gradient(135deg, #0071e3, #0a0a0d);
  color: #fff;
  border-color: transparent;
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 95px;
}

.story-metric {
  min-height: 190px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.story-metric strong {
  font-size: clamp(38px, 4.7vw, 67px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.story-metric span {
  color: #777780;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-metric i {
  height: 4px;
  width: var(--value, 58%);
  position: absolute;
  left: 27px;
  right: 27px;
  bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0071e3, #b8ff5b);
}

.story-block {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(40px, 8vw, 120px);
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.story-block-label {
  color: #777780;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-block-content h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.story-block-content p {
  max-width: 800px;
  margin: 24px 0 0;
  color: #62626a;
  font-size: 18px;
  line-height: 1.68;
  letter-spacing: -0.015em;
}

.story-block.compact {
  padding-bottom: 38px;
}

.problem-visual {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.problem-visual span {
  min-height: 52px;
  padding: 0 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #393940;
  font-size: 12px;
  font-weight: 760;
}

.problem-visual i {
  width: 42px;
  height: 1px;
  background: #b9b9c0;
}

.solution-map,
.technical-challenges,
.lessons-grid,
.roadmap-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 85px;
}

.solution-map article,
.technical-challenges article,
.lessons-grid article,
.roadmap-section article,
.doc-grid article {
  min-height: 230px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.solution-map span,
.technical-challenges span,
.lessons-grid span,
.roadmap-section span,
.doc-grid span {
  color: #0071e3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.solution-map strong,
.technical-challenges h3,
.roadmap-section span {
  display: block;
  margin-top: 48px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.solution-map p,
.technical-challenges p,
.lessons-grid p,
.roadmap-section p,
.doc-grid p {
  margin: 14px 0 0;
  color: #696970;
  font-size: 13px;
  line-height: 1.55;
}

.technical-challenges strong {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #0a0a0d;
  color: #fff;
  font-size: 10px;
  font-weight: 760;
}

.feature-list {
  margin: 33px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.feature-list li {
  min-height: 76px;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: #3f3f46;
  font-size: 13px;
  line-height: 1.45;
}

.feature-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #0a0a0d;
  color: #fff;
  font-size: 12px;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 95px;
}

.story-demo {
  margin: 0 0 95px;
  padding: clamp(26px, 4vw, 42px);
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.story-demo h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.story-demo iframe {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 24px;
  background: #09090c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.story-gallery figure {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border-radius: 30px;
  background: #111116;
}

.story-gallery button {
  width: 100%;
  height: 100%;
  padding: 0;
  display: block;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.story-gallery figure:first-child:nth-last-child(odd) {
  grid-column: 1 / -1;
}

.story-gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  padding: 0;
  background: transparent;
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.story-gallery button:hover img {
  transform: scale(1.025);
}

.story-proof {
  margin: 0 0 95px;
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 55px;
  border-radius: 38px;
  background: #0b0b0f;
  color: #fff;
}

.story-proof-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.story-proof-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.6;
}

.story-proof-image {
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 28px;
  background: #202126;
}

.story-proof-image img {
  max-height: 580px;
  width: auto;
  border-radius: 15px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.architecture-showcase {
  margin-bottom: 95px;
}

.diagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.architecture-diagram {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.architecture-diagram strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.architecture-diagram div {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.architecture-diagram span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #f1f1f4;
  color: #4a4a52;
  font-size: 11px;
  font-weight: 760;
}

.agent-flow-section,
.documentation-system,
.impact-section {
  margin-bottom: 95px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 36px;
  background: #09090c;
  color: #fff;
}

.agent-flow-section h2,
.documentation-system h2,
.impact-section h2 {
  max-width: 850px;
  margin: 14px 0 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.agent-flow {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.agent-flow span {
  min-width: 132px;
  min-height: 68px;
  padding: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.agent-flow i {
  width: 30px;
  height: 1px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.28);
}

.story-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.story-stack span {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #45454d;
  font-size: 12px;
  font-weight: 680;
}

.interactive-stack button {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #45454d;
  font-size: 12px;
  font-weight: 680;
  cursor: pointer;
}

.documentation-system {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  background: #fdfdfd;
  color: var(--ink);
  border: 1px solid var(--line);
}

.doc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.doc-grid article {
  min-height: 150px;
  box-shadow: none;
  background: #f5f5f7;
}

.doc-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.build-timeline {
  margin-bottom: 95px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.build-timeline article {
  min-height: 160px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.build-timeline span {
  color: #8a8a91;
  font-size: 10px;
  font-weight: 800;
}

.build-timeline strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.lessons-grid {
  grid-template-columns: repeat(4, 1fr);
}

.lessons-grid article {
  min-height: 250px;
}

.impact-section p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.58;
}

.roadmap-section {
  margin-bottom: 85px;
}

.roadmap-section span {
  color: #0a0a0d;
  text-transform: none;
}

.story-end {
  margin-top: 65px;
  padding: 55px;
  border-radius: 36px;
  background: #09090c;
  color: #fff;
}

.story-end p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-end h2 {
  max-width: 900px;
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.story-end button {
  margin-top: 28px;
}

.insight-dialog,
.image-viewer {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(245, 245, 247, 0.96);
  color: var(--ink);
}

.insight-dialog::backdrop,
.image-viewer::backdrop {
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
}

.insight-page {
  min-height: 100%;
  padding: 24px max(24px, calc((100vw - 1180px) / 2)) 80px;
  position: relative;
}

.insight-close {
  position: sticky;
  top: 18px;
  left: 100%;
  z-index: 3;
  margin-left: auto;
}

.insight-hero {
  padding: clamp(44px, 8vw, 94px) 0 40px;
}

.insight-hero h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(52px, 7vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.insight-hero p:last-child {
  max-width: 790px;
  margin: 24px 0 0;
  color: #65656d;
  font-size: 18px;
  line-height: 1.6;
}

.metric-dashboard {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
}

.metric-dashboard-main,
.metric-proof-image {
  min-height: 560px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.metric-dashboard-main span {
  color: #777780;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-dashboard-main strong {
  display: block;
  margin-top: 70px;
  font-size: clamp(78px, 10vw, 150px);
  line-height: 0.82;
  letter-spacing: -0.085em;
}

.insight-chart {
  height: 190px;
  margin-top: 80px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.insight-chart i {
  flex: 1;
  min-width: 10px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(#44a6ff, #0a0a0d);
}

.metric-proof-image {
  display: grid;
  place-items: center;
  background: #111116;
}

.metric-proof-image img {
  max-height: 100%;
  width: auto;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.metric-proof-abstract {
  color: #fff;
  text-align: center;
}

.metric-proof-abstract strong {
  font-size: 82px;
  letter-spacing: -0.07em;
}

.sector-explorer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sector-project-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.sector-project-cards button {
  min-height: 430px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  text-align: left;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.sector-project-cards img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  padding: 0;
  border-radius: 24px;
  background: var(--project-color, #0a0a0d);
}

.sector-project-cards span {
  margin: 18px 12px 0;
  color: #777780;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sector-project-cards strong {
  margin: 8px 12px 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.sector-project-cards p {
  margin: 12px 12px 0;
  color: #66666e;
  font-size: 13px;
  line-height: 1.5;
}

.sector-project-cards small {
  width: fit-content;
  margin: auto 12px 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #0a0a0d;
  color: #fff;
  font-size: 10px;
  font-weight: 760;
}

.sector-explorer-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.sector-explorer-grid article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a0a0d;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.sector-explorer-grid h3 {
  margin: 48px 0 0;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.sector-explorer-grid p {
  margin: 12px 0 0;
  color: #686870;
  font-size: 13px;
  line-height: 1.55;
}

.sector-explorer-grid div {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sector-explorer-grid button {
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  background: #f0f0f3;
  color: #3c3c43;
  font-size: 10px;
  font-weight: 760;
  cursor: pointer;
}

.architecture-viewer {
  display: grid;
  gap: 14px;
}

.architecture-viewer > button {
  width: fit-content;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #55555d;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.architecture-viewer > button.is-active {
  background: #0a0a0d;
  color: #fff;
}

.architecture-canvas {
  min-height: 620px;
  padding: clamp(26px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
  gap: 12px;
  border-radius: 40px;
  background: #08080b;
  color: #fff;
}

.architecture-canvas article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(calc((var(--index) % 2) * 34px));
}

.architecture-canvas span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 800;
}

.architecture-canvas strong {
  display: block;
  margin-top: 38px;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.architecture-canvas p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.image-viewer {
  background: rgba(5, 5, 7, 0.96);
}

.image-viewer-shell {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  padding: 72px 80px;
}

.image-viewer img {
  max-width: min(100%, 1320px);
  max-height: calc(100dvh - 160px);
  border-radius: 20px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.image-viewer-close,
.image-viewer-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.image-viewer-close {
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 28px;
  font-weight: 300;
}

.image-viewer-nav {
  width: 52px;
  height: 52px;
  top: 50%;
  font-size: 42px;
  line-height: 1;
}

.image-viewer-prev { left: 24px; }
.image-viewer-next { right: 24px; }

.image-viewer-caption {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
}

.assistant-orb {
  width: 68px;
  height: 68px;
  position: relative;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  box-shadow: none;
  cursor: pointer;
  overflow: visible;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.assistant-orb span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  box-shadow:
    inset 0 16px 22px rgba(255, 255, 255, 0.86),
    inset 0 -10px 30px rgba(0, 0, 50, 0.22),
    0 22px 60px rgba(37, 99, 235, 0.24);
}

.assistant-orb:hover {
  transform: translateY(-2px) scale(1.03);
}

.assistant-orb span::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 40% 40%, #ffffff 0%, #a5f3fc 25%, #3b82f6 55%, #1e3a8a 90%);
  animation: assistant-spin 8s linear infinite;
}

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

.assistant-orb b {
  position: relative;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.assistant-orb small {
  position: absolute;
  right: 0;
  bottom: calc(100% + 9px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #33333a;
  font-size: 10px;
  font-weight: 760;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  animation: wake-word-fade 6s ease-in-out infinite;
}

@keyframes wake-word-fade {
  0%, 35%, 100% { opacity: 0.92; transform: translateY(0); }
  48%, 86% { opacity: 0; transform: translateY(4px); }
}

.assistant-panel {
  width: min(430px, calc(100vw - 28px));
  min-height: 620px;
  max-height: min(760px, calc(100dvh - 112px));
  margin-bottom: 14px;
  padding: 18px;
  position: absolute;
  right: 0;
  bottom: 76px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 34%, rgba(59, 130, 246, 0.11), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(184, 255, 91, 0.1), transparent 30%),
    rgba(250, 250, 252, 0.95);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(26px);
  overflow: hidden;
}

.assistant-panel[hidden] {
  display: none;
}

.assistant-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.assistant-top strong,
.assistant-top span {
  display: block;
}

.assistant-top strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.assistant-top span {
  margin-top: 2px;
  color: #777780;
  font-size: 11px;
  font-weight: 650;
}

.assistant-top button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #0a0a0d;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
}

.assistant-core {
  flex: 1;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.assistant-core p {
  width: 100%;
  min-height: 58px;
  max-height: 82px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #2d2d33;
  font-size: 18px;
  font-weight: 640;
  line-height: 1.42;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
}

.assistant-sphere {
  width: 196px;
  height: 196px;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  box-shadow:
    inset 0 22px 34px rgba(255, 255, 255, 0.86),
    inset 0 -16px 45px rgba(0, 0, 50, 0.22),
    0 30px 70px rgba(37, 99, 235, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.assistant-sphere span {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 40% 40%, #ffffff 0%, #a5f3fc 25%, #3b82f6 55%, #1e3a8a 90%);
  animation: assistant-spin 8s linear infinite;
}

.assistant-sphere::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.38);
  opacity: 0;
  pointer-events: none;
}

.assistant-panel[data-state="listening"] .assistant-sphere {
  box-shadow:
    inset 0 22px 34px rgba(255, 255, 255, 0.72),
    inset 0 -16px 45px rgba(0, 0, 0, 0.22),
    0 0 0 12px rgba(59, 130, 246, 0.1),
    0 34px 80px rgba(0, 0, 0, 0.18);
}

.assistant-panel[data-state="listening"] .assistant-sphere::before {
  opacity: 1;
  animation: assistant-ripple 1.5s cubic-bezier(.2, .8, .4, 1) infinite;
}

.assistant-panel[data-state="listening"] .assistant-sphere span {
  animation-duration: 4s;
  filter: brightness(1.1);
}

.assistant-panel[data-state="processing"] .assistant-sphere span {
  animation-duration: 1.5s;
}

.assistant-panel[data-state="speaking"] .assistant-sphere {
  transform: scale(1.02);
  box-shadow:
    inset 0 22px 34px rgba(255, 255, 255, 0.86),
    inset 0 -16px 45px rgba(0, 0, 50, 0.22),
    0 0 52px rgba(59, 130, 246, 0.34),
    0 30px 70px rgba(37, 99, 235, 0.2);
}

.assistant-panel[data-state="speaking"] .assistant-sphere span {
  animation-duration: 6s;
  filter: brightness(1.18);
}

@keyframes assistant-ripple {
  0% { transform: scale(1); opacity: 0.8; border-width: 4px; }
  100% { transform: scale(1.38); opacity: 0; border-width: 1px; }
}

.assistant-suggestions {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.assistant-suggestions::-webkit-scrollbar {
  display: none;
}

.assistant-suggestions button {
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #45454d;
  font-size: 11px;
  font-weight: 720;
  cursor: pointer;
  white-space: nowrap;
}

.assistant-contact-pills {
  display: flex;
  gap: 8px;
  padding: 3px;
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(231, 242, 255, 0.78)),
    rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 35px rgba(0, 113, 227, 0.1);
}

.assistant-contact-pills[hidden] {
  display: none;
}

.assistant-contact-pills a {
  min-height: 38px;
  flex: 1;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: #0a0a0d;
  color: #fff;
  font-size: 12px;
  font-weight: 760;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.assistant-contact-pills a:last-child {
  background: #0071e3;
}

.assistant-contact-pills span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 800;
}

.assistant-form {
  margin-top: auto;
  padding: 6px;
  display: flex;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  transform: translate3d(0, 0, 0);
}

.assistant-form input {
  appearance: none;
  -webkit-appearance: none;
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 9px 0 13px;
  border-radius: 999px;
  color: #111116;
  font-size: 14px;
  background: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.assistant-form button {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: #0a0a0d;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.assistant-form button:disabled {
  background: #ececf0;
  color: #9b9ba3;
  cursor: default;
}

.noscript {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 1000;
  padding: 14px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

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

  .hero-copy {
    max-width: 900px;
  }

  .hero-stage {
    width: min(100%, 820px);
    margin-inline: auto;
  }

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

  .flagship-card {
    grid-template-columns: 1fr;
  }

  .flagship-media {
    min-height: 560px;
    order: -1;
  }

  .flagship-media::after {
    background: linear-gradient(180deg, transparent 70%, #050507);
  }

  .flagship-copy {
    min-height: 520px;
  }

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

  .capability-card:first-child {
    grid-column: 1 / -1;
  }

  .research-card {
    grid-template-columns: 1fr 1fr;
  }

  .sector-grid,
  .architecture-grid,
  .recognition-wall,
  .sector-explorer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-dashboard,
  .documentation-system {
    grid-template-columns: 1fr;
  }

  .build-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .section-shell,
  .nav-shell,
  .story-hero,
  .story-body {
    width: min(100% - 28px, 1380px);
  }

  .brand-copy small,
  .nav-contact {
    display: none;
  }

  .hero {
    padding-block: 55px 90px;
  }

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

  .hero-stage {
    min-height: 590px;
  }

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

  .stat {
    min-height: 135px;
  }

  .heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-card,
  .project-card:nth-child(5n + 1),
  .project-card:nth-child(5n + 2),
  .project-card:nth-child(5n + 4),
  .project-card:nth-child(5n + 5) {
    grid-column: span 12;
  }

  .capability-grid,
  .writing-grid,
  .stack-section {
    grid-template-columns: 1fr;
  }

  .capability-card:first-child {
    grid-column: auto;
  }

  .research-card {
    grid-template-columns: 1fr;
  }

  .research-image {
    min-height: 560px;
    padding: 45px 45px 0;
    justify-content: center;
  }

  .research-copy {
    padding-top: 35px;
  }

  .research-more {
    grid-template-columns: 1fr;
  }

  .story-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .story-proof {
    grid-template-columns: 1fr;
  }

  .sector-grid,
  .architecture-grid,
  .recognition-wall,
  .sector-explorer-grid,
  .sector-project-cards,
  .diagram-grid,
  .solution-map,
  .technical-challenges,
  .roadmap-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lessons-grid,
  .architecture-canvas {
    grid-template-columns: 1fr 1fr;
  }

  .tech-universe {
    min-height: auto;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .tech-orbits {
    display: none;
  }

  .tech-node {
    width: auto;
    min-height: 94px;
    position: static;
    transform: none;
  }
}

@media (max-width: 620px) {
  :root {
    --radius-xl: 32px;
    --radius-lg: 26px;
  }

  .site-header {
    padding-top: 8px;
  }

  .nav-shell {
    min-height: 58px;
    padding: 7px 7px 7px 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 43px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(55px, 18vw, 78px);
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 17px;
  }

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

  .primary-button,
  .text-button {
    width: 100%;
  }

  .hero-stage {
    min-height: 430px;
  }

  .hero-product {
    border-radius: 27px;
    transform: none;
  }

  .hero-rotator {
    border-radius: 20px;
  }

  .hero-product-copy {
    padding: 18px 14px 15px;
  }

  .floating-chip {
    min-width: 140px;
    padding: 11px 13px;
  }

  .floating-chip span {
    font-size: 18px;
  }

  .chip-one {
    left: -2%;
    bottom: 4%;
  }

  .chip-two {
    right: -1%;
    top: 10%;
  }

  .stats {
    margin-bottom: 85px;
    border-radius: 25px;
  }

  .stat {
    min-height: 122px;
    padding: 17px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .stat svg {
    width: 22px;
    height: 22px;
  }

  .stat-value {
    font-size: 34px;
  }

  .section-heading h2,
  .stack-intro h2 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .section-heading > p:last-child,
  .heading-row > p,
  .stack-intro > p:last-child {
    font-size: 15px;
  }

  .growth,
  .work-section,
  .capabilities,
  .writing,
  .stack-section,
  .contact,
  .founder-journey,
  .sector-section,
  .engineering-section,
  .recognition,
  .vision-section {
    padding-bottom: 90px;
  }

  .journey-track {
    grid-auto-columns: minmax(270px, 86vw);
  }

  .journey-card {
    min-height: 300px;
  }

  .sector-grid,
  .architecture-grid,
  .recognition-wall,
  .sector-explorer-grid,
  .sector-project-cards,
  .diagram-grid,
  .solution-map,
  .technical-challenges,
  .roadmap-section,
  .lessons-grid,
  .architecture-canvas,
  .metric-dashboard,
  .tech-universe {
    grid-template-columns: 1fr;
  }

  .sector-card,
  .architecture-card,
  .recognition-tile {
    min-height: 220px;
    border-radius: 26px;
  }

  .vision-panel {
    min-height: 620px;
    padding: 40px 28px;
  }

  .vision-panel h2 {
    font-size: 54px;
  }

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

  .growth-card {
    min-height: 330px;
  }

  .flagship {
    padding-bottom: 90px;
  }

  .flagship-media {
    min-height: 380px;
  }

  .flagship-copy {
    min-height: auto;
    padding: 33px 27px;
  }

  .flagship-copy h2 {
    font-size: 64px;
  }

  .flagship-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
  }

  .project-card {
    min-height: 500px;
    border-radius: 29px;
  }

  .project-media {
    min-height: 250px;
    border-radius: 22px;
  }

  .project-heading h3 {
    font-size: 37px;
  }

  .project-stack-mini span:nth-child(n + 3) {
    display: none;
  }

  .capability-card {
    min-height: 470px;
    padding: 27px;
  }

  .research {
    padding-bottom: 90px;
  }

  .research-image {
    min-height: 410px;
    padding: 35px 28px 0;
  }

  .research-image img {
    transform: translateY(65px) rotate(-2deg);
  }

  .research-copy {
    padding: 39px 28px 45px;
  }

  .research-copy h2 {
    font-size: 55px;
  }

  .research-more {
    padding: 0 20px 20px;
  }

  .writing-column {
    padding: 20px;
    border-radius: 28px;
  }

  .story-row {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .story-row-meta {
    justify-content: space-between;
  }

  .contact-card {
    min-height: 530px;
    padding: 40px 28px;
  }

  .contact-card h2 {
    font-size: 58px;
  }

  .contact-links {
    width: 100%;
    flex-direction: column;
  }

  .contact-links a {
    justify-content: space-between;
  }

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

  .story-nav {
    padding-inline: 14px;
  }

  .story-brand > span:last-child,
  .story-close > span {
    display: none;
  }

  .story-hero {
    min-height: 610px;
    padding: 0;
    background: #ffffff;
    color: #000000;
  }

  .story-hero-frame {
    height: 360px;
    min-height: 300px;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
  }

  .story-hero-content {
    padding: 28px 24px 34px;
    background: #ffffff;
  }

  .story-kicker {
    color: #a1a1a6;
  }

  .story-hero h1 {
    font-size: clamp(48px, 16vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #000000;
  }

  .story-hero-content > p:last-of-type {
    font-size: 17px;
    color: #6e6e73;
  }

  .story-hero-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 10px;
  }

  .story-hero-metrics span {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    color: #000000;
  }

  .story-hero-metrics strong {
    color: #000000;
  }

  .story-actions {
    gap: 7px;
  }

  .story-actions button {
    flex: 1 1 calc(50% - 7px);
  }

  .story-dialog[open] {
    animation: story-in-spring 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #ffffff;
  }

  @keyframes story-in-spring {
    0% { opacity: 0; transform: translateY(40px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  .project-card:active {
    transform: scale(0.97);
    transition: transform 150ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .story-scroll-indicator {
    color: #a1a1a6;
  }

  .story-body {
    padding-top: 55px;
  }

  .story-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 60px;
  }

  .story-metric {
    min-height: 145px;
    padding: 20px 20px 36px;
  }

  .story-metric strong {
    font-size: 38px;
  }

  .story-metric span {
    padding-right: 4px;
    line-height: 1.35;
  }

  .story-metric i {
    left: 20px;
    right: 20px;
    bottom: 17px;
    max-width: calc(100% - 40px);
  }

  .story-block {
    padding: 55px 0;
  }

  .story-block-content h2 {
    font-size: 43px;
  }

  .story-block-content p {
    font-size: 16px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .story-gallery {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 60px;
  }

  .story-demo {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
    padding: 24px 0;
    border-radius: 28px;
  }

  .story-demo > div:first-child {
    padding: 0 24px;
  }

  .story-demo iframe {
    width: 100%;
    border-radius: 0;
  }

  .story-gallery figure,
  .story-gallery img {
    min-height: 240px;
    border-radius: 22px;
  }

  .story-gallery figure:first-child:nth-last-child(odd) {
    grid-column: auto;
  }

  .story-proof {
    margin-bottom: 60px;
    padding: 25px;
    gap: 28px;
    border-radius: 28px;
  }

  .story-end {
    padding: 35px 27px;
  }

  .problem-visual {
    align-items: stretch;
    flex-direction: column;
  }

  .problem-visual i {
    width: 1px;
    height: 24px;
    margin-inline: auto;
  }

  .architecture-diagram div {
    grid-template-columns: 1fr 1fr;
  }

  .build-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .agent-flow-section,
  .documentation-system,
  .impact-section {
    margin-bottom: 60px;
    padding: 26px;
    border-radius: 28px;
  }

  .insight-page {
    padding: 14px 14px 58px;
  }

  .metric-dashboard-main,
  .metric-proof-image {
    min-height: 390px;
    border-radius: 28px;
  }

  .architecture-canvas {
    min-height: auto;
    border-radius: 28px;
  }

  .architecture-canvas article {
    transform: none;
  }

  .image-viewer-shell {
    padding: 72px 14px;
  }

  .image-viewer-nav {
    width: 44px;
    height: 44px;
    top: auto;
    bottom: 24px;
  }

  .image-viewer-prev { left: 18px; }
  .image-viewer-next { right: 18px; }

  .image-viewer-caption {
    bottom: 82px;
    width: 100%;
    text-align: center;
  }

  .portfolio-assistant {
    right: 14px;
    bottom: 14px;
  }

  .assistant-panel {
    width: calc(100vw - 28px);
    max-height: calc(100dvh - 96px);
    min-height: min(610px, calc(100dvh - 96px));
    overflow-y: auto;
    transform: translate3d(0, 0, 0);
  }

  .assistant-core {
    min-height: 300px;
    gap: 20px;
  }

  .assistant-sphere {
    width: 166px;
    height: 166px;
  }

  .assistant-core p {
    min-height: 48px;
    max-height: 70px;
    font-size: 16px;
  }
}

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

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

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