* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 22%, #000 0 34%, transparent 78%);
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .055), transparent 64%);
  left: 50%;
  top: 10%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.click-spark-layer {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.click-spark {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--spark-size);
  height: 2px;
  border-radius: 999px;
  background: var(--spark-color);
  box-shadow: 0 0 12px var(--spark-color);
  opacity: 0;
  transform:
    translate(var(--spark-x), var(--spark-y))
    rotate(var(--spark-angle))
    translateX(0)
    scaleX(1);
  transform-origin: left center;
  animation: clickSpark var(--spark-duration) ease-out forwards;
}

@keyframes clickSpark {
  0% {
    opacity: 1;
    transform:
      translate(var(--spark-x), var(--spark-y))
      rotate(var(--spark-angle))
      translateX(0)
      scaleX(1);
  }

  100% {
    opacity: 0;
    transform:
      translate(var(--spark-x), var(--spark-y))
      rotate(var(--spark-angle))
      translateX(var(--spark-radius))
      scaleX(var(--spark-extra-scale));
  }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: rgba(0, 0, 0, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.topbar-left,
.topbar-actions {
  display: flex;
  align-items: center;
}

.topbar-left {
  gap: 38px;
  min-width: 0;
}

.topbar-actions {
  gap: 10px;
  flex-shrink: 0;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  letter-spacing: .18em;
  font-weight: 700;
  flex-shrink: 0;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(255, 255, 255, .1);
}

nav a {
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  margin-left: 0;
  margin-right: 28px;
  font-size: 14px;
}

nav a:hover {
  color: #fff;
}

.nav-login,
.nav-trial {
  min-width: 76px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  font: inherit;
  cursor: pointer;
}

.nav-login {
  color: #fff;
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .08);
}

.nav-login:hover {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .12);
}

.nav-trial {
  min-width: 120px;
  color: #000;
  background: #fff;
  font-weight: 650;
  box-shadow: 0 10px 28px rgba(255, 255, 255, .1);
}

.nav-trial:hover {
  background: rgba(255, 255, 255, .9);
}

.contact-popover {
  position: fixed;
  top: 72px;
  right: 28px;
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
}

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

.contact-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 26px;
  color: #fff;
  background: rgba(8, 8, 8, .9);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .52);
  backdrop-filter: blur(20px);
}

.contact-card h2 {
  margin: 10px 0 16px;
  font-size: 30px;
  line-height: 1;
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .06);
  font: 22px/1 Arial, sans-serif;
  cursor: pointer;
}

.contact-close:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
}

.contact-email {
  display: block;
  margin-bottom: 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-socials {
  display: grid;
  gap: 8px;
}

.contact-socials a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-weight: 700;
}

.contact-socials a::after {
  content: "↗";
  color: rgba(255, 255, 255, .42);
}

.contact-socials a:hover {
  color: #fff;
}

.social-dock {
  justify-self: start;
  display: flex;
  gap: 24px;
  padding: 0;
  background: transparent;
}

.social-dock a {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .74);
  text-decoration: none;
  transition: transform .2s ease, color .2s ease, opacity .2s ease;
}

.social-dock a:hover {
  color: #fff;
  opacity: 1;
  transform: translateY(-2px);
}

.social-dock svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.galaxy-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .62;
  mix-blend-mode: screen;
}

.topbar {
  position: relative;
  z-index: 2;
}

main,
footer {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 42px 80px;
  overflow: hidden;
}

.subpage-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: 80px;
}

.subpage-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 42px 64px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, .56);
  text-decoration: none;
  font-size: 14px;
}

.back-link:hover {
  color: #fff;
}

.subpage-hero h1 {
  max-width: 900px;
  margin: 18px 0 22px;
}

.subpage-hero .lead {
  max-width: 760px;
}

.subpage-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 42px 110px;
}

.is-about-page #page-snapshot,
.is-about-page #page-grid,
.is-about-page .subpage-showcase,
.is-about-page .subpage-detail,
.is-about-page .subpage-list,
.is-about-page .subpage-faq,
.is-about-page .subpage-note {
  display: none;
}

.is-philosophy-page #page-snapshot,
.is-philosophy-page #page-grid,
.is-philosophy-page .subpage-showcase,
.is-philosophy-page .subpage-detail,
.is-philosophy-page .subpage-list,
.is-philosophy-page .subpage-faq,
.is-philosophy-page .subpage-note {
  display: none;
}

.is-platform-page #page-snapshot,
.is-platform-page #page-grid,
.is-platform-page .subpage-showcase,
.is-platform-page .subpage-detail,
.is-platform-page .subpage-list,
.is-platform-page .subpage-faq,
.is-platform-page .subpage-note {
  display: none;
}

.is-pricing-page #page-snapshot,
.is-pricing-page #page-grid,
.is-pricing-page .subpage-showcase,
.is-pricing-page .subpage-detail,
.is-pricing-page .subpage-list,
.is-pricing-page .subpage-faq,
.is-pricing-page .subpage-note {
  display: none;
}

.is-help-page #page-snapshot,
.is-help-page #page-grid,
.is-help-page .subpage-showcase,
.is-help-page .subpage-detail,
.is-help-page .subpage-list,
.is-help-page .subpage-faq,
.is-help-page .subpage-note {
  display: none;
}

.is-flow-page #page-snapshot,
.is-flow-page #page-grid,
.is-flow-page .subpage-showcase,
.is-flow-page .subpage-detail,
.is-flow-page .subpage-list,
.is-flow-page .subpage-faq,
.is-flow-page .subpage-note {
  display: none;
}

.is-contact-page #page-snapshot,
.is-contact-page #page-grid,
.is-contact-page .subpage-showcase,
.is-contact-page .subpage-detail,
.is-contact-page .subpage-list,
.is-contact-page .subpage-faq,
.is-contact-page .subpage-note {
  display: none;
}

.is-security-page #page-snapshot,
.is-security-page #page-grid,
.is-security-page .subpage-showcase,
.is-security-page .subpage-detail,
.is-security-page .subpage-list,
.is-security-page .subpage-faq,
.is-security-page .subpage-note {
  display: none;
}

.is-expression-page #page-snapshot,
.is-expression-page #page-grid,
.is-expression-page .subpage-showcase,
.is-expression-page .subpage-detail,
.is-expression-page .subpage-list,
.is-expression-page .subpage-faq,
.is-expression-page .subpage-note {
  display: none;
}

.is-transparency-page #page-snapshot,
.is-transparency-page #page-grid,
.is-transparency-page .subpage-showcase,
.is-transparency-page .subpage-detail,
.is-transparency-page .subpage-list,
.is-transparency-page .subpage-faq,
.is-transparency-page .subpage-note {
  display: none;
}

.is-terms-page #page-snapshot,
.is-terms-page #page-grid,
.is-terms-page .subpage-showcase,
.is-terms-page .subpage-detail,
.is-terms-page .subpage-list,
.is-terms-page .subpage-faq,
.is-terms-page .subpage-note {
  display: none;
}

.is-privacy-page #page-snapshot,
.is-privacy-page #page-grid,
.is-privacy-page .subpage-showcase,
.is-privacy-page .subpage-detail,
.is-privacy-page .subpage-list,
.is-privacy-page .subpage-faq,
.is-privacy-page .subpage-note {
  display: none;
}

.is-cookie-page #page-snapshot,
.is-cookie-page #page-grid,
.is-cookie-page .subpage-showcase,
.is-cookie-page .subpage-detail,
.is-cookie-page .subpage-list,
.is-cookie-page .subpage-faq,
.is-cookie-page .subpage-note {
  display: none;
}

.subpage-overview {
  display: grid;
  grid-template-columns: 180px 260px 1fr;
  gap: 36px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  margin-bottom: 42px;
}

.subpage-overview span {
  color: rgba(255, 255, 255, .42);
  font-size: 14px;
}

.subpage-overview strong {
  color: #fff;
  font-size: 18px;
}

.subpage-overview p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, .64);
}

.about-page {
  display: grid;
  gap: 72px;
}

.about-page[hidden] {
  display: none;
}

.about-identity,
.about-feature,
.about-create {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: clamp(36px, 8vw, 120px);
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 42px 0 72px;
}

.about-identity h2,
.about-feature h2,
.about-framework h2,
.about-create h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-identity p,
.about-feature p,
.about-framework p,
.about-create p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 19px;
}

.about-feature {
  grid-template-columns: minmax(280px, 440px) 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: clamp(32px, 5vw, 64px);
  background:
    radial-gradient(circle at 20% 48%, rgba(255, 255, 255, .15), transparent 28%),
    rgba(255, 255, 255, .025);
}

.about-logo-orbit {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .26);
  background:
    radial-gradient(circle, rgba(255, 255, 255, .12) 0 2px, transparent 3px),
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 28px 28px, 56px 56px, 56px 56px;
  box-shadow:
    inset 0 0 110px rgba(255, 255, 255, .07),
    0 0 90px rgba(255, 255, 255, .08);
}

.about-logo-orbit::before,
.about-logo-orbit::after,
.about-logo-orbit span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.about-logo-orbit::before {
  inset: 18%;
  border: 1px dashed rgba(255, 255, 255, .28);
}

.about-logo-orbit::after {
  inset: 36%;
  border: 8px solid rgba(255, 255, 255, .92);
  box-shadow: 0 0 42px rgba(255, 255, 255, .24);
}

.about-logo-orbit span {
  width: 11px;
  height: 11px;
  right: 21%;
  top: 28%;
  background: #fff;
  box-shadow:
    -140px 86px 0 rgba(255, 255, 255, .92),
    0 0 22px rgba(255, 255, 255, .9),
    -140px 86px 22px rgba(255, 255, 255, .5);
}

.about-framework {
  padding: 12px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.about-framework h2 {
  max-width: 980px;
  margin: 12px 0 36px;
}

.framework-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.framework-rail span {
  min-height: 96px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
  padding: 18px;
  color: #fff;
  font-weight: 700;
}

.framework-rail span:last-child {
  border-right: 0;
}

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

.about-capabilities article,
.about-why article {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, .025);
}

.about-capabilities span {
  color: rgba(255, 255, 255, .42);
  font: 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-capabilities h3,
.about-why h3 {
  margin: 56px 0 12px;
  font-size: 26px;
}

.about-capabilities p,
.about-why p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
}

.create-list {
  display: grid;
  gap: 0;
}

.create-list span {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
  color: #fff;
  font-size: 22px;
}

.create-list span:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.about-manifesto-panel {
  margin-top: 8px;
  padding: clamp(42px, 7vw, 92px);
  border-radius: 8px;
  background: #f4f4f0;
  color: #050505;
}

.about-manifesto-panel p {
  max-width: 960px;
  margin: 0 0 16px;
  color: rgba(0, 0, 0, .72);
  font-size: clamp(24px, 3vw, 46px);
  line-height: 1.22;
  font-weight: 700;
}

.about-manifesto-panel h2 {
  margin: 70px 0 10px;
  color: #000;
  font-size: clamp(42px, 6vw, 92px);
  line-height: .98;
}

.about-manifesto-panel span {
  display: block;
  margin-bottom: 18px;
  color: rgba(0, 0, 0, .56);
  font-size: 22px;
  font-weight: 700;
}

.philosophy-page {
  display: grid;
  gap: 18px;
}

.philosophy-page[hidden] {
  display: none;
}

.philosophy-intro,
.philosophy-ai,
.philosophy-belief {
  position: relative;
  min-height: 620px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: clamp(42px, 7vw, 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .13), transparent 32%),
    rgba(255, 255, 255, .018);
}

.philosophy-intro h2,
.philosophy-ai h2,
.philosophy-belief h2 {
  max-width: 940px;
  margin: 12px 0 24px;
  font-size: clamp(48px, 8vw, 118px);
  line-height: .96;
}

.philosophy-intro p:not(.kicker),
.philosophy-ai p:not(.kicker) {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
}

.philosophy-sun {
  position: absolute;
  right: clamp(32px, 10vw, 180px);
  top: 50%;
  width: min(34vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: .62;
  animation: philosophySpin 24s linear infinite;
}

.philosophy-sun::before,
.philosophy-sun::after,
.philosophy-sun span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.philosophy-sun::before {
  inset: 18%;
  border: 1px dashed rgba(255, 255, 255, .28);
}

.philosophy-sun::after {
  inset: 38%;
  border: 8px solid #fff;
  box-shadow: 0 0 54px rgba(255, 255, 255, .32);
}

.philosophy-sun span {
  width: 9px;
  height: 9px;
  left: 18%;
  top: 50%;
  background: #fff;
  box-shadow: 0 0 24px rgba(255, 255, 255, .9);
}

.philosophy-step {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
  min-height: 560px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(48px, 8vw, 96px) 0;
}

.philosophy-step h2 {
  max-width: 840px;
  margin: 12px 0 24px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 1;
}

.philosophy-step p:not(.kicker) {
  max-width: 720px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
}

.philosophy-symbol {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  background:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 42px 42px;
  overflow: hidden;
  box-shadow: inset 0 0 90px rgba(255, 255, 255, .055);
}

.taiji-symbol::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: linear-gradient(90deg, #fff 0 50%, #050505 50% 100%);
  box-shadow: 0 0 60px rgba(255, 255, 255, .18);
}

.taiji-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28%;
  width: 22%;
  height: 22%;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 44% 0 0 #fff;
  transform: translateX(-50%);
}

.yinyang-flow {
  background:
    radial-gradient(circle at 34% 50%, rgba(255, 255, 255, .92), transparent 24%),
    radial-gradient(circle at 68% 50%, rgba(255, 255, 255, .14), transparent 28%),
    linear-gradient(115deg, rgba(255, 255, 255, .88), transparent 48%, rgba(255, 255, 255, .08));
}

.four-directions {
  border-radius: 8px;
}

.four-directions::before,
.four-directions::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 12%;
  width: 1px;
  height: 76%;
  background: rgba(255, 255, 255, .35);
}

.four-directions::after {
  transform: rotate(90deg);
}

.four-directions span {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 28px rgba(255, 255, 255, .85);
}

.four-directions span:nth-child(1) { left: 50%; top: 12%; }
.four-directions span:nth-child(2) { right: 12%; top: 50%; }
.four-directions span:nth-child(3) { left: 50%; bottom: 12%; }
.four-directions span:nth-child(4) { left: 12%; top: 50%; }

.five-network span,
.nine-matrix span,
.ai-converge span {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 24px rgba(255, 255, 255, .85);
}

.five-network::before {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px dashed rgba(255, 255, 255, .28);
  border-radius: 50%;
}

.five-network::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, .32);
  box-shadow:
    54px -82px 0 rgba(255, 255, 255, .18),
    108px 72px 0 rgba(255, 255, 255, .18);
  transform: rotate(-28deg);
}

.five-network span {
  width: 11px;
  height: 11px;
}

.five-network span:nth-child(1) { left: 49%; top: 16%; }
.five-network span:nth-child(2) { right: 19%; top: 39%; }
.five-network span:nth-child(3) { right: 31%; bottom: 18%; }
.five-network span:nth-child(4) { left: 28%; bottom: 21%; }
.five-network span:nth-child(5) { left: 18%; top: 39%; }

.nine-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: 8px;
  padding: 18%;
  background: rgba(255, 255, 255, .08);
}

.nine-matrix span {
  position: static;
  width: auto;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0;
  background: rgba(255, 255, 255, .04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.nine-matrix span:nth-child(5) {
  background: #fff;
  box-shadow: 0 0 40px rgba(255, 255, 255, .7);
}

.philosophy-ai {
  margin-top: 18px;
}

.ai-converge {
  position: absolute;
  right: 12%;
  bottom: 16%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
}

.ai-converge::before {
  content: "";
  position: absolute;
  inset: 34%;
  border: 9px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 52px rgba(255, 255, 255, .3);
}

.ai-converge span {
  width: 8px;
  height: 8px;
}

.ai-converge span:nth-child(1) { left: 14%; top: 26%; }
.ai-converge span:nth-child(2) { right: 18%; top: 21%; }
.ai-converge span:nth-child(3) { left: 25%; bottom: 18%; }
.ai-converge span:nth-child(4) { right: 26%; bottom: 22%; }
.ai-converge span:nth-child(5) { left: 50%; top: 50%; }

.philosophy-belief {
  background: #f4f4f0;
  color: #050505;
}

.philosophy-belief p {
  max-width: 980px;
  margin: 0 0 14px;
  color: rgba(0, 0, 0, .72);
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.22;
  font-weight: 700;
}

.philosophy-belief h2 {
  color: #000;
}

.philosophy-belief span {
  color: rgba(0, 0, 0, .56);
  font-size: 22px;
  font-weight: 700;
}

@keyframes philosophySpin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.is-philosophy-page .philosophy-page {
  display: block;
}

.is-philosophy-page .philosophy-intro,
.is-philosophy-page .philosophy-ai {
  min-height: auto;
  display: block;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  padding: clamp(58px, 8vw, 118px) 0;
  overflow: visible;
  background: none;
}

.is-philosophy-page .philosophy-intro h2,
.is-philosophy-page .philosophy-ai h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
  letter-spacing: 0;
}

.is-philosophy-page .philosophy-intro p:not(.kicker),
.is-philosophy-page .philosophy-ai p:not(.kicker) {
  max-width: 820px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

.is-philosophy-page .philosophy-step {
  display: block;
  min-height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(52px, 7vw, 90px) 0;
}

.is-philosophy-page .philosophy-step > div {
  max-width: 920px;
}

.philosophy-index {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .46);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: .08em;
}

.philosophy-index span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  font-size: 13px;
  letter-spacing: 0;
}

.is-philosophy-page .philosophy-step h2 {
  max-width: 880px;
  margin: 14px 0 24px;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.is-philosophy-page .philosophy-step p:not(.kicker) {
  max-width: 780px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

.is-philosophy-page .philosophy-belief {
  min-height: auto;
  display: block;
  margin-top: clamp(52px, 7vw, 96px);
  border: 0;
  border-radius: 8px;
  padding: clamp(42px, 7vw, 92px);
  background: #f4f4f0;
  color: #050505;
}

.is-philosophy-page .philosophy-belief p {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.18;
}

.is-philosophy-page .philosophy-belief h2 {
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.02;
}

.platform-page {
  display: grid;
  gap: 0;
}

.platform-page[hidden] {
  display: none;
}

.platform-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(58px, 8vw, 118px) 0;
}

.platform-intro h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
}

.platform-intro p:not(.kicker) {
  max-width: 860px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

.platform-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 56px 0 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.platform-modules article {
  min-height: 360px;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, .08), transparent 28%),
    #030303;
}

.platform-modules span,
.platform-mission article span {
  display: block;
  color: rgba(255, 255, 255, .44);
  font: 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.platform-modules h2 {
  margin: 52px 0 18px;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.08;
}

.platform-modules p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
  line-height: 1.68;
}

.platform-modules ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .78);
}

.platform-modules li {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 10px;
}

.platform-mission {
  margin-top: 72px;
  padding: clamp(42px, 7vw, 92px);
  border-radius: 8px;
  background: #f4f4f0;
  color: #050505;
}

.platform-mission .kicker {
  color: rgba(0, 0, 0, .48);
}

.platform-mission h2 {
  max-width: 1080px;
  margin: 12px 0 70px;
  color: #000;
  font-size: clamp(34px, 4.8vw, 76px);
  line-height: 1.08;
}

.platform-mission > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, .14);
  border: 1px solid rgba(0, 0, 0, .14);
}

.platform-mission article {
  padding: 28px;
  background: #f4f4f0;
}

.platform-mission article span {
  color: rgba(0, 0, 0, .52);
}

.platform-mission article p {
  margin: 34px 0 0;
  color: rgba(0, 0, 0, .78);
  font-size: 24px;
  font-weight: 700;
}

.pricing-page {
  display: grid;
  gap: 56px;
}

.pricing-page[hidden] {
  display: none;
}

.pricing-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(58px, 8vw, 118px) 0;
}

.pricing-intro h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
}

.pricing-intro p:not(.kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

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

.pricing-grid article,
.enterprise-panel {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, .08), transparent 28%),
    rgba(255, 255, 255, .025);
}

.pricing-grid article {
  min-height: 520px;
  padding: clamp(26px, 3vw, 40px);
}

.pricing-grid h2 {
  margin: 42px 0 14px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.pricing-grid p:not(.kicker) {
  min-height: 86px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
}

.pricing-grid strong {
  display: block;
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1;
}

.pricing-grid strong span {
  color: rgba(255, 255, 255, .48);
  font-size: 16px;
  font-weight: 500;
}

.pricing-grid ul,
.enterprise-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .76);
}

.pricing-grid li,
.enterprise-panel li {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 12px;
}

.enterprise-panel {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr auto;
  gap: 36px;
  align-items: start;
  padding: clamp(30px, 5vw, 56px);
}

.enterprise-panel h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.08;
}

.enterprise-panel .btn {
  white-space: nowrap;
}

.help-page {
  display: grid;
  gap: 56px;
}

.help-page[hidden] {
  display: none;
}

.help-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(58px, 8vw, 118px) 0;
}

.help-intro h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
}

.help-intro p:not(.kicker) {
  max-width: 820px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

.help-intro a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.help-sections {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.help-sections article {
  display: grid;
  grid-template-columns: minmax(180px, 300px) 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 4vw, 48px);
  background: #030303;
}

.help-sections h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}

.help-sections h3 {
  grid-column: 2;
  margin: 0;
  font-size: 21px;
}

.help-sections p,
.help-sections ol {
  grid-column: 2;
  margin: -8px 0 22px;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
}

.help-sections ol {
  padding-left: 20px;
}

.help-contact {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: clamp(36px, 8vw, 120px);
  padding: clamp(42px, 7vw, 92px);
  border-radius: 8px;
  background: #f4f4f0;
  color: #050505;
}

.help-contact .kicker {
  color: rgba(0, 0, 0, .48);
}

.help-contact h2 {
  margin: 12px 0 18px;
  color: #000;
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1.05;
}

.help-contact p {
  color: rgba(0, 0, 0, .68);
  font-size: 19px;
}

.help-contact a {
  display: block;
  border-top: 1px solid rgba(0, 0, 0, .14);
  padding: 18px 0;
  color: #000;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}

.help-contact a:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, .14);
}

.help-contact a span {
  display: block;
  margin-bottom: 6px;
  color: rgba(0, 0, 0, .48);
  font: 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.flow-page {
  display: grid;
  gap: 56px;
}

.flow-page[hidden] {
  display: none;
}

.flow-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(58px, 8vw, 118px) 0;
}

.flow-intro h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
}

.flow-intro p:not(.kicker) {
  max-width: 820px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.flow-steps article {
  min-height: 390px;
  padding: clamp(24px, 3vw, 36px);
  background: #030303;
}

.flow-steps span,
.developer-flow span,
.flow-final span {
  display: block;
  color: rgba(255, 255, 255, .44);
  font: 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.flow-steps h2 {
  margin: 64px 0 18px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.flow-steps p {
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
  line-height: 1.68;
}

.developer-flow {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: clamp(36px, 8vw, 120px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 56px 0;
}

.developer-flow h2,
.flow-reasons h2 {
  margin: 12px 0 0;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.08;
}

.developer-flow > div:last-child {
  display: grid;
  gap: 0;
}

.developer-flow article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
}

.developer-flow article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.developer-flow h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.developer-flow p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
}

.flow-reasons {
  padding: 12px 0 0;
}

.flow-reasons > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.flow-reasons span {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 22px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .025);
}

.flow-final {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, .14);
}

.flow-final article {
  padding: clamp(30px, 5vw, 56px);
  background: #f4f4f0;
  color: #050505;
}

.flow-final span {
  color: rgba(0, 0, 0, .52);
}

.flow-final p {
  margin: 52px 0 0;
  color: rgba(0, 0, 0, .78);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-page {
  display: grid;
  gap: 56px;
}

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

.contact-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(58px, 8vw, 118px) 0;
}

.contact-intro h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
}

.contact-intro p:not(.kicker) {
  max-width: 820px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

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

.contact-cards article {
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, .025);
}

.contact-cards span,
.contact-final span {
  display: block;
  color: rgba(255, 255, 255, .44);
  font: 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-cards h2 {
  margin: 52px 0 14px;
  font-size: 28px;
  line-height: 1.1;
}

.contact-cards a {
  color: #fff;
  text-decoration: none;
  word-break: break-word;
}

.contact-cards ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .66);
}

.contact-cards li {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 10px;
}

.contact-cards p {
  color: rgba(255, 255, 255, .66);
}

.feedback-panel,
.contact-form-panel {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: clamp(36px, 8vw, 120px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 56px 0;
}

.feedback-panel h2,
.response-times h2,
.contact-form-panel h2 {
  margin: 12px 0 18px;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.08;
}

.feedback-panel p,
.contact-form-panel p {
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
}

.feedback-panel .btn {
  justify-self: start;
}

.response-times > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.response-times span {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 20px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .025);
}

.contact-form-panel form {
  display: grid;
  gap: 14px;
}

.contact-form-panel label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  font: inherit;
}

.contact-form-panel textarea {
  resize: vertical;
}

.contact-final {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, .14);
}

.contact-final article {
  padding: clamp(30px, 5vw, 56px);
  background: #f4f4f0;
  color: #050505;
}

.contact-final span {
  color: rgba(0, 0, 0, .52);
}

.contact-final p {
  margin: 52px 0 0;
  color: rgba(0, 0, 0, .78);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.security-page {
  display: grid;
  gap: 56px;
}

.security-page[hidden] {
  display: none;
}

.security-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(58px, 8vw, 118px) 0;
}

.security-intro h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
}

.security-intro p:not(.kicker) {
  max-width: 820px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

.security-sections {
  display: grid;
  gap: 0;
}

.security-sections article {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(36px, 8vw, 120px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 48px 0;
}

.security-sections h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.security-sections h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.security-sections p {
  max-width: 780px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
  line-height: 1.68;
}

.security-commitment {
  padding: clamp(42px, 7vw, 92px);
  border-radius: 8px;
  background: #f4f4f0;
  color: #050505;
}

.security-commitment .kicker {
  color: rgba(0, 0, 0, .48);
}

.security-commitment h2 {
  max-width: 980px;
  margin: 12px 0 18px;
  color: #000;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 1.05;
}

.security-commitment > p {
  max-width: 780px;
  color: rgba(0, 0, 0, .68);
  font-size: 20px;
}

.security-commitment > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  background: rgba(0, 0, 0, .14);
  border: 1px solid rgba(0, 0, 0, .14);
}

.security-commitment article {
  padding: 28px;
  background: #f4f4f0;
}

.security-commitment span {
  color: rgba(0, 0, 0, .52);
  font: 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.security-commitment article p {
  margin: 34px 0 0;
  color: rgba(0, 0, 0, .78);
  font-size: 26px;
  font-weight: 800;
}

.expression-page {
  display: grid;
  gap: 56px;
}

.expression-page[hidden] {
  display: none;
}

.expression-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(58px, 8vw, 118px) 0;
}

.expression-intro h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
}

.expression-intro p:not(.kicker) {
  max-width: 820px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

.expression-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.expression-sections article {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  background: #030303;
}

.expression-sections span,
.expression-belief article span {
  display: block;
  color: rgba(255, 255, 255, .44);
  font: 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.expression-sections h2 {
  margin: 52px 0 18px;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.08;
}

.expression-sections p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
  line-height: 1.68;
}

.expression-belief {
  padding: clamp(42px, 7vw, 92px);
  border-radius: 8px;
  background: #f4f4f0;
  color: #050505;
}

.expression-belief > p {
  max-width: 980px;
  margin: 0 0 14px;
  color: rgba(0, 0, 0, .72);
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.18;
  font-weight: 800;
}

.expression-belief > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 60px;
  background: rgba(0, 0, 0, .14);
  border: 1px solid rgba(0, 0, 0, .14);
}

.expression-belief article {
  padding: 28px;
  background: #f4f4f0;
}

.expression-belief article span {
  color: rgba(0, 0, 0, .52);
}

.expression-belief article p {
  margin: 34px 0 0;
  color: rgba(0, 0, 0, .78);
  font-size: 26px;
  font-weight: 800;
}

.transparency-page {
  display: grid;
  gap: 56px;
}

.transparency-page[hidden] {
  display: none;
}

.transparency-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(58px, 8vw, 118px) 0;
}

.transparency-intro h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
}

.transparency-intro p:not(.kicker) {
  max-width: 820px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

.transparency-sections {
  display: grid;
  gap: 0;
}

.transparency-sections article {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(36px, 8vw, 120px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 48px 0;
}

.transparency-sections h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.transparency-sections h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.transparency-sections p {
  max-width: 780px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
  line-height: 1.68;
}

.transparency-commitment {
  padding: clamp(42px, 7vw, 92px);
  border-radius: 8px;
  background: #f4f4f0;
  color: #050505;
}

.transparency-commitment .kicker {
  color: rgba(0, 0, 0, .48);
}

.transparency-commitment h2 {
  max-width: 980px;
  margin: 12px 0 18px;
  color: #000;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 1.05;
}

.transparency-commitment > p {
  max-width: 780px;
  color: rgba(0, 0, 0, .68);
  font-size: 20px;
}

.transparency-commitment > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  background: rgba(0, 0, 0, .14);
  border: 1px solid rgba(0, 0, 0, .14);
}

.transparency-commitment article {
  padding: 28px;
  background: #f4f4f0;
}

.transparency-commitment span {
  color: rgba(0, 0, 0, .52);
  font: 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.transparency-commitment article p {
  margin: 34px 0 0;
  color: rgba(0, 0, 0, .78);
  font-size: 26px;
  font-weight: 800;
}

.terms-page {
  display: grid;
  gap: 56px;
}

.terms-page[hidden] {
  display: none;
}

.terms-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(58px, 8vw, 118px) 0;
}

.terms-intro h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
}

.terms-intro p:not(.kicker) {
  max-width: 860px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

.terms-list {
  display: grid;
  gap: 0;
}

.terms-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 34px 0;
}

.terms-list article > span {
  color: rgba(255, 255, 255, .42);
  font: 14px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
}

.terms-list h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.terms-list p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
  line-height: 1.72;
}

.terms-final {
  padding: clamp(42px, 7vw, 92px);
  border-radius: 8px;
  background: #f4f4f0;
  color: #050505;
}

.terms-final h2 {
  margin: 0 0 18px;
  color: #000;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.02;
}

.terms-final p {
  margin: 0 0 8px;
  color: rgba(0, 0, 0, .76);
  font-size: 28px;
  font-weight: 800;
}

.terms-final span {
  color: rgba(0, 0, 0, .58);
  font-size: 20px;
}

.privacy-page {
  display: grid;
  gap: 56px;
}

.privacy-page[hidden] {
  display: none;
}

.privacy-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(58px, 8vw, 118px) 0;
}

.privacy-intro h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
}

.privacy-intro p:not(.kicker) {
  max-width: 860px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

.privacy-list {
  display: grid;
  gap: 0;
}

.privacy-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 34px 0;
}

.privacy-list article > span {
  color: rgba(255, 255, 255, .42);
  font: 14px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
}

.privacy-list h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.privacy-list p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
  line-height: 1.72;
}

.privacy-final {
  padding: clamp(42px, 7vw, 92px);
  border-radius: 8px;
  background: #f4f4f0;
  color: #050505;
}

.privacy-final .kicker {
  color: rgba(0, 0, 0, .48);
}

.privacy-final h2 {
  max-width: 1040px;
  margin: 12px 0 18px;
  color: #000;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 1.05;
}

.privacy-final > p {
  max-width: 760px;
  color: rgba(0, 0, 0, .68);
  font-size: 20px;
}

.privacy-final > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  background: rgba(0, 0, 0, .14);
  border: 1px solid rgba(0, 0, 0, .14);
}

.privacy-final article {
  padding: 28px;
  background: #f4f4f0;
}

.privacy-final span {
  color: rgba(0, 0, 0, .52);
  font: 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.privacy-final article p {
  margin: 34px 0 0;
  color: rgba(0, 0, 0, .78);
  font-size: 26px;
  font-weight: 800;
}

.cookie-page {
  display: grid;
  gap: 56px;
}

.cookie-page[hidden] {
  display: none;
}

.cookie-intro {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: clamp(58px, 8vw, 118px) 0;
}

.cookie-intro h2 {
  max-width: 1080px;
  margin: 14px 0 28px;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 1.04;
}

.cookie-intro p:not(.kicker) {
  max-width: 860px;
  color: rgba(255, 255, 255, .68);
  font-size: 20px;
  line-height: 1.72;
}

.cookie-list {
  display: grid;
  gap: 0;
}

.cookie-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 34px 0;
}

.cookie-list article > span {
  color: rgba(255, 255, 255, .42);
  font: 14px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
}

.cookie-list h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.cookie-list p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
  line-height: 1.72;
}

.subpage-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 42px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.subpage-snapshot article {
  min-height: 190px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01)),
    #030303;
}

.subpage-snapshot span {
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .34);
  font: 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
}

.subpage-snapshot strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.subpage-snapshot p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .6);
}

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

.subpage-card {
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, .1), transparent 34%),
    rgba(255, 255, 255, .025);
}

.subpage-card span {
  color: rgba(255, 255, 255, .38);
  font: 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
}

.subpage-card h2 {
  margin: 42px 0 14px;
  font-size: 28px;
}

.subpage-card p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
}

.subpage-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 24% 50%, rgba(255, 255, 255, .12), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, .025), transparent);
}

.showcase-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 390px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .26);
  background:
    radial-gradient(circle, rgba(255, 255, 255, .12) 0 2px, transparent 3px),
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 24px 24px, 48px 48px, 48px 48px;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, .06);
}

.showcase-ring {
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(255, 255, 255, .28);
  border-radius: 50%;
}

.showcase-axis {
  position: absolute;
  inset: 50% 10% auto;
  height: 1px;
  background: rgba(255, 255, 255, .32);
}

.showcase-axis::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -120px;
  width: 1px;
  height: 240px;
  background: rgba(255, 255, 255, .22);
}

.showcase-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 22px rgba(255, 255, 255, .82);
}

.showcase-node.n1 { left: 24%; top: 30%; }
.showcase-node.n2 { right: 18%; top: 24%; }
.showcase-node.n3 { left: 35%; bottom: 20%; }
.showcase-node.n4 { right: 28%; bottom: 32%; }

.showcase-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 4vw, 58px);
}

.showcase-copy p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 19px;
}

.subpage-note {
  margin-top: 18px;
  border-left: 1px solid rgba(255, 255, 255, .72);
  padding: 10px 0 10px 20px;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
}

.subpage-detail {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(36px, 8vw, 120px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-top: 76px;
  padding: 54px 0;
}

.subpage-detail h2,
.subpage-related h2,
.subpage-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
}

.subpage-detail-copy {
  display: grid;
  gap: 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
}

.subpage-detail-copy p {
  margin: 0;
}

.subpage-list {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(36px, 8vw, 120px);
  padding: 54px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.subpage-list > .kicker {
  margin: 7px 0 0;
}

.subpage-row {
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
}

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

.subpage-row h3 {
  margin: 0;
  font-size: 20px;
}

.subpage-row p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
}

.subpage-faq {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(36px, 8vw, 120px);
  padding: 54px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.subpage-faq h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.faq-item p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
}

.subpage-related {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(36px, 8vw, 120px);
  padding: 54px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.related-links {
  display: grid;
  gap: 0;
}

.related-links a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

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

.subpage-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 34px;
  background: radial-gradient(circle at 84% 20%, rgba(255, 255, 255, .12), transparent 34%);
}

.kicker {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .52);
}

h1 {
  font-size: 82px;
  line-height: 1.02;
  margin: 16px 0;
  letter-spacing: 0;
  font-weight: 680;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

h2 {
  font-size: 52px;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: 0;
}

.lead,
.section-lead,
.section p,
.beliefs p {
  font-size: 18px;
  color: rgba(255, 255, 255, .68);
}

.lead {
  max-width: 680px;
  font-size: 20px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .35);
  font-size: 14px;
}

.primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.secondary {
  color: #fff;
  background: transparent;
}

.domain {
  margin-top: 34px;
  color: rgba(255, 255, 255, .42);
  letter-spacing: .32em;
}

.hero-visual {
  width: 100%;
  min-height: 560px;
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.faulty-terminal {
  --terminal-x: 50%;
  --terminal-y: 50%;
  position: absolute;
  inset: -10%;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--terminal-x) var(--terminal-y), rgba(255, 255, 255, .24), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .08), transparent 44%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, .035), transparent 68%);
  filter: brightness(1);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 52%, rgba(0, 0, 0, .78) 66%, rgba(0, 0, 0, .28) 82%, transparent 100%);
  animation: terminalPanelFlicker 1s steps(2, end) infinite;
}

.faulty-terminal::before,
.faulty-terminal::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.faulty-terminal::before {
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .09) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, rgba(255, 255, 255, .03), transparent 15% 85%, rgba(255, 255, 255, .03));
  opacity: .3;
  mix-blend-mode: screen;
}

.faulty-terminal::after {
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 50% 48%, transparent 0 50%, rgba(0, 0, 0, .38) 74%, rgba(0, 0, 0, .82) 100%);
  box-shadow:
    inset 0 0 90px rgba(255, 255, 255, .035),
    inset 0 0 210px rgba(0, 0, 0, .86);
}

.terminal-grid {
  position: absolute;
  inset: -8%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(42, 1fr);
  gap: 3px 6px;
  color: rgba(255, 255, 255, .38);
  font: 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
  transform:
    perspective(820px)
    rotateX(.7deg)
    rotateY(-1.1deg)
    translate(calc((var(--terminal-x) - 50%) * .015), calc((var(--terminal-y) - 50%) * .015));
  opacity: .9;
  text-shadow: 0 0 12px rgba(255, 255, 255, .55);
  animation: terminalGridDrift 7s linear infinite;
}

.terminal-grid span {
  width: 1.5ch;
  height: 1.5ch;
  display: inline-grid;
  place-items: center;
  opacity: var(--digit-opacity);
  transform: translateX(var(--digit-shift));
  animation: terminalDigitGlitch var(--digit-speed) steps(2, end) infinite;
}

.terminal-scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: -18%;
  z-index: 2;
  height: 34%;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, .18), transparent);
  opacity: .3;
  filter: blur(1px);
  animation: terminalSweep 3.6s ease-in-out infinite;
}

.terminal-glow {
  position: absolute;
  z-index: 2;
  width: 180px;
  height: 180px;
  left: var(--terminal-x);
  top: var(--terminal-y);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 65%);
  opacity: .7;
  transition: left .12s ease-out, top .12s ease-out;
}

.li-hexagram {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(360px, 64%);
  aspect-ratio: 450 / 360;
  transform: translate(-50%, -50%);
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, .42))
    drop-shadow(0 0 44px rgba(255, 255, 255, .16));
  animation: liSignalFlicker 1.8s steps(2, end) infinite;
}

.li-hexagram > span {
  display: block;
  position: absolute;
  left: 0;
  height: 19.444%;
  background: #fff;
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .16),
    0 0 20px rgba(255, 255, 255, .32);
}

.li-hexagram > span:nth-child(1) {
  top: 0;
  width: 100%;
}

.li-hexagram > span:nth-child(2) {
  top: 38.889%;
  width: 100%;
  background: transparent;
  box-shadow: none;
}

.li-hexagram > span:nth-child(3) {
  top: 80.556%;
  width: 100%;
}

.li-hexagram i {
  display: block;
  position: absolute;
  top: 0;
  width: 42.222%;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .16),
    0 0 20px rgba(255, 255, 255, .32);
}

.li-hexagram i:first-child {
  left: 0;
}

.li-hexagram i:last-child {
  left: 57.778%;
}

.terminal-readout {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, .72);
  font: 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.visual-grid {
  position: absolute;
  inset: 44px;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 33.333% 33.333%;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 58%, transparent 76%);
}

.matrix {
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
  z-index: 3;
}

.matrix span {
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 6px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(10px);
}

.scan-status {
  position: absolute;
  top: 31px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 3;
  color: rgba(255, 255, 255, .58);
  font: 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
}

.scan-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, .9);
}

.scan-status p {
  margin: 0;
}

.core-map {
  position: absolute;
  width: 430px;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -47%);
  display: grid;
  place-items: center;
}

.axis {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  opacity: .7;
}

.axis.horizontal {
  width: 100%;
  height: 1px;
}

.axis.vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(255, 255, 255, .2), transparent);
}

.ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}

.r1 {
  width: 100%;
  height: 100%;
  border-color: rgba(255, 255, 255, .2);
}

.r2 {
  width: 72%;
  height: 72%;
  animation-direction: reverse;
  animation-duration: 17s;
  border-style: dashed;
  border-color: rgba(255, 255, 255, .18);
}

.r3 {
  width: 44%;
  height: 44%;
  animation-duration: 11s;
  border-color: rgba(255, 255, 255, .24);
  box-shadow: inset 0 0 42px rgba(255, 255, 255, .035);
}

.ring::before,
.ring::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255, 255, 255, .82);
}

.ring::before {
  left: 50%;
  top: -4px;
}

.ring::after {
  right: 13%;
  bottom: 13%;
}

.symbol {
  position: absolute;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(0, 0, 0, .48);
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.li-terminal {
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 9px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .32);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .22), transparent 58%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 4px),
    rgba(0, 0, 0, .72);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, .08),
    0 0 24px rgba(255, 255, 255, .22);
  animation: terminalFlicker 1.6s steps(2, end) infinite;
}

.li-terminal::before,
.li-terminal::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  pointer-events: none;
}

.li-terminal::before {
  border: 1px solid rgba(255, 255, 255, .08);
  transform: scale(.94);
}

.li-terminal::after {
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(255, 255, 255, .42) 35% 36%, transparent 37% 100%),
    linear-gradient(180deg, transparent 0 48%, rgba(255, 255, 255, .16) 49% 51%, transparent 52% 100%);
  opacity: .35;
  mix-blend-mode: screen;
  animation: terminalScan 2.4s ease-in-out infinite;
}

.li-terminal span {
  display: block;
  position: relative;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, .9);
}

.li-terminal span:nth-child(2) {
  background:
    linear-gradient(90deg, #fff 0 38%, transparent 38% 62%, #fff 62% 100%);
}

.li-terminal span:nth-child(1) {
  animation: terminalGlitch 1.7s steps(2, end) infinite;
}

.li-terminal span:nth-child(3) {
  animation: terminalGlitch 1.9s steps(2, end) .2s infinite reverse;
}

.li-terminal:hover {
  transform: translateY(-1px) scale(1.04);
}

.s1 {
  top: 8%;
  right: 24%;
}

.s2 {
  top: 37%;
  right: 2%;
}

.s3 {
  left: 11%;
  bottom: 20%;
}

.s4 {
  left: 29%;
  top: 7%;
}

.avatar-core {
  width: 88px;
  height: 88px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background: #f6f6f6;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .32),
    0 0 52px rgba(255, 255, 255, .42),
    0 0 120px rgba(255, 255, 255, .18);
}

.avatar-core::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #f8f8f8 0 50%, #050505 50% 100%);
}

.avatar-core::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  left: 22px;
  top: 0;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 44px 0 #f8f8f8;
}

.avatar-core .yin,
.avatar-core .yang {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  left: 38px;
  border-radius: 50%;
}

.avatar-core .yin {
  top: 16px;
  background: #f8f8f8;
}

.avatar-core .yang {
  bottom: 16px;
  background: #050505;
}

.code-lines {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 190px;
  color: rgba(255, 255, 255, .54);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  z-index: 3;
}

.code-lines p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.code-lines p:last-child {
  border-bottom: 0;
}

.code-lines span {
  color: rgba(255, 255, 255, .28);
}

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

@keyframes sampleScan {
  0%,
  100% {
    transform: translateY(2%) scaleX(.96);
    opacity: .42;
  }

  50% {
    transform: translateY(-3%) scaleX(1.04);
    opacity: .78;
  }
}

@keyframes terminalFlicker {
  0%,
  100% {
    opacity: .92;
    filter: brightness(1);
  }

  48% {
    opacity: .72;
    filter: brightness(1.18);
  }

  52% {
    opacity: 1;
    filter: brightness(.94);
  }
}

@keyframes terminalScan {
  0%,
  100% {
    transform: translateY(-18%);
  }

  50% {
    transform: translateY(18%);
  }
}

@keyframes terminalGlitch {
  0%,
  100% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(1px);
  }

  55% {
    transform: translateX(-1px);
  }
}

@keyframes terminalPanelFlicker {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.08);
  }
}

@keyframes terminalGridDrift {
  to {
    margin-top: -34px;
  }
}

@keyframes terminalDigitGlitch {
  0%,
  100% {
    opacity: var(--digit-opacity);
  }

  50% {
    opacity: .08;
  }
}

@keyframes terminalSweep {
  0% {
    transform: translateY(-30%);
  }

  50% {
    transform: translateY(240%);
  }

  100% {
    transform: translateY(520%);
  }
}

@keyframes liSignalFlicker {
  0%,
  100% {
    opacity: .95;
    transform: translate(-50%, -50%) skewX(0deg);
  }

  48% {
    opacity: .78;
    transform: translate(calc(-50% + 1px), -50%) skewX(.4deg);
  }

  52% {
    opacity: 1;
    transform: translate(calc(-50% - 1px), -50%) skewX(-.4deg);
  }
}

.beliefs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  max-width: 1320px;
  margin: 40px auto 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 48%, rgba(255, 255, 255, .075), transparent 38%),
    radial-gradient(ellipse at 76% 48%, rgba(255, 255, 255, .06), transparent 36%),
    #000;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 34px 120px rgba(0, 0, 0, .42);
}

.beliefs::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .24), transparent);
}

.beliefs::after {
  content: none;
}

.side-rays {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
}

.side-rays canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.belief-card {
  position: relative;
  z-index: 1;
  min-height: 430px;
  padding: 92px clamp(42px, 5vw, 72px) 122px;
  isolation: isolate;
  animation: beliefRise .8s cubic-bezier(.2, .8, .2, 1) both;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.belief-card:nth-child(2) {
  animation-delay: .12s;
}

.belief-card::before {
  content: none;
  position: absolute;
  inset: 22px;
  z-index: -1;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .008));
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s ease;
}

.belief-card:hover::before {
  opacity: 0;
  transform: none;
}

.belief-index {
  position: absolute;
  right: clamp(42px, 5vw, 72px);
  top: 64px;
  color: rgba(255, 255, 255, .16);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 76px;
  line-height: 1;
}

.belief-label {
  margin: 28px 0 18px;
  color: rgba(255, 255, 255, .46);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.beliefs h2 {
  font-size: clamp(36px, 2.8vw, 52px);
  max-width: none;
  margin-bottom: 18px;
  line-height: 1.02;
  white-space: nowrap;
}

.beliefs p:not(.belief-label):not(.belief-statement) {
  max-width: 620px;
  font-size: 20px;
  color: rgba(255, 255, 255, .64);
}

.belief-icon {
  width: 72px;
  height: 72px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 70px rgba(255, 255, 255, .08),
    inset 0 0 26px rgba(255, 255, 255, .025);
}

.belief-icon::before,
.belief-icon::after,
.belief-icon span {
  content: "";
  position: absolute;
  display: block;
}

.avatar-icon::before {
  width: 18px;
  height: 18px;
  top: 17px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
}

.avatar-icon::after {
  width: 34px;
  height: 17px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 18px 18px 6px 6px;
}

.avatar-icon span {
  inset: -7px;
  border: 1px dashed rgba(255, 255, 255, .14);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.structure-icon::before {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .78);
  transform: rotate(45deg);
}

.structure-icon::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    18px 0 0 rgba(255, 255, 255, .74),
    0 18px 0 rgba(255, 255, 255, .74);
}

.structure-icon span {
  width: 1px;
  height: 42px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .5), transparent);
  animation: scanNeedle 3.2s ease-in-out infinite;
}

.belief-chart {
  width: min(420px, 100%);
  min-height: 128px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 32px;
}

.avatar-chart {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  align-items: center;
  padding: 20px 0;
}

.chart-avatar {
  width: 74px;
  height: 74px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .12), transparent 34%),
    rgba(0, 0, 0, .42);
  box-shadow: 0 0 32px rgba(255, 255, 255, .08);
}

.chart-avatar::before,
.chart-avatar::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .76);
}

.chart-avatar::before {
  width: 20px;
  height: 20px;
  top: 16px;
  border-radius: 50%;
}

.chart-avatar::after {
  width: 38px;
  height: 18px;
  bottom: 15px;
  border-radius: 18px 18px 6px 6px;
}

.chart-bars {
  display: grid;
  gap: 10px;
}

.chart-bars span {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-left: 12px;
  color: rgba(255, 255, 255, .56);
  font: 12px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.chart-bars span::before {
  content: "";
  position: absolute;
  left: 54px;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .1);
}

.chart-bars span::after {
  content: "";
  position: absolute;
  left: 54px;
  top: 50%;
  width: var(--w);
  height: 2px;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, .6);
}

.insight-chart {
  min-height: 150px;
  display: grid;
  grid-template-columns: 146px 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
}

.radar {
  width: 118px;
  height: 118px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, .16) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(255, 255, 255, .16) 50%, transparent 51%);
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px dashed rgba(255, 255, 255, .16);
  border-radius: 50%;
}

.radar::after {
  inset: 40%;
  border-style: solid;
}

.radar span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, .85);
}

.radar span:nth-child(1) {
  left: 66%;
  top: 18%;
}

.radar span:nth-child(2) {
  left: 76%;
  top: 64%;
}

.radar span:nth-child(3) {
  left: 28%;
  top: 72%;
}

.axis-readout {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, .58);
  font: 12px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.axis-readout span {
  position: relative;
  padding-left: 18px;
}

.axis-readout span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(255, 255, 255, .65);
}

.belief-statement {
  grid-column: 1 / -1;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 30px 42px 48px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .035), transparent);
  animation: beliefRise .8s cubic-bezier(.2, .8, .2, 1) .22s both;
}

@keyframes beliefScan {
  0%,
  100% {
    opacity: .12;
    transform: translateX(-34%);
  }

  50% {
    opacity: .72;
    transform: translateX(34%);
  }
}

@keyframes beliefRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scanNeedle {
  0%,
  100% {
    opacity: .2;
    transform: rotate(0deg);
  }

  50% {
    opacity: .85;
    transform: rotate(90deg);
  }
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 42px;
}

.capability-grid,
.flow-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

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

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

.capability-grid article,
.flow-grid article {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)),
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, .08), transparent 28%);
}

.capability-grid span,
.flow-grid span,
.analysis-tag {
  color: rgba(255, 255, 255, .36);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.capability-grid h3,
.flow-grid h3 {
  font-size: 25px;
  line-height: 1.18;
  margin: 30px 0 10px;
}

.demo-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.demo-copy h2 {
  max-width: 9em;
}

.analysis-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 34px;
  background:
    radial-gradient(circle at 26% 48%, rgba(255, 255, 255, .075), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01)),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 26px 90px rgba(0, 0, 0, .28);
}

.sample-avatar {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .34);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255, 255, 255, .16) 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, rgba(255, 255, 255, .16) 50%, transparent 50.3%),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(255, 255, 255, .16) 34.4% 34.8%, transparent 35.2%),
    radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(255, 255, 255, .22) 48.4% 48.8%, transparent 49.2%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .14), transparent 32%),
    linear-gradient(90deg, transparent 33%, rgba(255, 255, 255, .07) 33.2% 33.5%, transparent 33.7% 66%, rgba(255, 255, 255, .07) 66.2% 66.5%, transparent 66.7%),
    linear-gradient(transparent 33%, rgba(255, 255, 255, .07) 33.2% 33.5%, transparent 33.7% 66%, rgba(255, 255, 255, .07) 66.2% 66.5%, transparent 66.7%),
    #080808;
  background-size: auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .08),
    inset 0 0 72px rgba(255, 255, 255, .055),
    0 0 70px rgba(255, 255, 255, .16);
}

.sample-avatar::before {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .22);
}

.sample-avatar::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: inset 0 0 38px rgba(255, 255, 255, .035);
}

.sample-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, .055),
    0 0 36px rgba(255, 255, 255, .62);
}

.sample-scan {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 26% 74%, rgba(255, 255, 255, .42), transparent 18%),
    linear-gradient(180deg, transparent 0 69%, rgba(255, 255, 255, .32) 72%, transparent 76%);
  opacity: .7;
  animation: sampleScan 5s ease-in-out infinite;
}

.sample-orbit {
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(255, 255, 255, .32);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.sample-node {
  position: absolute;
  width: 7px;
  height: 7px;
  z-index: 3;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, .84);
}

.sample-node.n1 {
  right: 23%;
  top: 25%;
}

.sample-node.n2 {
  left: 24%;
  bottom: 32%;
}

.sample-node.n3 {
  right: 31%;
  bottom: 20%;
}

.sample-node.n4 {
  left: 33%;
  top: 24%;
}

.analysis-copy h3 {
  margin: 8px 0 18px;
  font-size: 30px;
  line-height: 1.18;
}

.analysis-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.analysis-copy li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .6);
}

.analysis-copy li span {
  color: #fff;
  font-weight: 650;
}

.boundary-note {
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .025);
}

.trial-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, .1), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012));
}

.trial-cta h3 {
  margin: 8px 0;
  font-size: 30px;
  line-height: 1.16;
}

.trial-cta p:not(.kicker) {
  margin: 0;
  color: rgba(255, 255, 255, .62);
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.pipeline article {
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012));
}

.pipeline span {
  color: rgba(255, 255, 255, .36);
  font-size: 13px;
}

.pipeline h3 {
  font-size: 26px;
  margin: 28px 0 10px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 70px;
  align-items: center;
}

.split h2 {
  white-space: nowrap;
}

.nine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, .02);
}

.nine-grid div {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  font-size: 32px;
}

.nine-grid div:nth-child(3n) {
  border-right: 0;
}

.nine-grid div:nth-child(n+7) {
  border-bottom: 0;
}

.nine-grid div:nth-child(5) {
  background: #fff;
  color: #000;
}

#language {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.language-copy p:not(.kicker) {
  max-width: 500px;
  color: rgba(255, 255, 255, .64);
  font-size: 18px;
}

.language-system {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, .075), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 28px 90px rgba(0, 0, 0, .28);
}

.language-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 2px 16px;
  color: rgba(255, 255, 255, .38);
  font: 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
}

.visual-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
  max-width: none;
}

.language-card {
  min-height: 124px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 16px 14px 14px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, .075), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.language-card:hover {
  border-color: rgba(255, 255, 255, .28);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, .12), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012));
  transform: translateY(-2px);
}

.language-card h3 {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.2;
}

.language-icon {
  height: 68px;
  position: relative;
}

.language-icon span {
  position: absolute;
  display: block;
}

.icon-flow .language-icon span {
  left: 8px;
  right: 8px;
  height: 1px;
  background: rgba(255, 255, 255, .55);
}

.icon-flow .language-icon span::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, .75);
}

.icon-flow .language-icon span:nth-child(1) {
  top: 16px;
}

.icon-flow .language-icon span:nth-child(1)::after {
  left: 34%;
}

.icon-flow .language-icon span:nth-child(2) {
  top: 33px;
}

.icon-flow .language-icon span:nth-child(2)::after {
  left: 62%;
}

.icon-flow .language-icon span:nth-child(3) {
  top: 50px;
}

.icon-flow .language-icon span:nth-child(3)::after {
  left: 46%;
}

.icon-nodes .language-icon,
.icon-neural .language-icon,
.icon-link .language-icon {
  background:
    linear-gradient(34deg, transparent 18%, rgba(255, 255, 255, .26) 18.4% 19%, transparent 19.4% 100%),
    linear-gradient(145deg, transparent 22%, rgba(255, 255, 255, .22) 22.4% 23%, transparent 23.4% 100%),
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, .18) 49.4% 50%, transparent 50.4%);
}

.icon-nodes .language-icon span,
.icon-neural .language-icon span,
.icon-link .language-icon span {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  background: #050505;
}

.icon-nodes span:nth-child(1) { left: 18%; top: 18%; }
.icon-nodes span:nth-child(2) { left: 48%; top: 8%; }
.icon-nodes span:nth-child(3) { right: 18%; top: 34%; }
.icon-nodes span:nth-child(4) { left: 32%; bottom: 16%; }
.icon-nodes span:nth-child(5) { right: 34%; bottom: 8%; }

.icon-neural span:nth-child(1) { left: 15%; top: 28%; }
.icon-neural span:nth-child(2) { left: 34%; top: 8%; }
.icon-neural span:nth-child(3) { left: 52%; top: 30%; }
.icon-neural span:nth-child(4) { right: 16%; top: 14%; }
.icon-neural span:nth-child(5) { left: 36%; bottom: 8%; }
.icon-neural span:nth-child(6) { right: 24%; bottom: 18%; }

.icon-scan .language-icon span {
  left: 12px;
  right: 12px;
  height: 1px;
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 0 10px rgba(255, 255, 255, .28);
}

.icon-scan span:nth-child(1) { top: 12px; }
.icon-scan span:nth-child(2) { top: 25px; }
.icon-scan span:nth-child(3) { top: 42px; }
.icon-scan span:nth-child(4) { top: 55px; }

.icon-geometry .language-icon {
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 50%, transparent 0 32%, rgba(255, 255, 255, .52) 33% 34%, transparent 35%),
    conic-gradient(from 15deg, transparent 0 22%, rgba(255, 255, 255, .38) 22.5% 23%, transparent 23.5% 100%);
}

.icon-geometry span:nth-child(1),
.icon-geometry span:nth-child(2),
.icon-geometry span:nth-child(3) {
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
}

.icon-geometry span:nth-child(2) {
  transform: translateX(18px);
}

.icon-geometry span:nth-child(3) {
  transform: translateX(9px) translateY(-14px);
}

.icon-orbit .language-icon {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 5%, transparent 6%),
    radial-gradient(circle at 50% 50%, transparent 0 44%, rgba(255, 255, 255, .46) 45% 46%, transparent 47%);
}

.icon-orbit span:nth-child(1) {
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, .42);
  border-radius: 50%;
}

.icon-orbit span:nth-child(2) {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, .42);
  transform: rotate(45deg);
}

.icon-orbit span:nth-child(3) {
  right: 13px;
  top: 11px;
  width: 9px;
  height: 9px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.icon-code .language-icon span {
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font: 22px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
}

.icon-code .language-icon::before,
.icon-code .language-icon::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .5);
}

.icon-code .language-icon::before {
  left: 12px;
  top: 15px;
}

.icon-code .language-icon::after {
  right: 14px;
  bottom: 13px;
}

.icon-link span:nth-child(1) { left: 22%; top: 22%; }
.icon-link span:nth-child(2) { right: 20%; top: 18%; }
.icon-link span:nth-child(3) { left: 32%; bottom: 14%; }
.icon-link span:nth-child(4) { right: 28%; bottom: 25%; }

.about {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
}

.about > *:not(.shape-grid-bg) {
  position: relative;
  z-index: 1;
}

.shape-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: .42;
  pointer-events: auto;
  mask-image: radial-gradient(ellipse at 52% 42%, #000 0 58%, rgba(0, 0, 0, .72) 76%, transparent 100%);
}

.manifesto {
  margin-top: 36px;
  border-left: 1px solid #fff;
  padding-left: 22px;
}

.manifesto p {
  font-size: 24px;
  color: #fff;
  margin: 8px 0;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 54px 42px 38px;
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
}

footer a {
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: clamp(34px, 6vw, 96px);
  max-width: 1280px;
  margin: 0 auto 84px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.footer-column h3 {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .48);
  font-size: 14px;
  font-weight: 500;
}

.footer-column a {
  font-size: 14px;
  line-height: 1.25;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-center {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .72);
}

.locale-switch {
  position: relative;
  justify-self: end;
}

.topbar-locale {
  justify-self: auto;
  flex-shrink: 0;
}

.locale-pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .07);
  font: inherit;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.locale-pill:hover,
.locale-switch.is-open .locale-pill {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.locale-pill svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.topbar-locale .locale-pill {
  min-width: 86px;
  min-height: 42px;
  justify-content: center;
  padding: 0 16px;
  line-height: 1;
  white-space: nowrap;
  background: rgba(255, 255, 255, .06);
}

.locale-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 20;
  display: grid;
  gap: 4px;
  min-width: 144px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(5, 5, 5, .9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  backdrop-filter: blur(18px);
}

.topbar .topbar-locale .locale-menu {
  top: calc(100% + 10px) !important;
  bottom: auto !important;
}

.locale-switch.is-open .locale-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.locale-menu button {
  min-height: 34px;
  border: 0;
  border-radius: 9px;
  padding: 0 12px;
  color: rgba(255, 255, 255, .68);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.locale-menu button:hover,
.locale-menu button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

@media (max-width: 1100px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 44px;
  }

  .hero {
    gap: 34px;
  }

  .core-map {
    width: 380px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 56px;
  }
}

@media (max-width: 900px) {
  .topbar {
    padding: 14px 20px;
  }

  .topbar nav {
    display: none;
  }

  .topbar-left {
    gap: 0;
  }

  .nav-trial {
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }

  .topbar-locale .locale-pill {
    min-width: 74px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .social-dock {
    gap: 18px;
  }

  .social-dock a {
    width: 18px;
    height: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 110px 20px 64px;
    overflow: hidden;
  }

  .subpage-hero {
    padding: 92px 20px 48px;
  }

  .subpage-content {
    padding: 0 20px 76px;
  }

  .subpage-overview,
  .subpage-detail,
  .subpage-list,
  .subpage-faq,
  .subpage-related {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .subpage-snapshot,
  .subpage-showcase {
    grid-template-columns: 1fr;
  }

  .about-identity,
  .about-feature,
  .about-create,
  .philosophy-step {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .philosophy-intro,
  .philosophy-ai,
  .philosophy-belief {
    min-height: auto;
    padding: 38px 24px;
  }

  .is-philosophy-page .philosophy-intro,
  .is-philosophy-page .philosophy-ai {
    padding: 56px 0;
  }

  .is-philosophy-page .philosophy-step {
    padding: 48px 0;
  }

  .is-philosophy-page .philosophy-intro h2,
  .is-philosophy-page .philosophy-ai h2,
  .is-philosophy-page .philosophy-belief h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .is-philosophy-page .philosophy-step h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .is-philosophy-page .philosophy-intro p:not(.kicker),
  .is-philosophy-page .philosophy-ai p:not(.kicker),
  .is-philosophy-page .philosophy-step p:not(.kicker) {
    font-size: 18px;
    line-height: 1.68;
  }

  .is-philosophy-page .philosophy-belief p {
    font-size: 28px;
    line-height: 1.2;
  }

  .is-philosophy-page .philosophy-belief {
    padding: 34px 24px;
  }

  .platform-intro {
    padding: 56px 0;
  }

  .platform-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .platform-intro p:not(.kicker) {
    font-size: 18px;
    line-height: 1.68;
  }

  .platform-modules,
  .platform-mission > div {
    grid-template-columns: 1fr;
  }

  .platform-modules article {
    min-height: auto;
  }

  .platform-modules ul {
    grid-template-columns: 1fr;
  }

  .platform-mission {
    padding: 34px 24px;
  }

  .platform-mission h2 {
    margin-bottom: 42px;
    font-size: 34px;
  }

  .pricing-intro {
    padding: 56px 0;
  }

  .pricing-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .pricing-grid,
  .enterprise-panel {
    grid-template-columns: 1fr;
  }

  .pricing-grid article {
    min-height: auto;
  }

  .enterprise-panel .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .help-intro {
    padding: 56px 0;
  }

  .help-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .help-intro p:not(.kicker) {
    font-size: 18px;
    line-height: 1.68;
  }

  .help-sections article,
  .help-contact {
    grid-template-columns: 1fr;
  }

  .help-sections h3,
  .help-sections p,
  .help-sections ol {
    grid-column: 1;
  }

  .help-contact {
    padding: 34px 24px;
  }

  .flow-intro {
    padding: 56px 0;
  }

  .flow-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .flow-intro p:not(.kicker) {
    font-size: 18px;
    line-height: 1.68;
  }

  .flow-steps,
  .developer-flow,
  .flow-reasons > div,
  .flow-final {
    grid-template-columns: 1fr;
  }

  .flow-steps article {
    min-height: auto;
  }

  .developer-flow article {
    grid-template-columns: 48px 1fr;
  }

  .contact-intro {
    padding: 56px 0;
  }

  .contact-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .contact-intro p:not(.kicker) {
    font-size: 18px;
    line-height: 1.68;
  }

  .contact-cards,
  .feedback-panel,
  .response-times > div,
  .contact-form-panel,
  .contact-final {
    grid-template-columns: 1fr;
  }

  .contact-cards article {
    min-height: auto;
  }

  .security-intro {
    padding: 56px 0;
  }

  .security-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .security-intro p:not(.kicker) {
    font-size: 18px;
    line-height: 1.68;
  }

  .security-sections article,
  .security-commitment > div {
    grid-template-columns: 1fr;
  }

  .security-commitment {
    padding: 34px 24px;
  }

  .expression-intro {
    padding: 56px 0;
  }

  .expression-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .expression-intro p:not(.kicker) {
    font-size: 18px;
    line-height: 1.68;
  }

  .expression-sections,
  .expression-belief > div {
    grid-template-columns: 1fr;
  }

  .expression-sections article {
    min-height: auto;
  }

  .expression-belief {
    padding: 34px 24px;
  }

  .transparency-intro {
    padding: 56px 0;
  }

  .transparency-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .transparency-intro p:not(.kicker) {
    font-size: 18px;
    line-height: 1.68;
  }

  .transparency-sections article,
  .transparency-commitment > div {
    grid-template-columns: 1fr;
  }

  .transparency-commitment {
    padding: 34px 24px;
  }

  .terms-intro {
    padding: 56px 0;
  }

  .terms-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .terms-intro p:not(.kicker),
  .terms-list p {
    font-size: 18px;
    line-height: 1.68;
  }

  .terms-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .terms-final {
    padding: 34px 24px;
  }

  .privacy-intro {
    padding: 56px 0;
  }

  .privacy-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .privacy-intro p:not(.kicker),
  .privacy-list p {
    font-size: 18px;
    line-height: 1.68;
  }

  .privacy-list article,
  .privacy-final > div {
    grid-template-columns: 1fr;
  }

  .privacy-list article {
    gap: 14px;
  }

  .privacy-final {
    padding: 34px 24px;
  }

  .cookie-intro {
    padding: 56px 0;
  }

  .cookie-intro h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .cookie-intro p:not(.kicker),
  .cookie-list p {
    font-size: 18px;
    line-height: 1.68;
  }

  .cookie-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .philosophy-sun {
    position: relative;
    right: auto;
    top: auto;
    width: min(72vw, 300px);
    margin: 0 0 34px;
    transform: none;
  }

  @keyframes philosophySpin {
    to {
      transform: rotate(360deg);
    }
  }

  .philosophy-symbol {
    width: min(100%, 320px);
  }

  .ai-converge {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(72vw, 260px);
    height: auto;
    aspect-ratio: 1;
    margin-top: 32px;
  }

  .framework-rail,
  .about-capabilities,
  .about-why {
    grid-template-columns: 1fr;
  }

  .framework-rail span {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .framework-rail span:last-child {
    border-bottom: 0;
  }

  .subpage-snapshot article {
    min-height: 150px;
  }

  .showcase-visual {
    width: min(100%, 320px);
  }

  .subpage-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .subpage-card {
    min-height: 190px;
    padding: 24px;
  }

  .subpage-card h2 {
    margin-top: 34px;
  }

  .subpage-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .subpage-cta .btn {
    width: 100%;
    justify-content: center;
  }

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

  h1 {
    max-width: 7.2em;
    font-size: 52px;
    word-break: break-all;
    white-space: normal;
  }

  .lead {
    max-width: 19em;
    word-break: break-all;
  }

  .hero-visual {
    min-height: 470px;
  }

  .terminal-grid {
    grid-template-columns: repeat(32, 1fr);
    font-size: 10px;
  }

  .terminal-readout {
    left: 22px;
    right: 22px;
    bottom: 22px;
    flex-direction: column;
  }

  .li-hexagram {
    width: min(240px, 62%);
  }

  .core-map {
    width: min(330px, calc(100vw - 82px));
    transform: translate(-50%, -43%);
  }

  .matrix {
    top: 22px;
    left: 20px;
    grid-template-columns: repeat(3, auto);
    gap: 8px;
  }

  .matrix span {
    padding: 5px 9px;
    font-size: 12px;
  }

  .scan-status {
    display: none;
  }

  .code-lines {
    left: 20px;
    right: 20px;
    bottom: 18px;
    width: auto;
    font-size: 12px;
  }

  .code-lines p {
    justify-content: flex-start;
  }

  .beliefs,
  .split {
    grid-template-columns: 1fr;
  }

  .beliefs {
    width: calc(100% - 40px);
    margin-top: 28px;
    border-radius: 18px;
  }

  .beliefs::before {
    display: none;
  }

  .belief-card + .belief-card {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .section {
    padding: 72px 20px;
  }

  .belief-card {
    min-height: 360px;
    padding: 74px 20px 72px;
  }

  .side-rays {
    opacity: .58;
  }

  .side-rays::before,
  .side-rays::after {
    right: -520px;
    top: -520px;
  }

  .belief-card::before {
    inset: 14px;
  }

  .belief-index {
    right: 20px;
    top: 44px;
    font-size: 48px;
  }

  .belief-icon {
    width: 62px;
    height: 62px;
  }

  .beliefs h2 {
    white-space: normal;
  }

  .belief-statement {
    padding: 22px 20px 26px;
    text-align: left;
    font-size: 14px;
    letter-spacing: .14em;
  }

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

  #language {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .language-system {
    padding: 12px;
  }

  .language-header {
    flex-direction: column;
    gap: 8px;
  }

  .visual-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .language-card {
    min-height: 118px;
  }

  .demo-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .trial-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .trial-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .sample-avatar {
    width: min(240px, 72vw);
    margin: 0 auto;
  }

  .split {
    gap: 32px;
  }

  .split h2 {
    white-space: normal;
  }

  .nine-grid {
    max-width: 420px;
  }

  footer {
    gap: 16px;
    padding: 42px 20px 28px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    margin-bottom: 54px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
  }

  .footer-space {
    display: none;
  }

  .footer-center {
    padding-bottom: 34px;
  }

  .locale-switch {
    justify-self: start;
  }

  .topbar-locale {
    justify-self: auto;
  }
}

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

  h1 {
    font-size: 40px;
    line-height: 1.12;
    max-width: 8em;
  }

  h2,
  .beliefs h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-visual {
    min-height: 430px;
    border-radius: 22px;
  }

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

  .terminal-grid {
    grid-template-columns: repeat(26, 1fr);
    gap: 3px 5px;
  }

  .li-hexagram {
    width: min(190px, 68%);
  }

  .visual-grid {
    inset: 28px;
  }

  .core-map {
    width: min(262px, calc(100vw - 104px));
    transform: translate(-50%, -38%);
  }

  .avatar-core {
    width: 72px;
    height: 72px;
  }

  .avatar-core::after {
    width: 36px;
    height: 36px;
    left: 18px;
    box-shadow: 0 36px 0 #f8f8f8;
  }

  .avatar-core .yin,
  .avatar-core .yang {
    width: 10px;
    height: 10px;
    left: 31px;
  }

  .avatar-core .yin {
    top: 13px;
  }

  .avatar-core .yang {
    bottom: 13px;
  }

  .symbol {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .li-terminal {
    width: 40px;
    height: 40px;
    gap: 4px;
    padding: 8px;
  }

  .code-lines {
    font-size: 10px;
  }

  .code-lines p {
    gap: 10px;
    padding: 6px 0;
  }
}
