@font-face {
  font-family: "Geist Sans";
  src: url("./fonts/GeistSans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("./fonts/GeistMono.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #050505;
  --bg-deep: #080808;
  --text: #f5f5f0;
  --muted: rgba(245, 245, 240, 0.64);
  --muted-strong: rgba(245, 245, 240, 0.84);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.22);
  --panel: rgba(9, 9, 9, 0.48);
  --panel-strong: rgba(8, 8, 8, 0.62);
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
  --font-ui: "Geist Sans";
  --font-mono: "Geist Mono";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-ui);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 45%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
}

.page-shell {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.video-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050505;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.55);
}

.video-wash,
.video-grid,
.video-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-wash {
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.28) 0%, rgba(4, 4, 4, 0.66) 42%, rgba(4, 4, 4, 0.92) 100%);
}

.video-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  opacity: 0.34;
}

.video-vignette {
  background:
    radial-gradient(circle at center, transparent 35%, rgba(0, 0, 0, 0.38) 72%, rgba(0, 0, 0, 0.72) 100%);
}

.hero,
.cards-section,
.transformation-section,
.footer {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.24), rgba(10, 10, 10, 0.13));
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px) saturate(106%);
}

.hero {
  min-height: 88vh;
  width: 100%;
  padding: 28px clamp(18px, 3vw, 40px) 42px;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 40;
  width: 100vw;
  padding: 1.22rem clamp(22px, 3.5vw, 48px);
  margin-bottom: 0;
  border: 1px solid transparent;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
  transition:
    top 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.top-nav.is-scrolled {
  top: 18px;
  width: min(calc(100vw - 3rem), 68rem);
  padding: 0.78rem 1.3rem;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: rgba(10, 10, 10, 0.55);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark-logo,
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark img {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
  transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-mark span {
  color: var(--text);
  font-size: 1.62rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  transition: font-size 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-toggle,
.mobile-menu-close {
  appearance: none;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  list-style: none;
  cursor: pointer;
}

.mobile-menu-toggle span,
.mobile-menu-close span {
  display: block;
  width: 15px;
  height: 1px;
  margin: 0 auto;
  background: rgba(245, 245, 240, 0.86);
}

.mobile-menu-toggle span:nth-child(1) {
  width: 20px;
  transform: translateX(1px);
}

.mobile-menu-toggle span:nth-child(2) {
  width: 12px;
  transform: translateX(3px);
}

.mobile-menu-toggle span:nth-child(3) {
  display: none;
}

.mobile-menu-close {
  gap: 0;
}

.mobile-menu-close span:first-child {
  transform: translateY(0.5px) rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: translateY(-0.5px) rotate(-45deg);
}

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

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 4, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-menu-sheet {
  position: relative;
  min-height: 100%;
  padding: 1rem 1rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.94), rgba(6, 6, 6, 0.97));
  transform: translateY(16px);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-overlay.is-open .mobile-menu-sheet {
  transform: translateY(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: min(100%, 720px);
  padding: 0.15rem 0 1.6rem;
}

.mobile-menu-label {
  color: rgba(245, 245, 240, 0.55);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu-links {
  display: grid;
  width: min(100%, 720px);
  margin: 0 auto;
}

.mobile-menu-links a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 0.95rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  text-decoration: none;
  text-align: left;
}

.mobile-menu-links a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-index {
  color: rgba(245, 245, 240, 0.38);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu-copy {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.mobile-menu-title {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--text);
  font-size: clamp(1.15rem, 4vw, 1.45rem);
  font-weight: 520;
  letter-spacing: -0.03em;
}

.mobile-menu-meta {
  color: rgba(245, 245, 240, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.mobile-menu-links .social-icon {
  width: 15px;
  height: 15px;
  flex-basis: 15px;
}

.external-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  opacity: 0.58;
}

.mobile-menu-arrow {
  justify-self: end;
  opacity: 0.48;
}

.mobile-menu-links a:hover .mobile-menu-arrow {
  opacity: 0.78;
}

.external-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(245, 245, 240, 0.88);
  transition:
    border-color 200ms ease,
    background 200ms ease,
    transform 200ms ease,
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(252, 252, 248, 0.98);
}

.social-links a,
.social-links a:hover {
  text-decoration: none;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.social-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.social-icon svg path {
  fill: currentColor;
}

.top-nav.is-scrolled .brand-mark img {
  height: 38px;
}

.top-nav.is-scrolled .brand-mark span {
  font-size: 1.4rem;
}

.top-nav.is-scrolled .social-links a {
  min-width: 40px;
  width: 40px;
  height: 40px;
}

.top-nav.is-scrolled .social-icon {
  width: 15px;
  height: 15px;
  flex-basis: 15px;
}

.card-number {
  display: inline-block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  min-height: calc(88vh - 56px);
  width: min(100%, 1600px);
  margin: 0 auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 920px;
  min-height: calc(88vh - 140px);
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: left;
}

.hero h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(3.85rem, 9.9vw, 8.55rem);
  line-height: 0.88;
  letter-spacing: -0.09em;
  font-weight: 520;
  text-wrap: nowrap;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.hero-rotator-line {
  margin: 1rem 0 0;
  color: rgba(245, 245, 240, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
  min-height: 2.7em;
  max-width: none;
  text-align: left;
}

.hero-subheadline {
  display: inline-block;
  max-width: none;
  color: var(--text);
  font-family: var(--font-mono);
  white-space: nowrap;
  text-align: left;
  will-change: opacity, transform, filter;
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subheadline.is-leaving {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-12px) scale(0.985);
}

.hero-subheadline.is-entering {
  animation: subheadline-focus-in 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-body {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.04rem, 1.9vw, 1.22rem);
  line-height: 1.7;
}

.email-capture {
  --email-action-width: 198px;
  --email-row-gap: 0.8rem;
  width: min(100%, 760px);
  margin-top: 2rem;
}

.email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--email-row-gap);
}

.email-row input {
  min-height: 58px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  text-align: center;
  outline: none;
}

.email-row input::placeholder {
  color: rgba(245, 245, 240, 0.5);
  font-family: var(--font-mono);
  text-align: center;
}

.email-row input:focus {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.09);
}

.email-row button {
  min-width: var(--email-action-width);
  min-height: 58px;
  padding: 0 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #050505;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.email-row button:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.form-note a,
.footer-column a,
.legal-back {
  color: var(--text);
  text-decoration: none;
}

.form-note a:hover,
.footer-column a:hover,
.legal-back:hover {
  text-decoration: underline;
}

.form-note,
.form-status {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 44rem;
  text-align: left;
}

.form-status {
  color: var(--text);
  font-family: var(--font-mono);
  min-height: 1.6em;
}

.form-status.is-success {
  color: rgba(210, 255, 224, 0.92);
}

.form-status.is-error {
  color: rgba(255, 214, 214, 0.92);
}

.form-note {
  width: calc(100% - var(--email-action-width) - var(--email-row-gap));
  max-width: calc(100% - var(--email-action-width) - var(--email-row-gap));
  margin-left: 0;
  margin-right: auto;
  text-align: center;
}

.form-note-break {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cards-section {
  width: 100%;
  margin-top: 0;
  padding: 42px clamp(18px, 3vw, 40px);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.section-heading {
  width: min(100%, 1220px);
  margin: 0 auto 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  text-align: center;
  padding-left: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 520;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1220px);
  margin: 0 auto;
}

.transformation-inline {
  width: min(100%, 1220px);
  margin: 0 auto 2.6rem;
}

.transformation-wrap-desktop {
  display: block;
}

.transformation-mobile-stack {
  display: none;
}

.transformation-mobile-panel {
  position: relative;
  width: 100%;
  min-height: 248px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.26);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 100px rgba(0, 0, 0, 0.28);
}

.transformation-mobile-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 610px;
  padding: 18px 32px 20px;
  border-right: none;
  background: transparent;
  overflow: visible;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card:last-child {
  border-right-color: transparent;
}

.card::before {
  content: "";
  position: absolute;
  inset: 4px 8px;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(rgba(245, 245, 240, 0.96), rgba(245, 245, 240, 0.96)) left top / 20px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.96), rgba(245, 245, 240, 0.96)) left top / 2px 20px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.96), rgba(245, 245, 240, 0.96)) right top / 20px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.96), rgba(245, 245, 240, 0.96)) right top / 2px 20px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.96), rgba(245, 245, 240, 0.96)) left bottom / 20px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.96), rgba(245, 245, 240, 0.96)) left bottom / 2px 20px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.96), rgba(245, 245, 240, 0.96)) right bottom / 20px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.96), rgba(245, 245, 240, 0.96)) right bottom / 2px 20px no-repeat;
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 220ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(0.978);
  filter: drop-shadow(0 0 0 rgba(245, 245, 240, 0));
}

.card::after {
  content: "";
  position: absolute;
  inset: 10px 14px;
  pointer-events: none;
  opacity: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.008));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px) saturate(106%);
  -webkit-backdrop-filter: blur(4px) saturate(106%);
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(0.988);
}

/* Default hover on middle card (orchestration) — removed when user interacts */
.card-orchestration.is-default-hover {
  transform: translateY(-3px);
  z-index: 2;
}
.card-orchestration.is-default-hover::before {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 0 10px rgba(245, 245, 240, 0.08));
}
.card-orchestration.is-default-hover::after {
  opacity: 1;
  transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-3px);
    z-index: 2;
  }

  .card:hover::before {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(245, 245, 240, 0.08));
  }

  .card:hover::after {
    opacity: 1;
    transform: scale(1);
  }

  /* When any card is hovered, remove default from middle */
  .cards-grid:hover .card-orchestration.is-default-hover {
    transform: none;
    z-index: auto;
  }
  .cards-grid:hover .card-orchestration.is-default-hover::before {
    opacity: 0;
    transform: scale(0.978);
    filter: none;
  }
  .cards-grid:hover .card-orchestration.is-default-hover::after {
    opacity: 0;
    transform: scale(0.988);
  }
}

.card-copy {
  padding-top: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.card h3 {
  margin: 0 0 0.32rem;
  max-width: 14ch;
  font-size: clamp(1.55rem, 1.7vw, 1.95rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.card-unified h3 {
  max-width: none;
  white-space: nowrap;
}

.card p {
  max-width: none;
  width: 100%;
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.card-support {
  max-width: none;
  width: 100%;
  margin-top: 0.95rem;
  color: rgba(245, 245, 240, 0.48);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  line-height: 1.55;
  letter-spacing: 0;
  text-align: justify;
  text-justify: inter-word;
}

.card-art {
  position: relative;
  align-self: end;
  min-height: 340px;
  margin-top: 1.15rem;
}

.card-art-memory {
  overflow: hidden;
}

.memory-visual {
  position: absolute;
  inset: auto 0 4px;
  height: 292px;
  animation: memory-drift 8.5s ease-in-out infinite;
}

.memory-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 336px;
  height: 336px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 62%);
  transform: translateX(-50%);
  filter: blur(26px);
  opacity: 0.34;
  animation: memory-aura 6.8s ease-in-out infinite;
}

.memory-illustration {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: min(92%, 312px);
  transform: translateX(-50%);
  filter:
    invert(1)
    brightness(1.06)
    contrast(0.9)
    opacity(0.24)
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.06));
  animation: memory-float 7s ease-in-out infinite;
}

.memory-orbit,
.memory-node {
  position: absolute;
  display: block;
}

.memory-orbit {
  left: 50%;
  bottom: 38px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  transform: translateX(-50%);
  transform-origin: center;
}

.orbit-a {
  width: 216px;
  height: 216px;
  animation: orbit-pulse 5.2s ease-in-out infinite, orbit-spin-a 14s linear infinite;
}

.orbit-b {
  width: 280px;
  height: 280px;
  border-color: rgba(255, 255, 255, 0.06);
  animation: orbit-pulse 6.2s ease-in-out infinite, orbit-spin-b 18s linear infinite;
  animation-delay: 0.5s;
}

.memory-node {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: node-blink 4.6s ease-in-out infinite;
}

.node-a {
  left: calc(50% - 106px);
  bottom: 146px;
}

.node-b {
  left: calc(50% + 82px);
  bottom: 194px;
  animation-delay: 0.75s;
}

.node-c {
  left: calc(50% + 8px);
  bottom: 60px;
  animation-delay: 1.25s;
}

.workflow-shell {
  position: absolute;
  inset: auto 0 18px;
  height: 246px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  animation: browser-breathe 7s ease-in-out infinite;
}

.workflow-shell::before {
  content: "";
  position: absolute;
  inset: 30px -32%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 48%, transparent 100%);
  opacity: 0;
  transform: translateX(-32%) skewX(-22deg);
  animation: workflow-scan 6.8s ease-in-out infinite;
}

.workflow-shell::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 78px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0.5;
  animation: pulse-line 5.6s ease-in-out infinite;
}

.workflow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 245, 240, 0.48);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  animation: browser-top-glow 6s ease-in-out infinite;
}

.workflow-actions {
  display: flex;
  gap: 6px;
}

.workflow-actions span:first-child {
  width: 30px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
}

.workflow-actions span:last-child {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.workflow-body {
  position: relative;
  height: calc(100% - 28px);
  padding: 28px 22px 22px;
}

.workflow-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  animation: workflow-step-glow 5.8s ease-in-out infinite;
  z-index: 2;
}

.step-a { animation-delay: 0s; }
.step-b { animation-delay: 0.45s; }
.step-c { animation-delay: 0.9s; }

.step-b .step-label {
  position: relative;
}

.step-b .step-label::after {
  content: "";
  position: absolute;
  inset: -2px -6px;
  border-radius: 4px;
  background: rgba(126, 177, 255, 0.18);
  opacity: 0.6;
  z-index: -1;
  animation: step-highlight 3.8s ease-in-out infinite;
}

.step-index,
.step-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: rgba(245, 245, 240, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.workflow-connector {
  position: relative;
  width: 1px;
  height: 26px;
  margin: 8px auto;
  background: rgba(255, 255, 255, 0.14);
  animation: pulse-line 5.2s ease-in-out infinite;
}

.connector-a { animation-delay: 0.2s; }
.connector-b { animation-delay: 0.7s; }

.workflow-branch {
  position: absolute;
  width: 74px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  animation: pulse-line 5.4s ease-in-out infinite;
}

.branch-left {
  left: 82px;
  top: 92px;
  transform: rotate(-28deg);
}

.branch-right {
  right: 82px;
  top: 92px;
  transform: rotate(28deg);
  animation-delay: 0.55s;
}

.workflow-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.26);
  animation: node-blink 4.8s ease-in-out infinite;
}

.node-left {
  left: 62px;
  top: 58px;
}

.node-right {
  right: 62px;
  top: 58px;
  animation-delay: 0.7s;
}

.doc-layer {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  will-change: transform;
  overflow: hidden;
}

.doc-back {
  right: -4px;
  bottom: 48px;
  width: 300px;
  height: 190px;
  animation: doc-fan-back 6.6s ease-in-out infinite;
  padding: 18px 18px 0;
}

.doc-middle {
  right: 20px;
  bottom: 28px;
  width: 300px;
  height: 190px;
  animation: doc-fan-mid 6.6s ease-in-out infinite;
  padding: 18px 18px 0;
}

.doc-audio-card {
  right: 44px;
  bottom: 10px;
  width: 300px;
  height: 190px;
  padding: 18px 18px 0;
  background: rgba(0, 0, 0, 0.06);
  animation: doc-fan-audio 6.6s ease-in-out infinite;
}

.doc-front {
  right: 72px;
  bottom: -8px;
  width: 300px;
  height: 190px;
  padding: 18px 18px 0;
  background: rgba(0, 0, 0, 0.08);
  animation: doc-fan-front 6.6s ease-in-out infinite;
}

.doc-layer strong {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(245, 245, 240, 0.8);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doc-back span,
.doc-middle span,
.doc-audio-card span,
.doc-front span {
  display: block;
  height: 1px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.1);
  animation: line-flicker 5.4s ease-in-out infinite;
}

.doc-back span:nth-child(2) { width: 84%; }
.doc-back span:nth-child(3) { width: 78%; }
.doc-back span:nth-child(4) { width: 68%; }

.doc-middle span:nth-child(2) { width: 82%; }
.doc-middle span:nth-child(3) { width: 88%; }
.doc-middle span:nth-child(4) { width: 70%; }

.doc-audio-card span:nth-child(2) { width: 84%; }
.doc-audio-card span:nth-child(3) { width: 88%; }
.doc-audio-card span:nth-child(4) { width: 72%; }

.doc-front span:nth-child(2) { width: 88%; }
.doc-front span:nth-child(3) { width: 64%; }
.doc-front span:nth-child(4) { width: 78%; }

.doc-back span:nth-child(2),
.doc-front span:nth-child(2) { animation-delay: 0s; }

.doc-back span:nth-child(3),
.doc-middle span:nth-child(2),
.doc-audio-card span:nth-child(2) { animation-delay: 0.15s; }

.doc-back span:nth-child(4),
.doc-middle span:nth-child(3),
.doc-audio-card span:nth-child(3) { animation-delay: 0.3s; }

.doc-middle span:nth-child(4),
.doc-front span:nth-child(3),
.doc-audio-card span:nth-child(4) { animation-delay: 0.45s; }

.doc-front span:nth-child(4) { animation-delay: 0.6s; }

.card-number {
  display: none;
}

.transformation-section {
  width: 100%;
  margin-top: 0;
  padding: 34px clamp(18px, 3vw, 40px) 46px;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.transformation-wrap {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 80, 80, 0.05), transparent 24%),
    radial-gradient(circle at 76% 18%, rgba(14, 165, 233, 0.07), transparent 26%),
    rgba(5, 5, 5, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 100px rgba(0, 0, 0, 0.28);
}

.transformation-visual {
  display: block;
  width: 100%;
  height: auto;
}

.ecosystem-section {
  width: 100%;
  margin-top: 0;
  padding: 28px clamp(18px, 3vw, 40px) 30px;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.38), rgba(10, 10, 10, 0.24));
  backdrop-filter: blur(9px) saturate(112%);
  -webkit-backdrop-filter: blur(9px) saturate(112%);
}

.ecosystem-wrap {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 10px 0 0;
}

.ecosystem-stage {
  --graph-scale: 1;
  --graph-center-x: 50%;
  position: relative;
  width: 100%;
  min-height: 860px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)) left 28px top 28px / 24px 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)) left 28px top 28px / 1px 24px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)) right 28px top 28px / 24px 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)) right 28px top 28px / 1px 24px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)) left 28px bottom 28px / 24px 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)) left 28px bottom 28px / 1px 24px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)) right 28px bottom 28px / 24px 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)) right 28px bottom 28px / 1px 24px no-repeat,
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.042), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.024), transparent 48%),
    rgba(10, 10, 10, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(11px) saturate(110%);
  -webkit-backdrop-filter: blur(11px) saturate(110%);
}

.ecosystem-stage::before,
.ecosystem-stage::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ecosystem-stage::before {
  width: calc(340px * var(--graph-scale));
  height: calc(340px * var(--graph-scale));
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: ecosystem-pulse 8s ease-in-out infinite;
}

.ecosystem-stage::after {
  width: calc(540px * var(--graph-scale));
  height: calc(540px * var(--graph-scale));
  border: 1px solid rgba(255, 255, 255, 0.025);
  animation: ecosystem-pulse 11s ease-in-out infinite reverse;
}

.ecosystem-core {
  position: absolute;
  left: var(--graph-center-x);
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(108px * var(--graph-scale));
  height: calc(108px * var(--graph-scale));
  transform: translate(-50%, -50%);
  z-index: 4;
}

.ecosystem-core::before {
  content: "";
  position: absolute;
  inset: -28%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.94) 58%, rgba(10, 10, 10, 0.72) 76%, transparent 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 42px rgba(10, 10, 10, 0.5);
  z-index: 0;
}

.ecosystem-core-glow {
  position: absolute;
  inset: -36%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 36%, transparent 68%);
  filter: blur(22px);
  opacity: 0.72;
  animation: ecosystem-core-breathe 7.4s ease-in-out infinite;
  z-index: 1;
}

.ecosystem-core-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: calc(78px * var(--graph-scale));
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.08))
    drop-shadow(0 0 56px rgba(255, 255, 255, 0.05));
}

.ecosystem-node {
  --node-line-gap: 8px;
  --node-chip-gap: 8px;
  --line-origin-offset: calc(74px * var(--graph-scale));
  --pulse-origin-offset: calc(74px * var(--graph-scale));
  position: absolute;
  left: var(--graph-center-x);
  top: 50%;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: inherit;
  overflow: visible;
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(var(--angle));
  z-index: 2;
  animation: ecosystem-node-sway 9.5s ease-in-out infinite;
  animation-delay: calc(var(--delay) * -1.5);
}

.ecosystem-node::before {
  content: "";
  position: absolute;
  left: var(--line-origin-offset);
  top: 0;
  width: calc((var(--radius) * var(--graph-scale)) - var(--node-line-gap) - var(--line-origin-offset));
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(128, 156, 194, 0.34) 0 5px,
    rgba(128, 156, 194, 0) 5px 10px
  );
  transform-origin: left center;
  opacity: 0.7;
  animation: ecosystem-line-flicker 6.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.ecosystem-node::after {
  content: "";
  position: absolute;
  left: calc(var(--pulse-origin-offset) - 6px);
  top: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 243, 214, 0.98) 0%,
    rgba(255, 212, 126, 0.9) 34%,
    rgba(255, 166, 72, 0.58) 58%,
    transparent 74%
  );
  box-shadow:
    0 0 18px rgba(255, 197, 98, 0.48),
    0 0 36px rgba(255, 160, 78, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) scale(0.7);
}

.ecosystem-node-dot {
  position: absolute;
  left: calc(((var(--radius) * var(--graph-scale)) - var(--node-line-gap)) - 5px);
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(160, 168, 182, 0.54);
  box-shadow:
    0 0 0 1px rgba(132, 144, 164, 0.2),
    0 0 10px rgba(112, 124, 144, 0.12);
  animation: ecosystem-dot-pulse 4.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.ecosystem-node-card {
  position: absolute;
  left: calc((var(--radius) * var(--graph-scale)) + var(--node-chip-gap));
  top: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.54rem 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.12);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  white-space: nowrap;
  transform: translateY(-50%) rotate(calc(var(--angle) * -1));
  transform-origin: left center;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.ecosystem-node-icon {
  display: none;
}

.ecosystem-node-label {
  color: rgba(245, 245, 240, 0.82);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ecosystem-node-secondary {
  z-index: 1;
}

.ecosystem-node-secondary::before {
  opacity: 0.58;
}

.ecosystem-node-secondary .ecosystem-node-dot {
  width: 8px;
  height: 8px;
  left: calc(((var(--radius) * var(--graph-scale)) - var(--node-line-gap)) - 4px);
  top: -4px;
  background: rgba(152, 162, 176, 0.5);
  box-shadow:
    0 0 0 1px rgba(126, 138, 154, 0.18),
    0 0 8px rgba(106, 118, 136, 0.1);
}

.ecosystem-node-secondary .ecosystem-node-card {
  padding: 0.48rem 0.66rem;
  background: rgba(10, 10, 10, 0.08);
}

.ecosystem-node-secondary .ecosystem-node-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 240, 0.66);
}

.ecosystem-node-primary::before {
  background: linear-gradient(
    90deg,
    rgba(184, 212, 248, 0.56) 0%,
    rgba(150, 186, 232, 0.42) 58%,
    rgba(116, 152, 198, 0.22) 100%
  );
  opacity: 0.92;
}

.ecosystem-node-primary .ecosystem-node-dot {
  background: rgba(176, 196, 222, 0.66);
  box-shadow:
    0 0 0 1px rgba(168, 188, 214, 0.24),
    0 0 12px rgba(144, 168, 198, 0.14);
}

.ecosystem-stage .ecosystem-node:nth-of-type(odd) {
  --sway: 1.1deg;
}

.ecosystem-stage .ecosystem-node:nth-of-type(even) {
  --sway: -1.25deg;
}

.ecosystem-stage .ecosystem-node:nth-of-type(3n) {
  animation-duration: 11.8s;
}

.ecosystem-stage .ecosystem-node:nth-of-type(4n) {
  animation-duration: 8.7s;
}

.ecosystem-node:hover,
.ecosystem-node:focus-visible {
  z-index: 5;
  outline: none;
}

.ecosystem-node.is-pulsing {
  z-index: 6;
}

.ecosystem-node.is-pulsing::before {
  background: repeating-linear-gradient(
    90deg,
    rgba(186, 214, 250, 0.62) 0 5px,
    rgba(186, 214, 250, 0) 5px 10px
  );
  opacity: 0.96;
}

.ecosystem-node-primary.is-pulsing::before {
  background: linear-gradient(
    90deg,
    rgba(198, 225, 255, 0.72) 0%,
    rgba(146, 192, 248, 0.48) 54%,
    rgba(100, 146, 212, 0.24) 100%
  );
}

.ecosystem-node.is-pulsing::after {
  animation: ecosystem-signal-travel 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ecosystem-node.is-pulsing .ecosystem-node-dot {
  background: rgba(196, 214, 240, 0.9);
  box-shadow:
    0 0 0 1px rgba(186, 206, 236, 0.28),
    0 0 18px rgba(168, 192, 228, 0.28);
}

.ecosystem-node.is-pulsing .ecosystem-node-card {
  border-color: rgba(214, 228, 250, 0.24);
  background: rgba(18, 20, 24, 0.28);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 0 22px rgba(170, 204, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: ecosystem-chip-highlight 2.2s ease-out 1;
}

.ecosystem-node.is-pulsing .ecosystem-node-label {
  color: rgba(248, 250, 255, 0.98);
  text-shadow: 0 0 14px rgba(188, 218, 255, 0.18);
}

.ecosystem-node:hover::before,
.ecosystem-node:focus-visible::before {
  background: linear-gradient(
    90deg,
    rgba(188, 218, 252, 0.58) 0%,
    rgba(142, 190, 248, 0.4) 56%,
    rgba(110, 154, 220, 0.24) 100%
  );
  opacity: 0.94;
}

.ecosystem-node:hover .ecosystem-node-dot,
.ecosystem-node:focus-visible .ecosystem-node-dot {
  background: rgba(184, 202, 226, 0.84);
  box-shadow:
    0 0 0 1px rgba(170, 190, 216, 0.24),
    0 0 16px rgba(154, 178, 212, 0.2);
}

.ecosystem-node:hover .ecosystem-node-card,
.ecosystem-node:focus-visible .ecosystem-node-card {
  background: rgba(14, 14, 14, 0.18);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (hover: none) {
  .ecosystem-node-card {
    background: rgba(14, 14, 14, 0.18);
  }
}

.transformation-section-legacy {
  display: none;
}

.footer {
  width: 100%;
  margin: 0;
  padding: 34px clamp(18px, 3vw, 40px) 40px;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 34rem);
  align-items: center;
  gap: 2.5rem;
  width: min(100%, 1600px);
  margin: 0 auto 3rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 1rem;
  color: var(--text);
  flex-wrap: nowrap;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-brand-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.45rem;
  line-height: 1;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.footer-brand-text span:first-child,
.footer-brand-text span:last-child {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 600;
}

.footer-brand-text span:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.footer-intro {
  display: grid;
  gap: 1.25rem;
  max-width: 40rem;
  justify-self: center;
  text-align: center;
}

.footer-intro p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  line-height: 1.7;
  white-space: nowrap;
}

.footer-capture {
  display: grid;
  gap: 0.75rem;
  max-width: 34rem;
  justify-items: center;
}

.footer-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  width: 100%;
}

.footer-email-row input {
  min-height: 50px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-align: center;
  outline: none;
}

.footer-email-row input::placeholder {
  color: rgba(245, 245, 240, 0.46);
  font-family: var(--font-mono);
  text-align: center;
}

.footer-email-row input:focus {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.footer-email-row button {
  min-width: 174px;
  min-height: 50px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #050505;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.footer-email-row button:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.footer-form-status {
  margin-top: 0;
  max-width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  width: min(100%, 1600px);
  margin: 0 auto;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  text-align: left;
}

.footer-column h4 {
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted-strong);
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: min(100%, 1600px);
  margin: 2.25rem auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  margin: 0;
  color: rgba(245, 245, 240, 0.5);
  font-size: 0.86rem;
  text-decoration: none;
}

@media (min-width: 1680px) {
  .hero-grid,
  .footer-top,
  .footer-grid,
  .footer-bottom {
    width: min(100%, 1720px);
  }

  .cards-grid,
  .transformation-inline,
  .section-heading,
  .transformation-wrap,
  .ecosystem-wrap {
    width: min(100%, 1360px);
  }

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

  .hero h1 {
    font-size: clamp(4.7rem, 8.1vw, 9rem);
  }

  .ecosystem-stage {
    min-height: 940px;
  }
}

@media (max-width: 1440px) {
  .top-nav.is-scrolled {
    width: min(calc(100vw - 2.5rem), 62rem);
  }

  .hero-grid {
    min-height: calc(84vh - 56px);
  }

  .hero-copy {
    max-width: 820px;
    min-height: calc(84vh - 132px);
  }

  .hero h1 {
    font-size: clamp(3.6rem, 8.1vw, 7.02rem);
  }

  .cards-grid,
  .transformation-inline,
  .section-heading,
  .transformation-wrap,
  .ecosystem-wrap {
    width: min(100%, 1180px);
  }

  .card {
    padding-inline: 28px;
  }

  .ecosystem-stage {
    --graph-scale: 0.92;
    min-height: 792px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 30rem);
    gap: 2rem;
  }

  .footer-grid {
    gap: 1.6rem;
  }
}

@media (max-width: 1200px) {
  .hero,
  .cards-section,
  .ecosystem-section,
  .transformation-section,
  .footer {
    padding-inline: 24px;
  }

  .top-nav {
    padding-inline: 24px;
  }

  .top-nav.is-scrolled {
    width: min(calc(100vw - 2rem), 58rem);
    padding: 0.76rem 1.1rem;
  }

  .hero-grid {
    min-height: calc(80vh - 56px);
  }

  .hero-copy {
    max-width: 740px;
    min-height: calc(80vh - 128px);
  }

  .hero h1 {
    font-size: clamp(3.42rem, 7.65vw, 6.12rem);
  }

  .hero-rotator-line,
  .hero-subheadline {
    max-width: 100%;
  }

  .email-capture {
    width: min(100%, 700px);
  }

  .cards-grid,
  .transformation-inline,
  .section-heading,
  .transformation-wrap,
  .ecosystem-wrap {
    width: min(100%, 1080px);
  }

  .card {
    padding-inline: 22px;
  }

  .card h3 {
    font-size: clamp(1.45rem, 1.9vw, 1.8rem);
  }

  .card-support {
    font-size: 0.88rem;
  }

  .card-memory .card-support,
  .card-orchestration .card-support {
    margin-top: 0.8rem;
  }

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

  .ecosystem-stage {
    --graph-scale: 0.84;
    min-height: 710px;
    border-radius: 28px;
  }

  .ecosystem-node-label {
    font-size: 0.74rem;
  }

  .ecosystem-node-card {
    padding: 0.6rem 0.78rem;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 28rem);
    align-items: start;
  }

  .footer-intro {
    max-width: 100%;
  }

  .footer-intro p {
    font-size: 0.88rem;
  }

  .footer-capture {
    max-width: 100%;
  }
}

.legal-body {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
}

.legal-shell {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 48px 18px 80px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}

.legal-back-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.legal-shell h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.legal-effective {
  margin: 1rem 0 0;
  color: var(--muted);
}

.legal-section {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h2 {
  margin: 0 0 0.65rem;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.legal-section p {
  margin: 0.75rem 0 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.9; }
}

@keyframes memory-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes memory-aura {
  0%, 100% { opacity: 0.18; transform: translateX(-50%) scale(0.96); }
  50% { opacity: 0.42; transform: translateX(-50%) scale(1.04); }
}

@keyframes memory-float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    filter:
      invert(1)
      brightness(1.06)
      contrast(0.9)
      opacity(0.24)
      drop-shadow(0 0 18px rgba(255, 255, 255, 0.06));
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
    filter:
      invert(1)
      brightness(1.12)
      contrast(0.94)
      opacity(0.3)
      drop-shadow(0 0 24px rgba(255, 255, 255, 0.08));
  }
}

@keyframes orbit-pulse {
  0%, 100% {
    opacity: 0.28;
    transform: translateX(-50%) scale(0.98);
  }
  50% {
    opacity: 0.62;
    transform: translateX(-50%) scale(1.02);
  }
}

@keyframes orbit-spin-a {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

@keyframes orbit-spin-b {
  0% { transform: translateX(-50%) rotate(360deg); }
  100% { transform: translateX(-50%) rotate(0deg); }
}

@keyframes node-blink {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes browser-breathe {
  0%, 100% { transform: translateY(0); border-color: rgba(255, 255, 255, 0.14); }
  50% { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.2); }
}

@keyframes browser-top-glow {
  0%, 100% { color: rgba(245, 245, 240, 0.42); }
  50% { color: rgba(245, 245, 240, 0.72); }
}

@keyframes workflow-scan {
  0% {
    opacity: 0;
    transform: translateX(-38%) skewX(-22deg);
  }
  18% {
    opacity: 0.22;
  }
  52% {
    opacity: 0.08;
  }
  100% {
    opacity: 0;
    transform: translateX(44%) skewX(-22deg);
  }
}

@keyframes scan-down {
  0% { transform: translateY(-100%); opacity: 0; }
  18% { opacity: 0.7; }
  48% { opacity: 0.35; }
  100% { transform: translateY(100%); opacity: 0; }
}

@keyframes workflow-step-glow {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
  }
  50% {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.05);
  }
}

@keyframes step-highlight {
  0%, 100% {
    opacity: 0.22;
    transform: scaleX(0.96);
  }
  50% {
    opacity: 0.7;
    transform: scaleX(1);
  }
}

@keyframes doc-fan-back {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  35% { transform: translate(-18px, -12px) rotate(-3deg); }
  65% { transform: translate(0, -2px) rotate(-1deg); }
}

@keyframes doc-fan-mid {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  35% { transform: translate(-8px, -20px) rotate(-1.5deg); }
  65% { transform: translate(0, -4px) rotate(-0.5deg); }
}

@keyframes doc-fan-audio {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  35% { transform: translate(8px, -26px) rotate(1.1deg); }
  65% { transform: translate(0, -6px) rotate(0.35deg); }
}

@keyframes doc-fan-front {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  35% { transform: translate(18px, -34px) rotate(2.2deg); }
  65% { transform: translate(0, -10px) rotate(0.45deg); }
}

@keyframes line-flicker {
  0%, 100% { opacity: 0.28; transform: scaleX(0.98); }
  50% { opacity: 0.7; transform: scaleX(1); }
}

@keyframes ecosystem-pulse {
  0%, 100% {
    opacity: 0.22;
    transform: translate(-50%, -50%) scale(0.98);
  }
  50% {
    opacity: 0.44;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@keyframes ecosystem-core-breathe {
  0%, 100% {
    opacity: 0.52;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.05);
  }
}

@keyframes ecosystem-line-flicker {
  0%, 100% {
    opacity: 0.26;
    transform: scaleX(0.98);
  }
  50% {
    opacity: 0.82;
    transform: scaleX(1.01);
  }
}

@keyframes ecosystem-dot-pulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.14);
  }
}

@keyframes ecosystem-node-sway {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(var(--angle)) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(calc(var(--angle) + var(--sway))) scale(1.008);
  }
}

@keyframes ecosystem-signal-travel {
  0% {
    opacity: 0;
    transform: translateX(0) scale(0.58);
  }
  12% {
    opacity: 1;
  }
  82% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: translateX(calc((var(--radius) * var(--graph-scale)) - var(--node-line-gap) - var(--pulse-origin-offset))) scale(1.08);
  }
}

@keyframes ecosystem-chip-highlight {
  0% {
    border-color: rgba(214, 228, 250, 0.12);
    background: rgba(18, 20, 24, 0.18);
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.12),
      0 0 0 rgba(170, 204, 255, 0);
  }
  35% {
    border-color: rgba(224, 236, 255, 0.34);
    background: rgba(20, 24, 30, 0.34);
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.18),
      0 0 26px rgba(176, 210, 255, 0.16);
  }
  100% {
    border-color: rgba(214, 228, 250, 0.24);
    background: rgba(18, 20, 24, 0.28);
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.18),
      0 0 22px rgba(170, 204, 255, 0.12);
  }
}

@keyframes subheadline-focus-in {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(14px) scale(0.99);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .cards-section,
  .ecosystem-section,
  .transformation-section,
  .footer {
    border-radius: 0;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 1rem;
    max-width: 100%;
  }

  .top-nav {
    flex-wrap: wrap;
    width: 100vw;
    padding-inline: 14px;
  }

  .top-nav.is-scrolled {
    top: 10px;
    width: 100vw;
    padding-inline: 14px;
    border-radius: 0;
    border-left-color: transparent;
    border-right-color: transparent;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100%, 680px);
  }

  .ecosystem-wrap {
    width: min(100%, 760px);
  }

  .ecosystem-stage {
    --graph-scale: 0.72;
    min-height: 620px;
    border-radius: 24px;
  }

  .ecosystem-node-label {
    font-size: 0.66rem;
    letter-spacing: 0.07em;
  }

  .ecosystem-node-card {
    padding: 0.5rem 0.65rem;
  }

  .ecosystem-node-icon {
    min-width: 1.42rem;
    height: 1.42rem;
    font-size: 0.56rem;
  }

  .ecosystem-node-secondary .ecosystem-node-label {
    font-size: 0.6rem;
  }

  .transformation-wrap {
    width: min(100%, 760px);
    padding: 8px;
    border-radius: 22px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: start;
    align-items: start;
  }

  .footer-bottom {
    justify-content: center;
    align-items: center;
  }

  .card,
  .card:last-child {
    min-height: 0;
    padding: 0 0 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .card-copy {
    padding-top: 24px;
  }

  .card-art {
    min-height: 240px;
  }

  .footer-brand {
    align-items: flex-start;
    justify-self: start;
  }

  .footer-brand img {
    width: 60px;
    height: 60px;
  }

  .footer-brand-text span:first-child,
  .footer-brand-text span:last-child {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .section-heading {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .top-nav {
    padding-inline: 18px;
  }

  .top-nav.is-scrolled {
    width: calc(100vw - 18px);
    top: 9px;
    border-radius: 20px;
  }

  .hero,
  .cards-section,
  .transformation-section,
  .footer {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-grid,
  .hero-copy {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }

  .section-heading {
    min-height: 90px;
    margin-bottom: 1.6rem;
  }

  .transformation-inline {
    margin-bottom: 1.8rem;
  }

  .cards-grid {
    gap: 24px;
  }

  .ecosystem-stage {
    --graph-scale: 0.62;
    min-height: 560px;
  }

  .ecosystem-node-secondary:nth-of-type(14),
  .ecosystem-node-secondary:nth-of-type(15),
  .ecosystem-node-secondary:nth-of-type(16),
  .ecosystem-node-secondary:nth-of-type(17),
  .ecosystem-node-secondary:nth-of-type(18) {
    display: none;
  }

  .card-copy {
    padding-top: 22px;
  }

  .card-art {
    min-height: 230px;
    margin-top: 1.5rem;
  }

  .footer-grid {
    gap: 1.2rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 0;
  }

  .top-nav {
    gap: 0.7rem;
    align-items: stretch;
    width: calc(100vw - 16px);
    padding: 0.82rem 0.9rem;
    top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(10, 10, 10, 0.56);
    box-shadow:
      0 18px 48px rgba(0, 0, 0, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .top-nav.is-scrolled {
    top: 8px;
    width: calc(100vw - 16px);
    padding: 0.74rem 0.85rem;
    border-radius: 20px;
    border-left-color: rgba(255, 255, 255, 0.08);
    border-right-color: rgba(255, 255, 255, 0.08);
  }

  .hero,
  .cards-section,
  .ecosystem-section,
  .transformation-section,
  .footer {
    padding: 18px 14px;
  }

  .ecosystem-section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .ecosystem-wrap {
    width: 100%;
  }

  .ecosystem-stage {
    --graph-scale: 0.36;
    min-height: 560px;
    border-radius: 22px;
  }

  .ecosystem-core {
    width: calc(103px * var(--graph-scale));
    height: calc(103px * var(--graph-scale));
  }

  .ecosystem-node-card {
    padding: 0.32rem 0.42rem;
    gap: 0.28rem;
  }

  .ecosystem-node-label {
    font-size: 0.44rem;
    letter-spacing: 0.05em;
  }

  .ecosystem-node-icon {
    min-width: 1.2rem;
    height: 1.2rem;
    padding: 0 0.24rem;
    font-size: 0.47rem;
  }

  .ecosystem-node-secondary,
  .ecosystem-node-secondary:nth-of-type(14),
  .ecosystem-node-secondary:nth-of-type(15),
  .ecosystem-node-secondary:nth-of-type(16),
  .ecosystem-node-secondary:nth-of-type(17),
  .ecosystem-node-secondary:nth-of-type(18) {
    display: block;
  }

  .ecosystem-node {
    --node-line-gap: calc(var(--node-line-gap, 16px) + 8px);
    --node-chip-gap: calc(var(--node-chip-gap, 14px) + 6px);
  }

  .ecosystem-node:nth-of-type(4) {
    --angle: 176deg;
    --radius: 372px;
    --node-line-gap: 34px;
    --node-chip-gap: 38px;
  }

  .ecosystem-node:nth-of-type(6) {
    --angle: -104deg;
    --radius: 292px;
  }

  .ecosystem-node:nth-of-type(7) {
    --angle: -76deg;
    --radius: 292px;
  }

  .ecosystem-node:nth-of-type(8) {
    --angle: -54deg;
    --radius: 296px;
  }

  .ecosystem-node:nth-of-type(9) {
    --angle: -26deg;
    --radius: 302px;
    --node-line-gap: 14px;
    --node-chip-gap: 12px;
  }

  .ecosystem-node:nth-of-type(13) {
    --angle: 208deg;
    --radius: 274px;
    --node-line-gap: 18px;
    --node-chip-gap: 18px;
  }

  .ecosystem-node:nth-of-type(14) {
    --angle: 6deg;
    --radius: 252px;
    --node-line-gap: 10px;
    --node-chip-gap: 8px;
  }

  .ecosystem-node:nth-of-type(15) {
    --angle: 24deg;
    --radius: 276px;
    --node-line-gap: 10px;
    --node-chip-gap: 8px;
  }

  .ecosystem-node:nth-of-type(16) {
    --angle: 42deg;
    --radius: 264px;
    --node-line-gap: 10px;
    --node-chip-gap: 8px;
  }

  .ecosystem-node:nth-of-type(17) {
    --angle: 60deg;
    --radius: 248px;
    --node-line-gap: 10px;
    --node-chip-gap: 8px;
  }

  .ecosystem-node:nth-of-type(18) {
    --angle: 14deg;
    --radius: 282px;
    --node-line-gap: 12px;
    --node-chip-gap: 10px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 156px;
    padding-bottom: 28px;
  }

  .hero-grid {
    gap: 18px;
    min-height: calc(100svh - 184px);
    align-items: center;
  }

  .hero-copy {
    justify-content: center;
    min-height: calc(100svh - 184px);
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    max-width: 7ch;
    font-size: clamp(3.33rem, 16.2vw, 5.04rem);
    line-height: 0.88;
    text-wrap: balance;
  }

  .hero-rotator-line {
    font-size: 1rem;
    min-height: 3em;
    max-width: 22rem;
    text-align: center;
  }

  .hero-subheadline,
  .form-note,
  .form-status {
    text-align: center;
  }

  .hero-subheadline {
    white-space: normal;
  }

  .hero-body {
    max-width: 20rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .brand-mark img {
    height: 32px;
  }

  .brand-mark span {
    font-size: 1.42rem;
  }

  .social-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

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

  .mobile-menu-sheet {
    padding: 0.9rem 1rem 2.4rem;
  }

  .mobile-menu-top,
  .mobile-menu-links {
    width: 100%;
  }

  .mobile-menu-top {
    padding-bottom: 1.1rem;
  }

  .mobile-menu-links a {
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    gap: 0.8rem;
    padding: 1.05rem 0;
  }

  .mobile-menu-title {
    font-size: 1.22rem;
  }

  .mobile-menu-meta {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .email-capture {
    width: 100%;
    margin-top: 1.4rem;
  }

  .email-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .email-row input,
  .email-row button {
    min-height: 54px;
    border-radius: 16px;
  }

  .form-note {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .form-note-break {
    display: block;
  }

  .form-note,
  .form-status {
    font-size: 0.88rem;
  }

  .browser-shell,
  .doc-back,
  .doc-middle,
  .doc-audio-card,
  .doc-front {
    width: 100%;
    right: 0;
  }

  .doc-middle {
    right: 12px;
  }

  .doc-audio-card {
    right: 24px;
  }

  .doc-front {
    right: 36px;
  }

  .card-art-docs {
    min-height: 260px;
  }

  .doc-layer {
    width: calc(100% - 36px);
    height: 148px;
    padding: 12px 14px 0;
  }

  .doc-layer strong {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    font-size: 0.64rem;
    letter-spacing: 0.11em;
    text-align: center;
  }

  .doc-layer span {
    margin-bottom: 14px;
  }

  .doc-back {
    bottom: 84px;
  }

  .doc-middle {
    bottom: 56px;
  }

  .doc-audio-card {
    bottom: 28px;
  }

  .doc-front {
    bottom: 0;
  }

  .card {
    min-height: 0;
    gap: 0;
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .section-heading {
    min-height: 96px;
    margin-bottom: 1.8rem;
  }

  .footer-brand-text {
    gap: 0.28rem;
  }

  .card-copy {
    padding-top: 20px;
    justify-items: center;
    text-align: center;
  }

  .card h3 {
    max-width: none;
    font-size: 1.45rem;
  }

  .card p {
    max-width: none;
    font-size: 0.94rem;
  }

  .card-support {
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.6;
    text-align: center;
    text-justify: auto;
  }

  .card-memory .card-support,
  .card-orchestration .card-support {
    margin-top: 0.72rem;
  }

  .card-art {
    min-height: 252px;
    margin-top: 1.8rem;
  }

  .card-art-browser {
    min-height: 280px;
  }

  .card-art-memory,
  .card-art-docs {
    min-height: 260px;
  }

  .footer {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .transformation-section {
    padding-top: 16px;
    padding-bottom: 28px;
  }

  .transformation-inline {
    margin-bottom: 2rem;
  }

  .transformation-wrap-desktop {
    display: none;
  }

  .transformation-mobile-stack {
    display: grid;
    gap: 1rem;
  }

  .transformation-mobile-panel {
    min-height: 224px;
    border-radius: 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-items: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .footer-brand {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
    align-items: center;
  }

  .footer-brand img {
    width: 48px;
    height: 48px;
  }

  .footer-brand-text {
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    row-gap: 0;
    white-space: nowrap;
  }

  .footer-brand-text span:first-child,
  .footer-brand-text span:last-child {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .footer-intro,
  .footer-column {
    text-align: center;
  }

  .footer-intro {
    width: 100%;
    max-width: 100%;
    justify-items: center;
  }

  .footer-intro p {
    max-width: 24rem;
    white-space: normal;
    line-height: 1.6;
  }

  .footer-capture {
    max-width: 100%;
    justify-items: center;
    width: 100%;
  }

  .footer-email-row {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .footer-email-row button {
    width: 100%;
  }

  .footer-column {
    gap: 0.55rem;
  }

  .footer-column h4 {
    margin-bottom: 0.15rem;
    font-size: 0.72rem;
  }

  .footer-column a,
  .footer-bottom p {
    font-size: 0.82rem;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 1024px) and (max-height: 560px) and (orientation: landscape) {
  .top-nav {
    width: calc(100vw - 16px);
    padding: 0.72rem 0.9rem;
    top: 8px;
    border-radius: 18px;
  }

  .top-nav.is-scrolled {
    top: 8px;
    width: calc(100vw - 16px);
    padding: 0.68rem 0.86rem;
    border-radius: 18px;
  }

  .brand-mark img {
    height: 34px;
  }

  .brand-mark span {
    font-size: 1.2rem;
  }

  .social-links a {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  .social-icon {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .hero,
  .cards-section,
  .ecosystem-section,
  .transformation-section,
  .footer {
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 20px;
  }

  .hero-grid,
  .hero-copy {
    min-height: auto;
  }

  .hero-grid {
    gap: 12px;
  }

  .hero-copy {
    padding-top: 0;
    padding-bottom: 0;
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    line-height: 0.9;
    max-width: none;
  }

  .hero-rotator-line {
    margin-top: 0.7rem;
    min-height: auto;
    font-size: 0.94rem;
  }

  .email-capture {
    width: min(100%, 720px);
    margin-top: 1.2rem;
  }

  .email-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem;
  }

  .email-row input,
  .email-row button {
    min-height: 48px;
    border-radius: 14px;
  }

  .form-note,
  .form-status {
    font-size: 0.84rem;
  }

  .section-heading {
    min-height: 72px;
    margin-bottom: 1.2rem;
  }

  .section-heading h2 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
  }

  .cards-grid {
    gap: 18px;
  }

  .card {
    min-height: 0;
  }

  .card-copy {
    padding-top: 18px;
  }

  .card h3 {
    font-size: 1.15rem;
    max-width: none;
  }

  .card p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .card-support {
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .card-art {
    min-height: 190px;
    margin-top: 1rem;
  }

  .memory-visual {
    height: 208px;
  }

  .memory-illustration {
    width: min(74%, 220px);
  }

  .workflow-shell {
    inset: auto 0 8px;
    height: 188px;
  }

  .workflow-body {
    padding: 18px 14px 14px;
  }

  .workflow-step {
    min-height: 34px;
    padding: 0 10px;
  }

  .step-index,
  .step-label,
  .workflow-top {
    font-size: 0.64rem;
  }

  .workflow-connector {
    height: 18px;
    margin: 6px auto;
  }

  .branch-left {
    left: 64px;
    top: 70px;
  }

  .branch-right {
    right: 64px;
    top: 70px;
  }

  .node-left,
  .node-right {
    top: 46px;
  }

  .doc-layer {
    width: calc(100% - 84px);
    height: 124px;
    padding: 10px 12px 0;
  }

  .doc-layer strong {
    margin-bottom: 10px;
    font-size: 0.56rem;
    text-align: center;
  }

  .doc-layer span {
    margin-bottom: 10px;
  }

  .doc-back {
    right: 12px;
    bottom: 54px;
  }

  .doc-middle {
    right: 28px;
    bottom: 38px;
  }

  .doc-audio-card {
    right: 44px;
    bottom: 20px;
  }

  .doc-front {
    right: 60px;
    bottom: 4px;
  }

  .transformation-inline {
    margin-bottom: 1.4rem;
  }

  .transformation-wrap-desktop {
    display: none;
  }

  .transformation-mobile-stack {
    display: grid;
    gap: 0.85rem;
  }

  .transformation-mobile-panel {
    min-height: 176px;
  }

  .ecosystem-stage {
    --graph-scale: 0.31;
    min-height: 390px;
    border-radius: 20px;
  }

  .ecosystem-node-card {
    padding: 0.28rem 0.38rem;
  }

  .ecosystem-node-label {
    font-size: 0.4rem;
    letter-spacing: 0.04em;
  }

  .ecosystem-node {
    --node-line-gap: calc(var(--node-line-gap, 16px) + 6px);
    --node-chip-gap: calc(var(--node-chip-gap, 14px) + 4px);
  }

  .ecosystem-node:nth-of-type(4) {
    display: none;
  }

  .ecosystem-node:nth-of-type(14) {
    --angle: 8deg;
    --radius: 248px;
  }

  .ecosystem-node:nth-of-type(15) {
    --angle: 24deg;
    --radius: 268px;
  }

  .ecosystem-node:nth-of-type(16) {
    --angle: 40deg;
    --radius: 258px;
  }

  .ecosystem-node:nth-of-type(17) {
    --angle: 56deg;
    --radius: 242px;
  }

  .ecosystem-node:nth-of-type(18) {
    --angle: 16deg;
    --radius: 274px;
  }

  .footer {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .footer-top {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.1rem;
    margin-bottom: 1.4rem;
    align-items: center;
    justify-items: start;
  }

  .footer-brand {
    width: auto;
    justify-self: start;
    justify-content: flex-start;
    align-items: center;
    gap: 0.7rem;
  }

  .footer-brand img {
    width: 42px;
    height: 42px;
  }

  .footer-brand-text {
    justify-content: flex-start;
    align-items: center;
  }

  .footer-brand-text span:first-child,
  .footer-brand-text span:last-child {
    font-size: clamp(1.2rem, 4.4vw, 1.9rem);
  }

  .footer-intro p {
    max-width: 32rem;
    font-size: 0.84rem;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    width: 100%;
  }

  .footer-column h4 {
    font-size: 0.68rem;
  }

  .footer-column a,
  .footer-bottom p {
    font-size: 0.78rem;
  }

  .footer-email-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
  }

  .footer-email-row input,
  .footer-email-row button {
    min-height: 46px;
    border-radius: 14px;
  }

  .footer-email-row button {
    width: auto;
    min-width: 170px;
  }
}

/* Turnstile widget — blend with dark theme */
.cf-turnstile {
  background: transparent !important;
  margin-top: 12px;
  transform: scale(0.9);
  transform-origin: center top;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.cf-turnstile:hover { opacity: 1; }
.cf-turnstile iframe {
  border: none !important;
  border-radius: 8px !important;
  background: transparent !important;
  color-scheme: dark;
}
.footer-capture .cf-turnstile {
  transform: scale(0.85);
  transform-origin: left top;
}

