@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);
  --accent: #3DA9FC;
  --accent-cool: #64d8ff;
  --accent-warm: #ff9d5c;
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
  --font-ui: "Geist Sans";
  --font-mono: "Geist Mono";
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  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;
  cursor: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg fill='none' stroke='%233DA9FC' stroke-width='2' stroke-linecap='square'%3E%3Cpath d='M2 9 L2 2 L9 2'/%3E%3Cpath d='M23 2 L30 2 L30 9'/%3E%3Cpath d='M2 23 L2 30 L9 30'/%3E%3Cpath d='M30 23 L30 30 L23 30'/%3E%3C/g%3E%3C/svg%3E") 16 16, auto;
}

a, button, .nav-links a, .social-links a, .mobile-menu-toggle, .mobile-menu-close,
.email-row button, .footer-email-row button, .conversion-band a, .skip-link,
.brand-mark-logo, .footer-brand-logo, .legal-back, summary, [role="button"] {
  cursor: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg fill='none' stroke='%233DA9FC' stroke-width='2.4' stroke-linecap='square'%3E%3Cpath d='M2 9 L2 2 L9 2'/%3E%3Cpath d='M23 2 L30 2 L30 9'/%3E%3Cpath d='M2 23 L2 30 L9 30'/%3E%3Cpath d='M30 23 L30 30 L23 30'/%3E%3C/g%3E%3C/svg%3E") 16 16, pointer;
}

input[type="email"], input[type="text"], textarea {
  cursor: text;
}

@media (hover: none) and (pointer: coarse) {
  body, a, button { cursor: auto; }
}

.frame-burst {
  position: fixed;
  width: 84px;
  height: 84px;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  animation: frame-burst-fade 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.frame-burst-ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--accent);
  background: linear-gradient(180deg, rgba(61, 169, 252, 0.16), rgba(61, 169, 252, 0.06));
  box-shadow:
    0 0 14px rgba(61, 169, 252, 0.45),
    inset 0 0 8px rgba(61, 169, 252, 0.22);
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0.95;
  animation: frame-ripple 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.frame-burst-ripple.r2 {
  animation-delay: 90ms;
  border-color: rgba(61, 169, 252, 0.55);
  background: transparent;
  box-shadow: 0 0 10px rgba(61, 169, 252, 0.3);
}

@keyframes frame-ripple {
  0%   { transform: translate(-50%, -50%) scale(0.3); opacity: 0; }
  20%  { opacity: 0.95; }
  100% { transform: translate(-50%, -50%) scale(5); opacity: 0; }
}

.frame-burst-corner {
  position: absolute;
  width: 14px;
  height: 14px;
}

.frame-burst-corner::before,
.frame-burst-corner::after {
  content: "";
  position: absolute;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(61, 169, 252, 0.55);
}

.frame-burst-corner::before {
  width: 100%;
  height: 2px;
}

.frame-burst-corner::after {
  width: 2px;
  height: 100%;
}

.frame-burst-corner.tl { top: 0; left: 0; animation: burst-tl 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.frame-burst-corner.tl::before { top: 0; left: 0; }
.frame-burst-corner.tl::after { top: 0; left: 0; }

.frame-burst-corner.tr { top: 0; right: 0; animation: burst-tr 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.frame-burst-corner.tr::before { top: 0; right: 0; }
.frame-burst-corner.tr::after { top: 0; right: 0; }

.frame-burst-corner.bl { bottom: 0; left: 0; animation: burst-bl 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.frame-burst-corner.bl::before { bottom: 0; left: 0; }
.frame-burst-corner.bl::after { bottom: 0; left: 0; }

.frame-burst-corner.br { bottom: 0; right: 0; animation: burst-br 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.frame-burst-corner.br::before { bottom: 0; right: 0; }
.frame-burst-corner.br::after { bottom: 0; right: 0; }

@keyframes burst-tl {
  0%   { transform: translate(-44px, -44px); opacity: 0; }
  35%  { opacity: 1; }
  60%  { transform: translate(0, 0); opacity: 1; }
  100% { transform: translate(0, 0); opacity: 0; }
}
@keyframes burst-tr {
  0%   { transform: translate(44px, -44px); opacity: 0; }
  35%  { opacity: 1; }
  60%  { transform: translate(0, 0); opacity: 1; }
  100% { transform: translate(0, 0); opacity: 0; }
}
@keyframes burst-bl {
  0%   { transform: translate(-44px, 44px); opacity: 0; }
  35%  { opacity: 1; }
  60%  { transform: translate(0, 0); opacity: 1; }
  100% { transform: translate(0, 0); opacity: 0; }
}
@keyframes burst-br {
  0%   { transform: translate(44px, 44px); opacity: 0; }
  35%  { opacity: 1; }
  60%  { transform: translate(0, 0); opacity: 1; }
  100% { transform: translate(0, 0); opacity: 0; }
}

@keyframes frame-burst-fade {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(0.85); }
  60%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .frame-burst,
  .frame-burst-corner.tl,
  .frame-burst-corner.tr,
  .frame-burst-corner.bl,
  .frame-burst-corner.br {
    animation: none;
    opacity: 0;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(61, 169, 252, 0.92);
  outline-offset: 4px;
}

#studio,
#workflow,
#included,
#faq,
#early-access,
#graph {
  scroll-margin-top: 112px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0 0.45rem 0 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.95rem;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(245, 245, 240, 0.72);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 4px;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(var(--accent), var(--accent)) left top / 12px 1.5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) left top / 1.5px 12px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right top / 12px 1.5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right top / 1.5px 12px no-repeat,
    linear-gradient(var(--accent), var(--accent)) left bottom / 12px 1.5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) left bottom / 1.5px 12px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right bottom / 12px 1.5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right bottom / 1.5px 12px no-repeat;
  transform: scale(0.94);
  transition: opacity 180ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.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-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(3.7rem, 8.8vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  font-weight: 520;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.hero-rotating-word {
  display: inline-block;
  min-width: 11ch;
  text-align: left;
  color: var(--accent);
  will-change: opacity, transform, filter;
  transition:
    opacity 380ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

@media (prefers-reduced-motion: reduce) {
  .hero-rotating-word,
  .hero-rotating-word.is-leaving,
  .hero-rotating-word.is-entering {
    transition: none;
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
}

.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: 3.6em;
  max-width: 36rem;
  text-align: left;
}

.hero-subheadline {
  display: inline-block;
  max-width: none;
  color: var(--text);
  font-family: var(--font-mono);
  white-space: normal;
  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-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  width: min(100%, 820px);
  margin-top: 1.2rem;
}

.hero-proof-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(245, 245, 240, 0.82);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  line-height: 1.35;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-proof-grid span:nth-child(1) {
  border-color: rgba(61, 169, 252, 0.2);
}

.hero-proof-grid span:nth-child(2) {
  border-color: rgba(100, 216, 255, 0.2);
}

.hero-proof-grid span:nth-child(3) {
  border-color: rgba(255, 157, 92, 0.2);
}

.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: 1.8rem;
}

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

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

.hero-proof-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 820px);
  margin-top: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
}

.hero-proof-bar span {
  display: grid;
  gap: 0.2rem;
  min-height: 66px;
  padding: 0.8rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 245, 240, 0.62);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  line-height: 1.35;
}

.hero-proof-bar span:nth-child(2n) {
  border-right: 0;
}

.hero-proof-bar span:nth-child(-n+2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof-bar strong {
  display: block;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.proof-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.92);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

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

.journey-section,
.benefits-section,
.included-section,
.comparison-section,
.faq-section,
.final-cta-section {
  width: 100%;
  margin-top: 0;
  padding: 46px clamp(18px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
}

.thesis-band {
  position: relative;
  width: 100%;
  padding: 44px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(61, 169, 252, 0.07), transparent 42%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.64), rgba(8, 8, 8, 0.38));
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
}

.thesis-inner {
  width: min(100%, 1220px);
  margin: 0 auto;
}

.thesis-kicker,
.ecosystem-heading span,
.workflow-heading span {
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.thesis-line {
  margin: 0 auto;
  max-width: 1040px;
  color: var(--text);
  font-size: clamp(1.55rem, 3.6vw, 3.85rem);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-align: center;
}

.thesis-line-dim {
  max-width: 900px;
  color: rgba(245, 245, 240, 0.48);
}

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

.section-heading-left {
  justify-content: start;
  text-align: left;
}

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

.section-heading p {
  width: min(100%, 760px);
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.journey-section,
.included-section,
.comparison-section,
.faq-section {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.28), rgba(10, 10, 10, 0.18));
  backdrop-filter: blur(8px) saturate(110%);
  -webkit-backdrop-filter: blur(8px) saturate(110%);
}

.journey-grid,
.included-grid,
.faq-grid {
  display: grid;
  width: min(100%, 1220px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

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

.journey-grid article,
.included-grid article,
.faq-grid article {
  position: relative;
  min-height: 224px;
  padding: 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-grid article::before,
.included-grid article::before,
.faq-grid article::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left top / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left top / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right top / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right top / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left bottom / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left bottom / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right bottom / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right bottom / 2px 18px no-repeat;
  transform: scale(0.98);
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-grid article::after,
.included-grid article::after,
.faq-grid article::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  opacity: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.008));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: scale(0.988);
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.journey-grid h3,
.included-grid h3,
.faq-grid h3 {
  margin: 3rem 0 0.8rem;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1;
}

.journey-grid h3 {
  margin-top: 1.2rem;
}

.journey-figure {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 56px;
  height: 56px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--accent);
  opacity: 0.92;
}

.journey-figure svg {
  width: 100%;
  height: 100%;
  display: block;
}

.included-grid h3,
.faq-grid h3 {
  margin-top: 0;
}

.journey-grid p,
.included-grid p,
.faq-grid p {
  margin: 0;
  color: rgba(245, 245, 240, 0.62);
  font-size: 0.98rem;
  line-height: 1.6;
}

.journey-grid p {
  color: rgba(245, 245, 240, 0.82);
  font-size: 1.04rem;
  line-height: 1.6;
  max-width: 36ch;
}

.journey-grid h3 {
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  margin-top: 1.1rem;
  max-width: 22ch;
}

@media (hover: hover) and (pointer: fine) {
  .journey-grid article:hover,
  .included-grid article:hover,
  .faq-grid article:hover {
    transform: translateY(-3px);
    border-color: transparent;
    background: rgba(255, 255, 255, 0.045);
    z-index: 2;
  }

  .journey-grid article:hover::before,
  .journey-grid article:hover::after,
  .included-grid article:hover::before,
  .included-grid article:hover::after,
  .faq-grid article:hover::before,
  .faq-grid article:hover::after {
    opacity: 1;
    transform: scale(1);
  }
}

.benefits-section {
  padding-top: 56px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 18% 22%, rgba(61, 169, 252, 0.06), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(100, 216, 255, 0.055), transparent 24%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.34), rgba(10, 10, 10, 0.2));
  backdrop-filter: blur(9px) saturate(112%);
  -webkit-backdrop-filter: blur(9px) saturate(112%);
}

.benefit-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-row-flip .benefit-visual {
  order: 2;
}

.benefit-visual {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 32px clamp(28px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)) left 18px top 18px / 18px 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)) left 18px top 18px / 1px 18px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)) right 18px bottom 18px / 18px 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)) right 18px bottom 18px / 1px 18px no-repeat,
    rgba(255, 255, 255, 0.026);
  text-align: center;
}

.benefit-visual span,
.benefit-visual strong {
  display: block;
}

.benefit-visual span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.benefit-visual strong {
  margin-top: 0.5rem;
  color: var(--text);
  font-size: clamp(1.45rem, 2.6vw, 2.6rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
}

.benefit-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.benefit-copy p {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: rgba(245, 245, 240, 0.62);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.conversion-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: min(calc(100% - 36px), 1220px);
  margin: 0 auto;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.conversion-band h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.conversion-band p {
  margin: 0.55rem 0 0;
  color: rgba(245, 245, 240, 0.62);
  line-height: 1.55;
}

.conversion-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #050505;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.included-grid article {
  min-height: 178px;
}

.comparison-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.comparison-table {
  width: min(100%, 1220px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.75fr) repeat(3, minmax(0, 1fr));
}

.comparison-row > * {
  min-height: 76px;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 245, 240, 0.68);
  line-height: 1.45;
}

.comparison-head > * {
  min-height: 56px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-row span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-row strong {
  color: var(--text);
  font-weight: 520;
}

.comparison-row em {
  font-style: normal;
  color: rgba(245, 245, 240, 0.48);
}

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

.faq-grid article {
  min-height: 220px;
}

.final-cta-section {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 72px;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 50% 20%, rgba(61, 169, 252, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.42));
  backdrop-filter: blur(9px) saturate(112%);
  -webkit-backdrop-filter: blur(9px) saturate(112%);
}

.final-cta-section h2 {
  max-width: 900px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.4rem, 6vw, 6.8rem);
  font-weight: 520;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.final-cta-section > p {
  max-width: 42rem;
  margin: 1.2rem auto 1.8rem;
  color: rgba(245, 245, 240, 0.62);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.final-capture {
  width: min(100%, 720px);
}

.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: 1px solid rgba(255, 255, 255, 0.12);
  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);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-3px);
    border-right-color: transparent;
    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);
  }

  .cards-grid:has(.card-intelligence:hover) .card-intelligence,
  .cards-grid:has(.card-memory:hover) .card-intelligence,
  .cards-grid:has(.card-orchestration:hover) .card-memory {
    border-right-color: transparent;
  }

  .cards-grid:has(.card-orchestration:hover) .card-orchestration {
    border-right-color: transparent;
  }
}

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

.card-copy .card-tag {
  margin: 0 0 0.7rem;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: clamp(1.95rem, 3.2vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: none;
  width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.card-copy h3 {
  margin: 0 0 0.5rem;
  max-width: 32ch;
  color: rgba(245, 245, 240, 0.78);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 500;
}

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

.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-heading,
.workflow-heading {
  width: min(100%, 1220px);
  margin: 0 auto 1.6rem;
  text-align: center;
}

.ecosystem-heading h2,
.workflow-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.ecosystem-heading p {
  width: min(100%, 780px);
  margin: 1rem auto 0;
  color: rgba(245, 245, 240, 0.62);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.6;
}

.workflow-section {
  width: 100%;
  padding: 58px clamp(18px, 3vw, 40px) 62px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.24), rgba(10, 10, 10, 0.42)),
    radial-gradient(circle at 18% 24%, rgba(61, 169, 252, 0.06), transparent 26%),
    radial-gradient(circle at 82% 70%, rgba(100, 216, 255, 0.06), transparent 24%);
  backdrop-filter: blur(9px) saturate(112%);
  -webkit-backdrop-filter: blur(9px) saturate(112%);
}

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

.workflow-lanes article {
  position: relative;
  min-height: 260px;
  padding: 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-lanes article:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-lanes article {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-lanes article::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left top / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left top / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right top / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right top / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left bottom / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left bottom / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right bottom / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right bottom / 2px 18px no-repeat;
  transform: scale(0.98);
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-lanes article::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  opacity: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.008));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: scale(0.988);
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-lanes article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.workflow-lanes h3 {
  margin: 4.2rem 0 0.8rem;
  color: var(--text);
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1;
}

.workflow-lanes p {
  margin: 0;
  color: rgba(245, 245, 240, 0.62);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (hover: hover) and (pointer: fine) {
  .workflow-lanes article:hover {
    transform: translateY(-3px);
    border-color: transparent;
    background: rgba(255, 255, 255, 0.045);
    z-index: 2;
  }

  .workflow-lanes article:hover::before,
  .workflow-lanes article:hover::after {
    opacity: 1;
    transform: scale(1);
  }
}

.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: default;
  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 {
  z-index: 5;
}

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

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

.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,
  .workflow-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,
  .ecosystem-heading,
  .workflow-heading,
  .workflow-lanes {
    width: min(100%, 1080px);
  }

  .card {
    padding-inline: 22px;
  }

  .card-copy h3 {
    font-size: clamp(0.94rem, 1.2vw, 1.06rem);
  }

  .card-copy .card-tag {
    font-size: clamp(1.85rem, 3vw, 2.9rem);
  }

  .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 (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

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

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

  .nav-links {
    display: none;
  }

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

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

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

  .hero-proof-grid {
    grid-template-columns: 1fr;
    width: min(100%, 420px);
  }

  .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,
  .workflow-section,
  .transformation-section,
  .footer {
    padding: 18px 14px;
  }

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

  .ecosystem-wrap {
    width: 100%;
  }

  .ecosystem-stage {
    --graph-scale: 0.3;
    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: 92svh;
    padding-top: 118px;
    padding-bottom: 24px;
  }

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

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

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

  .hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

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

  .thesis-band {
    padding: 42px 14px;
  }

  .thesis-line {
    font-size: clamp(1.84rem, 10vw, 3.3rem);
  }

  .ecosystem-heading,
  .workflow-heading {
    margin-bottom: 1.2rem;
  }

  .ecosystem-heading h2,
  .workflow-heading h2 {
    font-size: clamp(1.9rem, 9.5vw, 3rem);
  }

  .workflow-lanes {
    grid-template-columns: 1fr;
    margin-top: 1.4rem;
  }

  .workflow-lanes article {
    min-height: 210px;
  }

  .workflow-lanes h3 {
    margin-top: 2.8rem;
  }

  .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-copy h3 {
    max-width: none;
    font-size: 1rem;
  }

  .card-copy .card-tag {
    font-size: clamp(2.4rem, 6vw, 3.6rem);
  }

  .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-copy h3 {
    font-size: 0.92rem;
    max-width: none;
  }

  .card-copy .card-tag {
    font-size: 2.2rem;
  }

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

@media (max-width: 980px) {
  .hero-proof-bar,
  .journey-grid,
  .included-grid,
  .faq-grid,
  .benefit-row,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .hero-proof-bar span,
  .comparison-row > * {
    border-right: 0;
  }

  .benefit-row-flip .benefit-visual {
    order: 0;
  }

  .comparison-table {
    border-top: 0;
  }

  .comparison-row {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .comparison-head {
    display: none;
  }

  .conversion-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-proof-bar {
    width: 100%;
    margin-top: 1rem;
  }

  .hero-proof-bar span {
    min-height: 58px;
    text-align: center;
  }

  .journey-section,
  .benefits-section,
  .included-section,
  .comparison-section,
  .faq-section,
  .final-cta-section {
    padding: 34px 14px;
  }

  .journey-grid article,
  .included-grid article,
  .faq-grid article {
    min-height: 170px;
    padding: 1rem;
  }

  .journey-grid h3 {
    margin-top: 2rem;
  }

  .benefit-row {
    gap: 1rem;
    padding: 22px 0;
  }

  .benefit-visual {
    min-height: 190px;
  }

  .conversion-band {
    width: 100%;
    padding: 1.1rem;
  }

  .conversion-band a {
    width: 100%;
  }

  .final-cta-section h2 {
    font-size: clamp(2.4rem, 15vw, 4.4rem);
  }
}

/* ============================================================
   v5 Update: May 5, 2026 launch - appended sections & overrides
   See: csm-creator-overviews/v5-update-changelog.md
   ============================================================ */

/* Patch 3 - Hero proof stamp (date + window anchor under proof bar) */
.hero-proof-stamp {
  margin-top: 18px;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.55);
}

/* Patch 4 - Pain narrative section */
.pain-narrative {
  padding: 96px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.pain-inner {
  max-width: 720px;
  margin: 0 auto;
}
.pain-kicker {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-amber, #ff9d5c);
  margin-bottom: 28px;
}
.pain-line {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(245, 245, 240, 0.86);
  margin-bottom: 20px;
}
.pain-payoff {
  margin-top: 32px;
  font-size: 1.5rem;
  font-weight: 520;
  letter-spacing: -0.02em;
  color: #f5f5f0;
}
@media (max-width: 768px) {
  .pain-narrative { padding: 72px 24px; }
  .pain-line { font-size: 1.02rem; }
  .pain-payoff { font-size: 1.25rem; }
}

/* Patch 5 - Stories vs clips asymmetry section */
.asymmetry-section {
  padding: 120px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.asymmetry-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.asymmetry-quote {
  margin: 72px auto 0;
  max-width: 920px;
  text-align: center;
}
.asymmetry-quote p {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.asymmetry-quote cite {
  display: block;
  margin-top: 1.1rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: normal;
}
.asymmetry-headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #f5f5f0;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  text-align: center;
}
.asymmetry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.asymmetry-col-tag {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.5);
  margin-bottom: 12px;
}
.asymmetry-col p:not(.asymmetry-col-tag) {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(245, 245, 240, 0.86);
}
@media (max-width: 768px) {
  .asymmetry-section { padding: 80px 24px; }
  .asymmetry-grid { grid-template-columns: 1fr; gap: 32px; }
  .asymmetry-headline { margin-bottom: 40px; }
}

/* Patch 7 - Compounding loop section */
.compounding-section {
  padding: 120px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.compounding-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.compounding-kicker {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan, #64d8ff);
  margin-bottom: 24px;
}
.compounding-section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #f5f5f0;
  margin: 0 auto 56px;
  text-align: center;
}
.compounding-table {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  overflow: hidden;
}
.compounding-row {
  display: grid;
  grid-template-columns: 140px 200px 1fr;
  gap: 32px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  align-items: center;
}
.compounding-row:last-child { border-bottom: none; }
.compounding-head { background: rgba(255, 255, 255, 0.04); }
.compounding-head span {
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.5);
}
.compounding-row strong {
  font-size: 1.4rem;
  font-weight: 520;
  color: var(--accent, #3DA9FC);
}
.compounding-row span { color: rgba(245, 245, 240, 0.86); }
.compounding-row em {
  font-style: normal;
  color: rgba(245, 245, 240, 0.6);
}
.compounding-foot {
  margin-top: 36px;
  font-size: 1.1rem;
  color: rgba(245, 245, 240, 0.7);
  text-align: center;
}
@media (max-width: 768px) {
  .compounding-section { padding: 80px 24px; }
  .compounding-row {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 18px 20px;
  }
  .compounding-row em { grid-column: 1 / -1; font-size: 0.95rem; }
  .compounding-head span:nth-child(3) { display: none; }
}

/* Patch 9 - Tool list inside comparison table header */
.tool-list {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.66rem;
  letter-spacing: 0.10em;
  font-style: normal;
  color: rgba(245, 245, 240, 0.45);
  font-weight: 400;
  line-height: 1.5;
}

/* Patch 14 - comparison.svg illustration above the comparison table */
.comparison-illustration {
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 0 32px;
}
.comparison-illustration img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.35);
}
.comparison-illustration figcaption {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-mono, "Geist Mono", ui-monospace, monospace);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.55);
}
@media (max-width: 768px) {
  .comparison-illustration { margin-bottom: 40px; padding: 0 20px; }
  .comparison-illustration figcaption { font-size: 0.66rem; letter-spacing: 0.14em; }
}

/* Patch 15 - Hero urgency + proof stamp + ord superscript */
.hero-urgency {
  margin: 0.85rem 0 0;
  width: calc(100% - var(--email-action-width) - var(--email-row-gap));
  max-width: calc(100% - var(--email-action-width) - var(--email-row-gap));
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
sup.ord {
  font-size: 0.5em;
  vertical-align: top;
  position: relative;
  top: 0.2em;
  letter-spacing: 0.02em;
  font-feature-settings: "sups";
  margin-left: 0.04em;
}

/* Patch 16 - Asymmetry section: spectrum + scoreboard cards */
.asymmetry-spectrum {
  width: min(100%, 980px);
  margin: 0 auto 56px;
}
.asymmetry-spectrum-track {
  position: relative;
  height: 64px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
}
.asymmetry-spectrum-track::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(61, 169, 252, 0.55) 0%,
    rgba(255, 255, 255, 0.20) 38%,
    rgba(255, 255, 255, 0.20) 62%,
    rgba(100, 216, 255, 0.55) 100%);
}
.asymmetry-spectrum-tick {
  position: absolute;
  top: 8px;
  left: var(--pos);
  transform: translateX(-50%);
  color: rgba(245, 245, 240, 0.5);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.asymmetry-spectrum-tick::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
}
.asymmetry-spectrum-marker {
  position: absolute;
  top: 50%;
  left: var(--pos);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: 2px solid rgba(10, 10, 10, 0.9);
}
.asymmetry-marker-hook {
  background: var(--accent);
  box-shadow: 0 0 18px rgba(61, 169, 252, 0.45);
}
.asymmetry-marker-doc {
  background: var(--accent-cool);
  box-shadow: 0 0 18px rgba(100, 216, 255, 0.45);
}
.asymmetry-spectrum-label {
  margin: 0;
  text-align: center;
  color: rgba(245, 245, 240, 0.6);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.asymmetry-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 12px;
}
.asymmetry-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}
.asymmetry-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
}
.asymmetry-card-ship::before { background: var(--accent); }
.asymmetry-card-conditional::before { background: var(--accent-warm); }
.asymmetry-card-noise::before { background: rgba(255, 100, 100, 0.65); }
.asymmetry-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.asymmetry-card-tag {
  color: rgba(245, 245, 240, 0.66);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.asymmetry-card-badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.asymmetry-badge-ship {
  border: 1px solid rgba(61, 169, 252, 0.45);
  background: rgba(61, 169, 252, 0.10);
  color: var(--accent);
}
.asymmetry-badge-conditional {
  border: 1px solid rgba(255, 157, 92, 0.45);
  background: rgba(255, 157, 92, 0.10);
  color: var(--accent-warm);
}
.asymmetry-badge-noise {
  border: 1px solid rgba(255, 110, 110, 0.45);
  background: rgba(255, 110, 110, 0.10);
  color: rgba(255, 170, 170, 0.95);
}
.asymmetry-card-duration {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.asymmetry-card-body {
  margin: 0;
  color: rgba(245, 245, 240, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}
.asymmetry-card-body strong {
  color: var(--text);
  font-weight: 520;
}
@media (hover: hover) and (pointer: fine) {
  .asymmetry-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.045);
  }
}
@media (max-width: 768px) {
  .asymmetry-cards { grid-template-columns: 1fr; gap: 0.9rem; }
  .asymmetry-spectrum { display: none; }
}

/* Patch 17 - IMS overture + rotating title */
.ims-overture {
  width: 100%;
  padding: 96px clamp(18px, 3vw, 40px) 48px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.ims-overture-tag {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ims-overture-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 1;
}
.ims-rotating-title {
  display: inline-block;
  will-change: opacity, transform, filter;
  transition:
    opacity 380ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 380ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ims-rotating-title.is-leaving {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(-10px) scale(0.985);
}
.ims-rotating-title.is-entering {
  animation: subheadline-focus-in 520ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ims-overture-lead {
  margin: 1.4rem auto 0;
  max-width: 640px;
  color: rgba(245, 245, 240, 0.66);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

/* Patch 18 - IMS pillars (each layer = its own section) */
.ims-pillar {
  padding: 88px clamp(18px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.28), rgba(10, 10, 10, 0.18));
  backdrop-filter: blur(8px) saturate(110%);
  -webkit-backdrop-filter: blur(8px) saturate(110%);
}
.ims-pillar-inner {
  width: min(100%, 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.ims-pillar-flip .ims-pillar-visual { order: -1; }
.ims-pillar-tag {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ims-pillar-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 3.4vw, 3.1rem);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.ims-pillar-lead {
  max-width: 38rem;
  margin: 1.2rem 0 1.6rem;
  color: rgba(245, 245, 240, 0.74);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}
.ims-pillar-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.ims-pillar-list li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(245, 245, 240, 0.66);
  font-size: 0.98rem;
  line-height: 1.55;
}
.ims-pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.ims-pillar-visual {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.ims-pillar-visual .workflow-shell {
  position: absolute;
  inset: 32px;
  height: auto;
}
.ims-pillar-visual .memory-visual {
  position: absolute;
  inset: 0 0 0;
  height: 100%;
}
.ims-pillar-orchestration .ims-pillar-visual {
  position: relative;
  min-height: 360px;
}
.ims-pillar-orchestration .ims-pillar-visual .doc-layer {
  position: absolute;
}
@media (max-width: 980px) {
  .ims-pillar-inner { grid-template-columns: 1fr; }
  .ims-pillar-flip .ims-pillar-visual { order: 0; }
  .ims-pillar-visual { min-height: 280px; }
}

/* Patch 19 - Apps bento */
.apps-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1220px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.apps-bento-tile {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-height: 200px;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
              background 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.apps-tile-wide { grid-column: span 2; }
.apps-tile-feature {
  background:
    radial-gradient(circle at 18% 22%, rgba(61, 169, 252, 0.06), transparent 32%),
    rgba(255, 255, 255, 0.035);
}
.apps-tile-founder {
  background:
    radial-gradient(circle at 82% 78%, rgba(100, 216, 255, 0.05), transparent 28%),
    rgba(255, 255, 255, 0.03);
}
.apps-tile-tag {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.apps-bento-tile h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.apps-bento-tile p {
  margin: 0;
  color: rgba(245, 245, 240, 0.62);
  font-size: 0.96rem;
  line-height: 1.55;
}
.apps-bento-tile::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left top / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left top / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right top / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right top / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left bottom / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left bottom / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right bottom / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right bottom / 2px 18px no-repeat;
  transform: scale(0.98);
  transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (pointer: fine) {
  .apps-bento-tile:hover {
    transform: translateY(-3px);
    border-color: transparent;
    background: rgba(255, 255, 255, 0.05);
    z-index: 2;
  }
  .apps-bento-tile:hover::before { opacity: 1; transform: scale(1); }
}
@media (max-width: 980px) {
  .apps-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .apps-tile-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .apps-bento { grid-template-columns: 1fr; }
  .apps-tile-wide { grid-column: span 1; }
}

/* Patch 20 - Partners band */
.partners-band {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  width: min(calc(100% - 36px), 1220px);
  margin: 0 auto;
  padding: 36px 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(circle at 50% 50%, rgba(61, 169, 252, 0.05), transparent 45%),
    rgba(255, 255, 255, 0.02);
  text-align: center;
}
.partners-tag {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.partners-name {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1;
}
.partners-context {
  margin: 0;
  color: rgba(245, 245, 240, 0.6);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* Patch 25 - The 3 C's: Convenience, Control, Creativity */
.three-c-section {
  width: 100%;
  padding: 56px clamp(18px, 3vw, 40px) 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(61, 169, 252, 0.05), transparent 38%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.34), rgba(10, 10, 10, 0.20));
  backdrop-filter: blur(9px) saturate(112%);
  -webkit-backdrop-filter: blur(9px) saturate(112%);
}
.three-c-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1220px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.three-c-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 260px;
  padding: 1.6rem 1.4rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
              background 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.three-c-mark {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: rgba(245, 245, 240, 0.18);
  font-family: var(--font-ui);
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
}
.three-c-mark sub {
  font-size: 0.5em;
  vertical-align: baseline;
  letter-spacing: 0;
}
.three-c-tag {
  margin: 0;
  display: inline-flex;
  align-self: start;
  padding: 0.32rem 0.7rem;
  border: 1px solid rgba(61, 169, 252, 0.4);
  border-radius: 999px;
  background: rgba(61, 169, 252, 0.08);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.three-c-headline {
  margin: 0.6rem 0 0;
  color: var(--text);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.three-c-body {
  margin: 0;
  color: rgba(245, 245, 240, 0.66);
  font-size: 0.96rem;
  line-height: 1.6;
}
.three-c-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left top / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left top / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right top / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right top / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left bottom / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left bottom / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right bottom / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right bottom / 2px 18px no-repeat;
  transform: scale(0.98);
  transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (pointer: fine) {
  .three-c-card:hover {
    transform: translateY(-3px);
    border-color: transparent;
    background: rgba(255, 255, 255, 0.045);
    z-index: 2;
  }
  .three-c-card:hover::before { opacity: 1; transform: scale(1); }
  .three-c-card:hover .three-c-mark { color: rgba(245, 245, 240, 0.32); }
}
@media (max-width: 980px) {
  .three-c-grid { grid-template-columns: 1fr; }
}

/* Patch 26 - Use cases + advantages bento */
.usecases-section {
  width: 100%;
  padding: 56px clamp(18px, 3vw, 40px) 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(61, 169, 252, 0.05), transparent 38%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.34), rgba(10, 10, 10, 0.20));
  backdrop-filter: blur(9px) saturate(112%);
  -webkit-backdrop-filter: blur(9px) saturate(112%);
}
.usecases-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  width: min(100%, 1220px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.usecase-tile {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 240px;
  padding: 1.7rem 1.6rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
              background 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.usecase-tile.usecase-flip {
  padding: 0;
  background: transparent;
  perspective: 1200px;
}

.usecase-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .usecase-tile.usecase-flip:hover .usecase-flip-inner,
  .usecase-tile.usecase-flip:focus-visible .usecase-flip-inner {
    transform: rotateY(180deg);
  }
}

.usecase-tile.is-flipped .usecase-flip-inner {
  transform: rotateY(180deg);
}

.usecase-face {
  position: absolute;
  inset: 0;
  display: grid;
  padding: 1.7rem 1.6rem 1.5rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.usecase-front {
  place-items: center;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 2rem 1.6rem 2.6rem;
}

.usecase-front h3 {
  margin: 0;
  max-width: 22ch;
  color: var(--text);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.18;
  text-wrap: balance;
}

.usecase-flip-hint {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
  white-space: nowrap;
}

.usecase-back {
  transform: rotateY(180deg);
  align-content: center;
  justify-items: center;
  gap: 0.85rem;
  text-align: center;
  padding: 1.7rem 1.6rem;
  background: linear-gradient(180deg, rgba(61, 169, 252, 0.06), rgba(255, 255, 255, 0.025) 38%);
}

.usecase-back .usecase-kind {
  margin: 0 0 0.1rem;
}

.usecase-back p {
  margin: 0;
  max-width: 28ch;
  color: rgba(245, 245, 240, 0.82);
  font-size: 0.98rem;
  line-height: 1.55;
}

.usecase-tile.usecase-flip:focus-visible {
  outline: 2px solid rgba(61, 169, 252, 0.92);
  outline-offset: -2px;
}

@media (hover: hover) and (pointer: fine) {
  .usecase-tile.usecase-flip:hover .usecase-front {
    background: rgba(255, 255, 255, 0.04);
  }
  .usecase-tile.usecase-flip:hover .usecase-flip-hint {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .usecase-flip-inner {
    transition: none;
  }
}
.usecase-kind {
  align-self: start;
  display: inline-block;
  padding: 0;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.usecase-kind-case {
  color: var(--accent);
}
.usecase-kind-adv {
  color: rgba(245, 245, 240, 0.46);
}
.usecase-tile h3 {
  margin: 0.35rem 0 0;
  color: var(--text);
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.18;
}
.usecase-tile p {
  margin: 0;
  color: rgba(245, 245, 240, 0.66);
  font-size: 0.96rem;
  line-height: 1.55;
}
.usecase-tile::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left top / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left top / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right top / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right top / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left bottom / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) left bottom / 2px 18px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right bottom / 18px 2px no-repeat,
    linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)) right bottom / 2px 18px no-repeat;
  transform: scale(0.98);
  transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (pointer: fine) {
  .usecase-tile:hover {
    transform: translateY(-3px);
    border-color: transparent;
    background: rgba(255, 255, 255, 0.045);
    z-index: 2;
  }
  .usecase-tile:hover::before { opacity: 1; transform: scale(1); }
}
@media (max-width: 980px) {
  .usecases-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .usecases-bento { grid-template-columns: 1fr; }
}

/* Patch 27 - Proof band (team + launch partner, two cells) */
.proof-band {
  width: min(calc(100% - 36px), 1220px);
  margin: 0 auto 1rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(circle at 0% 50%, rgba(61, 169, 252, 0.06), transparent 42%),
    radial-gradient(circle at 100% 50%, rgba(100, 216, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.025);
}
.proof-band-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.proof-band-cell {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.4rem;
  min-height: 180px;
  padding: 32px 1.4rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}
.proof-band-cell:last-child {
  border-right: 0;
}
.proof-band-tag {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.proof-band-stat {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1;
}
.proof-band-context {
  margin: 0.2rem 0 0;
  max-width: 32rem;
  color: rgba(245, 245, 240, 0.62);
  font-size: 0.94rem;
  line-height: 1.55;
}
@media (max-width: 760px) {
  .proof-band-inner { grid-template-columns: 1fr; }
  .proof-band-cell { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
  .proof-band-cell:last-child { border-bottom: 0; }
}

/* Patch 21 - Hero eyebrow (category line above h1) */
.hero-eyebrow {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Patch 22 - CTA microcopy under email button */
.cta-microcopy {
  margin: 0.8rem 0 0;
  width: calc(100% - var(--email-action-width) - var(--email-row-gap));
  max-width: calc(100% - var(--email-action-width) - var(--email-row-gap));
  color: rgba(245, 245, 240, 0.5);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 640px) {
  .cta-microcopy { width: 100%; max-width: 100%; }
}

/* Patch 23 - Founders band (above partners) */
.founders-band {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  width: min(calc(100% - 36px), 1220px);
  margin: 0 auto 1rem;
  padding: 32px 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}
.founders-tag {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.founders-names {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1;
}
.founders-context {
  margin: 0.2rem 0 0;
  max-width: 36rem;
  color: rgba(245, 245, 240, 0.62);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Patch 24 - Movie Maker hierarchy bump (flagship tile gets visual weight) */
.apps-tile-feature {
  min-height: 260px;
  padding: 1.8rem 1.7rem;
}
.apps-tile-feature h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}
.apps-tile-feature p {
  font-size: 1.04rem;
  max-width: 32rem;
}
.apps-tile-feature::after {
  content: "Preview · timeline · scene compile";
  display: block;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 245, 240, 0.5);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.apps-tile-feature {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}
