:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0b0b0c;
  --panel: rgba(25, 25, 26, 0.72);
  --panel-strong: rgba(28, 28, 30, 0.88);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f4f4f4;
  --muted: #a7a7ad;
  --quiet: #73737a;
  --accent: #ffffff;
  --green: #82e8bd;
  --blue: #9db8ff;
  --rose: #ffb3d6;
  --gold: #f5d27f;
  --max: 1240px;
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 12% 28%, rgba(130, 232, 189, 0.07), transparent 22rem),
    radial-gradient(circle at 88% 38%, rgba(157, 184, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 70% 74%, rgba(255, 179, 214, 0.035), transparent 24rem),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.3;
  z-index: -2;
}

body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.92) 82%),
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255, 255, 255, 0.018) 4px);
  z-index: -1;
}

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

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

.site-shell {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 20px;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 10, 11, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(22px);
}

.brand,
.nav nav,
.footer nav,
.hero-actions,
.app-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 26px;
  height: 26px;
  filter: invert(1);
}

.nav nav {
  gap: 4px;
}

.nav nav a,
.nav-cta {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav nav a:hover,
.nav nav a:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.nav-cta {
  border: 1px solid var(--line);
  color: var(--text);
}

.section-grid,
.section,
.footer,
.legal-page,
.not-found {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.78fr);
  gap: 72px;
  min-height: calc(100vh - 86px);
  padding: 116px 0 92px;
  align-items: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
  z-index: -3;
}

.ambient-grid {
  position: absolute;
  inset: 4% -10% -2%;
  border-radius: 28px;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(255, 255, 255, 0.08) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 0 49.8%, rgba(255, 255, 255, 0.08) 50%, transparent 50.2%);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 56% 30%, black, transparent 70%);
  opacity: 0.12;
  z-index: -2;
}

.orbital-system {
  position: absolute;
  top: -34%;
  left: 50%;
  width: min(1120px, 90vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.42;
  z-index: -2;
}

.orbital-system span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 36%);
  mask-image: linear-gradient(180deg, black 0, transparent 82%);
  animation: orbitGlow 14s ease-in-out infinite;
}

.orbital-system span:nth-child(2) {
  inset: 12%;
  animation-duration: 18s;
  animation-direction: reverse;
}

.orbital-system span:nth-child(3) {
  inset: 25%;
  animation-duration: 22s;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 6.8vw, 6.55rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 760px;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button,
.micro-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 7px;
  border: 1px solid var(--line);
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 650;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible,
.micro-button:hover,
.micro-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  outline: none;
}

.button.primary {
  background: var(--text);
  color: #050505;
}

.button.ghost,
.micro-button {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.hero-stack {
  display: grid;
  gap: 16px;
  perspective: 1000px;
}

.glass-card,
.project-card,
.support-card,
.capability-card,
.legal-document,
.faq-block,
.company-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(24px);
}

.command-card {
  padding: 22px;
}

.console-header {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.console-header img {
  width: 40px;
  height: 40px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 50%;
  filter: invert(1);
  background: rgba(255, 255, 255, 0.06);
}

.console-header strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.console-bars {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.console-bars span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
}

.console-bars span:nth-child(1) {
  width: 82%;
}

.console-bars span:nth-child(2) {
  width: 58%;
}

.console-bars span:nth-child(3) {
  width: 70%;
}

.studio-console p,
.mini-card p,
.activity-line em,
.section-heading p,
.project-body p,
.capability-card p,
.legal-hero p,
.legal-document p,
.support-card p,
.faq-block p,
.company-card p {
  color: var(--muted);
}

.muted {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--quiet);
  font-size: 0.78rem;
}

.studio-console p {
  margin-bottom: 0;
  font-size: 1rem;
}

.glass-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-card {
  min-height: 210px;
  padding: 20px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 0.76rem;
}

.mini-card h2 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.mini-card p,
.activity-line em {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.activity-card {
  padding: 8px;
}

.activity-line {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.activity-line:last-child {
  border-bottom: 0;
}

.activity-line span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(130, 232, 189, 0.7);
}

.activity-line.dim span {
  background: var(--blue);
  box-shadow: 0 0 18px rgba(157, 184, 255, 0.7);
}

.section {
  padding: 96px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 70px;
}

.section-heading h2,
.legal-panel h2,
.company-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading-wide {
  max-width: 840px;
  margin-bottom: 34px;
}

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

.capability-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.105);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    rgba(13, 13, 15, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 20px 50px rgba(0, 0, 0, 0.18);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.capabilities {
  position: relative;
}

.capabilities::before {
  position: absolute;
  inset: 76px -44px auto;
  height: 340px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055), transparent),
    radial-gradient(circle at 14% 30%, rgba(130, 232, 189, 0.06), transparent 21rem),
    radial-gradient(circle at 86% 58%, rgba(157, 184, 255, 0.05), transparent 23rem);
  mask-image: radial-gradient(ellipse at center, black, transparent 72%);
  opacity: 0.5;
  z-index: -1;
}

.capability-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 48%),
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.08), transparent 12rem);
  opacity: 0.22;
  transition: opacity 220ms ease;
}

.capability-card:hover::before {
  opacity: 0.32;
}

.capability-card:hover,
.capability-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.capability-card h3 {
  margin: 28px 0 10px;
  font-size: 1.3rem;
}

.capability-card p {
  max-width: 340px;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.capability-visual {
  position: relative;
  height: 188px;
  margin: -4px -4px 0;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 7px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.012)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    rgba(255, 255, 255, 0.025);
  background-size: auto, 44px 44px, 44px 44px, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 -18px 44px rgba(0, 0, 0, 0.28);
}

.capability-visual::before,
.capability-visual::after {
  position: absolute;
  content: "";
}

.visual-flow::before {
  inset: 42px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  box-shadow: 0 -46px 0 rgba(255, 255, 255, 0.025);
}

.visual-flow::after {
  inset: 58px 54px auto;
  height: 58px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent 56%),
    rgba(255, 255, 255, 0.06);
}

.visual-permissions::before {
  inset: 32px 28px;
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 100% 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-permissions::after {
  right: 40px;
  top: 56px;
  width: 92px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
}

.visual-roles::before {
  inset: 34px 26px;
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)) 20px 18px / 48% 30px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)) 20px 62px / 70% 30px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)) 20px 106px / 60% 30px no-repeat;
}

.visual-roles::after {
  right: 24px;
  top: 50px;
  width: 86px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
}

.visual-workspace::before {
  inset: 26px 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 36%, transparent 36%),
    rgba(255, 255, 255, 0.03);
}

.visual-workspace::after {
  left: 58px;
  top: 72px;
  width: 48%;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
}

.visual-deploy::before {
  inset: 34px 28px auto;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(130, 232, 189, 0.5), rgba(255, 255, 255, 0.12) 22%, transparent 22%) 22px 24px / 70% 8px no-repeat,
    rgba(255, 255, 255, 0.04);
}

.visual-deploy::after {
  left: 54px;
  right: 54px;
  bottom: 36px;
  height: 38px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.capability-visual::before,
.capability-visual::after {
  display: none;
}

.capability-visual > * {
  position: absolute;
}

.visual-interface {
  background:
    radial-gradient(circle at 52% 42%, rgba(130, 232, 189, 0.08), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.012)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    rgba(255, 255, 255, 0.02);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
}

.ui-editor-shell {
  inset: 18px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 38%),
    rgba(7, 7, 8, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.16);
}

.ui-editor-shell span {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.ui-editor-shell span:nth-child(1) {
  left: 0;
  right: 0;
  top: 31px;
  height: 1px;
}

.ui-editor-shell span:nth-child(2) {
  left: 74px;
  top: 0;
  bottom: 0;
  width: 1px;
}

.ui-editor-shell span:nth-child(3) {
  right: 82px;
  top: 32px;
  bottom: 0;
  width: 1px;
  opacity: 0.7;
}

.ui-artboard {
  left: 112px;
  top: 52px;
  width: 34%;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.ui-artboard b,
.ui-artboard i {
  position: absolute;
  display: block;
  border-radius: 6px;
}

.ui-artboard b:nth-child(1) {
  left: 13px;
  top: 14px;
  width: 54%;
  height: 10px;
  background: rgba(255, 255, 255, 0.24);
}

.ui-artboard b:nth-child(2) {
  left: 13px;
  top: 34px;
  width: 72%;
  height: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.ui-artboard b:nth-child(3) {
  left: 13px;
  bottom: 14px;
  width: 38%;
  height: 8px;
  background: rgba(130, 232, 189, 0.42);
}

.ui-artboard i {
  right: 12px;
  top: 14px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.ui-layer-list {
  left: 34px;
  bottom: 32px;
  width: 62px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(10, 10, 11, 0.5);
  backdrop-filter: blur(12px);
}

.ui-layer-list em {
  display: block;
  height: 6px;
  margin-bottom: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.ui-layer-list em:nth-child(2) {
  width: 76%;
}

.ui-layer-list em:nth-child(3) {
  width: 58%;
  margin-bottom: 0;
  background: rgba(130, 232, 189, 0.38);
}

.ui-inspector {
  right: 30px;
  top: 50px;
  width: 78px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(10, 10, 11, 0.52);
  backdrop-filter: blur(12px);
}

.ui-inspector strong,
.ui-inspector span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.ui-inspector strong {
  width: 58%;
  margin-bottom: 12px;
  background: rgba(130, 232, 189, 0.42);
}

.ui-inspector span {
  width: 100%;
  margin-bottom: 7px;
}

.ui-inspector span:last-child {
  width: 68%;
  margin-bottom: 0;
}

.ui-code {
  right: 24px;
  bottom: 22px;
  width: 38%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(8, 8, 9, 0.54);
  backdrop-filter: blur(14px);
}

.ui-code b,
.ui-type-scale b,
.ui-terminal b,
.ui-table b,
.ui-checkout b,
.ui-release-card span {
  display: block;
  height: 7px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.ui-code b:nth-child(1) {
  width: 64%;
  background: rgba(130, 232, 189, 0.45);
}

.ui-code b:nth-child(2) {
  width: 88%;
}

.ui-code b:nth-child(3) {
  width: 52%;
  margin-bottom: 0;
}

.ui-store-window {
  inset: 25px 30px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.035);
}

.ui-store-window span {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.ui-store-window span:nth-child(1) {
  top: 26%;
}

.ui-store-window span:nth-child(2) {
  top: 52%;
}

.ui-store-window span:nth-child(3) {
  top: 78%;
}

.ui-product-card {
  left: 54px;
  top: 58px;
  width: 42%;
  height: 76px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 36% 28%, rgba(157, 184, 255, 0.22), transparent 50%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 70px rgba(157, 184, 255, 0.09);
}

.ui-product-card i {
  display: block;
  width: 44px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.18);
}

.ui-product-card b {
  display: block;
  height: 6px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.ui-product-card b:nth-child(2) {
  width: 80%;
}

.ui-product-card b:nth-child(3) {
  width: 52%;
}

.ui-checkout {
  right: 32px;
  top: 45px;
  width: 32%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(12, 12, 14, 0.68);
  backdrop-filter: blur(16px);
}

.ui-checkout strong {
  display: block;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(130, 232, 189, 0.5), rgba(255, 255, 255, 0.2));
}

.ui-phone {
  left: 34px;
  top: 22px;
  width: 72px;
  height: 142px;
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(4, 4, 5, 0.52);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.ui-phone span {
  display: block;
  width: 20px;
  height: 3px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.ui-phone b {
  display: block;
  height: 18px;
  margin-bottom: 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.13);
}

.ui-phone b:nth-child(2) {
  height: 38px;
  background: rgba(157, 184, 255, 0.22);
}

.ui-release-card {
  left: 122px;
  right: 28px;
  top: 38px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.ui-release-card strong {
  display: block;
  width: 50%;
  height: 9px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.ui-release-dots {
  left: 128px;
  right: 36px;
  bottom: 34px;
  display: flex;
  justify-content: space-between;
}

.ui-release-dots i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.035);
}

.ui-release-dots i:nth-child(3) {
  background: var(--green);
  box-shadow: 0 0 22px rgba(130, 232, 189, 0.75);
}

.ui-dashboard {
  inset: 24px 28px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 27%, transparent 27%),
    rgba(255, 255, 255, 0.035);
}

.ui-dashboard span {
  position: absolute;
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.ui-dashboard span:nth-child(1) {
  left: 18px;
  top: 18px;
  width: 22%;
}

.ui-dashboard span:nth-child(2) {
  left: 18px;
  top: 58px;
  width: 28%;
}

.ui-dashboard span:nth-child(3) {
  left: 54%;
  top: 18px;
  width: 28%;
}

.ui-dashboard span:nth-child(4) {
  left: 54%;
  top: 58px;
  width: 36%;
}

.ui-chart {
  left: 34px;
  bottom: 32px;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 54px;
}

.ui-chart i {
  width: 14px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(130, 232, 189, 0.55), rgba(255, 255, 255, 0.12));
}

.ui-chart i:nth-child(1) {
  height: 28px;
}

.ui-chart i:nth-child(2) {
  height: 44px;
}

.ui-chart i:nth-child(3) {
  height: 34px;
}

.ui-chart i:nth-child(4) {
  height: 52px;
}

.ui-table {
  right: 28px;
  bottom: 34px;
  width: 44%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(5, 5, 6, 0.38);
}

.ui-brand-mark {
  left: 32px;
  top: 32px;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.025),
    0 28px 80px rgba(255, 179, 214, 0.08);
}

.ui-brand-mark img {
  width: 38px;
  filter: invert(1);
}

.ui-type-scale {
  left: 132px;
  right: 30px;
  top: 38px;
}

.ui-type-scale b:nth-child(1) {
  width: 90%;
  height: 15px;
  background: rgba(255, 255, 255, 0.32);
}

.ui-type-scale b:nth-child(2) {
  width: 68%;
  height: 10px;
}

.ui-type-scale b:nth-child(3) {
  width: 46%;
  height: 8px;
}

.ui-swatches {
  left: 132px;
  bottom: 36px;
  display: flex;
  gap: 10px;
}

.ui-swatches i {
  width: 36px;
  height: 24px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.ui-swatches i:nth-child(1) {
  background: rgba(130, 232, 189, 0.3);
}

.ui-swatches i:nth-child(2) {
  background: rgba(157, 184, 255, 0.3);
}

.ui-swatches i:nth-child(3) {
  background: rgba(245, 210, 127, 0.25);
}

.ui-pipeline {
  left: 28px;
  right: 28px;
  top: 38px;
  height: 56px;
}

.ui-pipeline::before {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 26px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(130, 232, 189, 0.65), rgba(157, 184, 255, 0.3), rgba(255, 255, 255, 0.12));
}

.ui-pipeline span {
  position: absolute;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 11, 0.88);
  box-shadow: 0 0 22px rgba(130, 232, 189, 0.14);
}

.ui-pipeline span:nth-child(1) {
  left: 8%;
}

.ui-pipeline span:nth-child(2) {
  left: 48%;
}

.ui-pipeline span:nth-child(3) {
  right: 8%;
  background: var(--green);
}

.ui-terminal {
  left: 34px;
  right: 34px;
  bottom: 30px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(4, 4, 5, 0.6);
}

.ui-terminal b:nth-child(1) {
  width: 28%;
  background: rgba(130, 232, 189, 0.48);
}

.ui-terminal b:nth-child(2) {
  width: 82%;
}

.ui-terminal b:nth-child(3) {
  width: 60%;
  margin-bottom: 0;
}

.ui-status {
  right: 42px;
  top: 84px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(12, 12, 14, 0.78);
  backdrop-filter: blur(14px);
  color: var(--text);
  font-size: 0.75rem;
}

.ui-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(130, 232, 189, 0.8);
}

.section-heading.compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-list span {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-list h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.service-list p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.project-card {
  display: grid;
  min-height: 420px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  outline: none;
}

.project-preview {
  position: relative;
  min-height: 210px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.project-preview::before {
  position: absolute;
  inset: 30px 24px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent 28%);
}

.project-preview::after {
  position: absolute;
  inset: auto 44px 42px;
  height: 52px;
  content: "";
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.11);
}

.project-preview span {
  position: absolute;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.project-preview span:nth-child(1) {
  width: 38%;
  left: 48px;
  top: 60px;
}

.project-preview span:nth-child(2) {
  width: 58%;
  left: 48px;
  top: 82px;
}

.project-preview span:nth-child(3) {
  width: 30%;
  right: 48px;
  bottom: 62px;
}

.project-preview.zen {
  background:
    radial-gradient(circle at 30% 28%, rgba(130, 232, 189, 0.35), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(130, 232, 189, 0.08));
}

.project-preview.emas {
  background:
    radial-gradient(circle at 72% 34%, rgba(157, 184, 255, 0.42), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(157, 184, 255, 0.1));
}

.project-preview.sharp {
  background:
    radial-gradient(circle at 42% 70%, rgba(255, 179, 214, 0.35), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(245, 210, 127, 0.09));
}

.project-body {
  align-self: end;
  padding: 22px;
}

.project-body span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 0.78rem;
}

.project-body h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.project-body p {
  margin-bottom: 0;
}

.legal-strip {
  padding-top: 0;
}

.legal-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
}

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

.link-matrix a {
  display: grid;
  gap: 4px;
  min-height: 64px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-weight: 700;
  transition:
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.link-matrix a span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.link-matrix a:hover,
.link-matrix a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.075);
  outline: none;
}

.company {
  padding-top: 0;
}

.company-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: center;
  padding: 34px;
}

.company-card img {
  width: 240px;
  filter: invert(1);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer div {
  display: grid;
  gap: 2px;
}

.footer strong {
  color: var(--text);
}

.footer nav {
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer a:hover,
.footer a:focus-visible,
.legal-document a,
.faq-block a {
  color: var(--text);
}

.compact-nav {
  margin-bottom: 70px;
}

.legal-page {
  padding: 64px 0 90px;
}

.legal-hero {
  max-width: 880px;
  margin-bottom: 32px;
}

.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
}

.legal-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.legal-document {
  display: grid;
  gap: 0;
  padding: 8px 28px;
}

.legal-document section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.legal-document section:last-child {
  border-bottom: 0;
}

.legal-document h2,
.support-card h2,
.faq-block h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px 0;
}

.support-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.support-card span {
  margin-bottom: 48px;
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 800;
}

.support-card p {
  margin-bottom: 22px;
}

.support-card .button {
  margin-top: auto;
}

.faq-block {
  padding: 24px;
}

.faq-block details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq-block details:last-child {
  padding-bottom: 0;
}

.faq-block summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-block p {
  margin: 10px 0 0;
}

.app-directory {
  grid-template-columns: minmax(0, 520px);
}

.app-links {
  gap: 12px;
  margin-top: auto;
}

.app-links a {
  color: var(--text);
  font-weight: 700;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  align-content: center;
  text-align: center;
}

.not-found img {
  width: 70px;
  margin-bottom: 28px;
  filter: invert(1);
}

.not-found h1 {
  margin-bottom: 12px;
}

.not-found p:not(.eyebrow) {
  max-width: 440px;
  color: var(--muted);
}

.reveal-ready [data-reveal] {
  animation: revealIn 620ms ease both;
}

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

.float-a {
  animation: floatA 7s ease-in-out infinite;
}

.float-b {
  animation: floatB 8s ease-in-out infinite;
}

.float-c {
  animation: floatC 9s ease-in-out infinite;
}

.float-d {
  animation: floatD 7.5s ease-in-out infinite;
}

@keyframes floatA {
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes floatB {
  50% {
    transform: translate3d(-4px, 7px, 0);
  }
}

@keyframes floatC {
  50% {
    transform: translate3d(4px, -6px, 0);
  }
}

@keyframes floatD {
  50% {
    transform: translate3d(0, 6px, 0);
  }
}

@keyframes particlePulse {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.8);
  }
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-shell {
    padding: 14px;
  }

  .nav {
    top: 10px;
    align-items: flex-start;
    gap: 12px;
  }

  .nav nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-top: 8px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .legal-panel,
  .company-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
  }

  .hero-stack {
    max-width: 620px;
  }

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

  .capability-card {
    min-height: 320px;
  }

  .capability-visual {
    height: 180px;
  }

  .project-card {
    min-height: 360px;
  }

  .project-preview {
    min-height: 190px;
  }

  .company-card img {
    width: 210px;
  }

  .footer {
    flex-direction: column;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-shell {
    padding: 10px;
  }

  .section-grid,
  .section,
  .footer,
  .legal-page,
  .not-found {
    width: min(100%, calc(100vw - 24px));
  }

  .nav {
    width: min(100%, calc(100vw - 20px));
  }

  .nav-cta {
    display: none;
  }

  .nav nav a {
    padding-inline: 10px;
  }

  .hero {
    gap: 28px;
    padding: 52px 0 46px;
  }

  .ambient-grid {
    inset: 0;
  }

  .capabilities::before {
    inset-inline: 0;
  }

  h1,
  .legal-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.15rem);
  }

  .hero-text {
    margin-bottom: 18px;
    font-size: 0.96rem;
  }

  .link-matrix {
    grid-template-columns: 1fr;
  }

  .hero .glass-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .command-card {
    padding: 16px;
  }

  .console-header {
    grid-template-columns: 32px 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .console-header img {
    width: 32px;
    height: 32px;
  }

  .console-header strong {
    font-size: 0.86rem;
  }

  .console-bars {
    gap: 6px;
    margin-bottom: 12px;
  }

  .console-bars span {
    height: 6px;
  }

  .studio-console p {
    font-size: 0.82rem;
  }

  .mini-card {
    min-height: 156px;
    padding: 14px;
  }

  .card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 18px;
    font-size: 0.68rem;
  }

  .mini-card h2 {
    font-size: 0.9rem;
  }

  .mini-card p {
    font-size: 0.72rem;
  }

  .hero-stack .activity-card {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .capability-visual {
    height: 150px;
  }

  .capability-card {
    min-height: 340px;
  }

  .ui-code,
  .ui-checkout,
  .ui-status {
    display: none;
  }

  .ui-artboard {
    left: 82px;
    width: 36%;
  }

  .ui-layer-list {
    left: 24px;
    bottom: 24px;
    width: 58px;
  }

  .ui-inspector {
    right: 18px;
    width: 66px;
    padding: 8px;
  }

  .ui-product-card {
    left: 28px;
    width: 56%;
  }

  .ui-phone {
    left: 22px;
  }

  .ui-release-card {
    left: 108px;
    right: 18px;
  }

  .ui-release-dots {
    left: 112px;
    right: 26px;
  }

  .ui-type-scale,
  .ui-swatches {
    left: 118px;
  }

  .ui-brand-mark {
    left: 24px;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-document,
  .support-card,
  .faq-block,
  .company-card,
  .legal-panel {
    padding: 20px;
  }

  .activity-line {
    grid-template-columns: 10px 1fr;
  }

  .activity-line em {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
