:root {
  --ink-950: #0b1120;
  --ink-900: #0f172a;
  --ink-850: #162033;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --mist-50: #f8fafc;
  --mist-100: #f1f5f9;
  --mist-200: #e2e8f0;
  --white: #ffffff;
  --aqua-300: #5eead4;
  --aqua-400: #2dd4bf;
  --aqua-500: #14b8a6;
  --aqua-600: #0d9488;
  --aqua-700: #0f766e;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --violet-500: #8b5cf6;
  --amber-400: #fbbf24;
  --rose-500: #f43f5e;
  --shell: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-card: 0 18px 55px rgba(15, 23, 42, 0.1);
  --shadow-frame: 0 35px 90px rgba(7, 15, 31, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  color: var(--ink-900);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
.brand strong {
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.035em;
}

:focus-visible {
  outline: 3px solid var(--sky-400);
  outline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--ink-950);
  background: var(--aqua-300);
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.brand img {
  border-radius: 12px;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  color: var(--ink-900);
  font-size: 1.02rem;
  font-weight: 760;
}

.brand small {
  margin-top: 0.18rem;
  color: var(--ink-500);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2rem);
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--ink-600);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 150ms ease;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aqua-500), var(--sky-500));
  transition: right 160ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--ink-900);
}

.site-nav > a:not(.button):hover::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--mist-200);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink-900);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-size: 0.84rem;
}

.button-small svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua-600), #087f9c);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(13, 148, 136, 0.34);
}

.button-secondary,
.button-ghost {
  border-color: var(--mist-200);
  color: var(--ink-800);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: #c2cedd;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 156px 0 110px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(248, 250, 252, 0.82),
      rgba(238, 246, 248, 0.92)
    ),
    var(--mist-50);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9));
  pointer-events: none;
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(100, 116, 139, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 116, 139, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-orb,
.workflow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-orb-a {
  width: 560px;
  height: 560px;
  top: -170px;
  right: -130px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.16),
    transparent 68%
  );
}

.hero-orb-b {
  width: 470px;
  height: 470px;
  left: -220px;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.18),
    transparent 70%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.25fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.hero-copy {
  padding-bottom: 1.5rem;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--aqua-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.35rem;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aqua-500);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.12);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 1.45rem;
  color: var(--ink-950);
  font-size: clamp(3rem, 4.65vw, 4.8rem);
  font-weight: 780;
  line-height: 0.99;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(120deg, var(--aqua-600) 5%, var(--sky-500) 90%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 2rem;
  color: var(--ink-600);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin: 1.4rem 0 0;
  padding: 0;
  color: var(--ink-500);
  font-size: 0.8rem;
  font-weight: 650;
  list-style: none;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-notes svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--aqua-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.hero-visual,
.product-visual,
.workflow-visual {
  position: relative;
}

.hero-visual {
  width: 100%;
  max-width: 830px;
}

.visual-glow {
  position: absolute;
  inset: 7% 4% -7%;
  border-radius: 50%;
  background: linear-gradient(
    120deg,
    rgba(20, 184, 166, 0.23),
    rgba(14, 165, 233, 0.2)
  );
  filter: blur(48px);
}

.app-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-frame);
}

.app-frame-hero {
  transform: perspective(1600px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center left;
}

.frame-bar {
  position: relative;
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid var(--mist-200);
  color: var(--ink-500);
  background: rgba(248, 250, 252, 0.96);
  font-size: 0.67rem;
  font-weight: 650;
}

.frame-dots {
  display: flex;
  gap: 5px;
}

.frame-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
}

.frame-dots span:first-child {
  background: #fb7185;
}

.frame-dots span:nth-child(2) {
  background: #fbbf24;
}

.frame-dots span:nth-child(3) {
  background: #34d399;
}

.frame-address {
  min-width: 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lock-icon {
  margin-right: 0.25rem;
  color: var(--aqua-500);
  font-size: 0.5rem;
}

.frame-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--aqua-600);
}

.frame-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua-500);
}

.app-frame img {
  width: 100%;
  height: auto;
  background: var(--mist-100);
}

.floating-card,
.artifact-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(12px);
}

.floating-card-top {
  top: -25px;
  right: -25px;
}

.floating-card-bottom {
  bottom: -28px;
  left: 6%;
}

.float-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #087f78;
  background: rgba(45, 212, 191, 0.2);
  font-size: 1rem;
  font-weight: 900;
}

.float-icon.purple {
  color: #6d3bd1;
  background: rgba(139, 92, 246, 0.16);
}

.floating-card strong,
.floating-card small,
.artifact-card strong,
.artifact-card small {
  display: block;
  line-height: 1.35;
}

.floating-card strong,
.artifact-card strong {
  color: var(--ink-800);
  font-size: 0.78rem;
}

.floating-card small,
.artifact-card small {
  color: var(--ink-500);
  font-size: 0.66rem;
}

.integration-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--mist-200);
  background: var(--white);
}

.integration-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.integration-inner > p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--ink-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.integration-inner ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.2rem clamp(1.4rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0;
  color: var(--ink-600);
  list-style: none;
}

.integration-inner li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.integration-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink-800);
  background: var(--mist-100);
  font-size: 0.68rem;
  font-weight: 900;
}

.integration-mark.cyan {
  color: #036b7c;
  background: #cffafe;
}

.integration-mark.green {
  color: #047857;
  background: #d1fae5;
}

.integration-mark.blue {
  color: #0369a1;
  background: #e0f2fe;
}

.integration-mark.orange {
  color: #b45309;
  background: #fef3c7;
}

.integration-mark.violet {
  color: #6d28d9;
  background: #ede9fe;
}

.section {
  position: relative;
  padding: clamp(90px, 10vw, 140px) 0;
}

.section-heading {
  max-width: 640px;
}

.section-heading-centered {
  margin: 0 auto 3.7rem;
  text-align: center;
}

.section-heading h2,
.product-copy h2,
.workflow-copy h2,
.mlflow-copy h2,
.cta-card h2 {
  margin: 0.75rem 0 1.15rem;
  color: var(--ink-950);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  font-weight: 760;
  line-height: 1.08;
}

.section-heading p,
.product-copy > p,
.workflow-copy > p,
.mlflow-copy > p,
.cta-card > p {
  color: var(--ink-500);
  font-size: 1.03rem;
  line-height: 1.75;
}

.capabilities {
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(14, 165, 233, 0.07),
      transparent 30%
    ),
    var(--white);
}

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

.capability-card {
  min-height: 245px;
  padding: 1.7rem;
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.capability-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  border-radius: 13px;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.feature-icon.aqua {
  color: #087f78;
  background: #ccfbf1;
}

.feature-icon.sky {
  color: #0369a1;
  background: #e0f2fe;
}

.feature-icon.amber {
  color: #b45309;
  background: #fef3c7;
}

.feature-icon.violet {
  color: #6d28d9;
  background: #ede9fe;
}

.feature-icon.rose {
  color: #be123c;
  background: #ffe4e6;
}

.feature-icon.teal {
  color: #0f766e;
  background: #d5f5ef;
}

.capability-card h3 {
  margin-bottom: 0.7rem;
  color: var(--ink-900);
  font-size: 1.18rem;
  font-weight: 730;
}

.capability-card p {
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 0.91rem;
  line-height: 1.68;
}

.product-section {
  overflow: hidden;
  background: var(--mist-50);
}

.product-section::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  top: 50%;
  left: -350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.12),
    transparent 68%
  );
  transform: translateY(-50%);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.product-copy h2 {
  max-width: 500px;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.7rem 0 1.8rem;
  padding: 0;
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 650;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.check-list span {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  margin-top: 0.05rem;
  border-radius: 50%;
  color: #087f78;
  background: rgba(20, 184, 166, 0.14);
  font-size: 0.72rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--aqua-700);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.product-visual {
  width: min(770px, 63vw);
}

.app-frame-product {
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.app-frame-product img {
  background: #181818;
}

.mlflow-section {
  overflow: hidden;
  background: var(--white);
}

.mlflow-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: 18%;
  right: -280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.12),
    transparent 68%
  );
}

.mlflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.mlflow-copy h2 {
  max-width: 500px;
}

.mlflow-visual {
  width: min(770px, 63vw);
}

.app-frame-mlflow img,
.mlflow-visual img,
.mlflow-visual .app-frame-product img {
  background: #ffffff;
}

.workflow-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(15, 23, 42, 0.98), rgba(11, 17, 32, 1)),
    var(--ink-950);
}

.workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(94, 234, 212, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 234, 212, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 55%, transparent);
}

.workflow-orb {
  width: 700px;
  height: 700px;
  right: -250px;
  top: -180px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.18),
    transparent 68%
  );
}

.workflow-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(500px, 1.24fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.kicker-dark {
  color: var(--aqua-300);
}

.workflow-copy h2,
.cta-card h2 {
  color: var(--white);
}

.workflow-copy > p,
.cta-card > p {
  color: #b8c5d7;
}

.workflow-steps {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 2.1rem;
}

.workflow-steps > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 0.9rem;
}

.workflow-steps > div > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(94, 234, 212, 0.24);
  border-radius: 10px;
  color: var(--aqua-300);
  background: rgba(20, 184, 166, 0.08);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.workflow-steps p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.86rem;
  line-height: 1.55;
}

.workflow-steps strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--mist-100);
  font-size: 0.94rem;
}

.button-light {
  color: var(--ink-950);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.button-light:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.workflow-visual {
  width: min(760px, 58vw);
}

.app-frame-dark {
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.36);
}

.app-frame-dark .frame-bar {
  border-color: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
  background: #172033;
}

.artifact-card {
  right: -25px;
  bottom: -28px;
  min-width: 255px;
}

.artifact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 0.65rem;
  font-weight: 900;
}

.artifact-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 50%;
  color: #087f78;
  background: #ccfbf1;
  font-size: 0.74rem;
  font-weight: 900;
}

.open-section {
  background: var(--white);
}

.open-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.principles {
  display: grid;
}

.principles article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1rem;
  padding: 1.45rem 0;
  border-top: 1px solid var(--mist-200);
}

.principles article:last-child {
  border-bottom: 1px solid var(--mist-200);
}

.principle-number {
  color: var(--aqua-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.principles h3 {
  margin-bottom: 0.35rem;
  color: var(--ink-900);
  font-size: 1.05rem;
  font-weight: 730;
}

.principles p {
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.cta-section {
  padding: 0 0 clamp(90px, 9vw, 130px);
  background: var(--white);
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.7rem) 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(
      circle at 20% 120%,
      rgba(20, 184, 166, 0.24),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% -20%,
      rgba(14, 165, 233, 0.24),
      transparent 35%
    ),
    var(--ink-950);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

.cta-card > *:not(.cta-grid) {
  position: relative;
  z-index: 2;
}

.cta-card > img {
  margin: 0 auto 1.35rem;
}

.cta-card h2 {
  margin-inline: auto;
  max-width: 760px;
}

.cta-card > p {
  max-width: 620px;
  margin: 0 auto 2rem;
}

.cta-actions {
  justify-content: center;
}

.button-dark-outline {
  border-color: rgba(226, 232, 240, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-dark-outline:hover {
  border-color: rgba(226, 232, 240, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.cta-grid {
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(94, 234, 212, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 234, 212, 0.16) 1px, transparent 1px);
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.site-footer {
  border-top: 1px solid var(--mist-200);
  background: var(--mist-50);
}

.footer-inner {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--ink-900);
  font-size: 0.9rem;
}

.footer-brand span,
.footer-inner > p {
  color: var(--ink-500);
  font-size: 0.72rem;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-inner nav a {
  color: var(--ink-600);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-inner nav a:hover {
  color: var(--aqua-600);
}

.footer-inner > p {
  margin: 0;
  white-space: nowrap;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .hero {
    min-height: 0;
  }

  .hero-content {
    grid-template-columns: minmax(0, 0.82fr) minmax(450px, 1.18fr);
    gap: 3rem;
  }

  .hero-visual {
    width: 100%;
    max-width: 700px;
  }

  .floating-card-top {
    right: -10px;
  }

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

  .product-grid,
  .workflow-layout,
  .mlflow-grid {
    gap: 3rem;
  }

  .workflow-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  }

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

  .footer-inner > p {
    grid-column: 1 / -1;
    margin-top: -1.5rem;
  }
}

@media (max-width: 880px) {
  html:not(.nav-ready) .site-header {
    position: relative;
    border-bottom-color: var(--mist-200);
    background: var(--white);
  }

  html:not(.nav-ready) .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    padding-bottom: 1rem;
  }

  html:not(.nav-ready) .site-nav > a {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem;
    border: 1px solid var(--mist-200);
    border-radius: 10px;
    background: var(--mist-50);
  }

  html:not(.nav-ready) .site-nav .button {
    grid-column: 1 / -1;
  }

  html:not(.nav-ready) .hero {
    padding-top: 64px;
  }

  .nav-ready .nav-toggle {
    display: block;
  }

  .site-header,
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
  }

  .header-inner {
    position: relative;
    min-height: 72px;
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    padding: 0 0 1rem;
    justify-content: center;
  }

  .nav-ready .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    width: auto;
    display: grid;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid var(--mist-200);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      visibility 160ms ease,
      transform 160ms ease;
  }

  .nav-ready .site-nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-ready .site-nav > a:not(.button) {
    padding: 0.8rem;
    border-radius: 9px;
  }

  .nav-ready .site-nav > a:not(.button):hover {
    background: var(--mist-100);
  }

  .nav-ready .site-nav > a:not(.button)::after {
    display: none;
  }

  .nav-ready .site-nav .button {
    margin-top: 0.45rem;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-content,
  .product-grid,
  .workflow-layout,
  .mlflow-grid,
  .open-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 4.5rem;
  }

  .hero-copy {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-notes {
    justify-content: center;
  }

  .hero-visual,
  .product-visual,
  .workflow-visual,
  .mlflow-visual {
    width: 100%;
  }

  .app-frame-hero {
    transform: none;
  }

  .integration-inner {
    padding-block: 1.6rem;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }

  .integration-inner ul {
    justify-content: center;
  }

  .product-grid,
  .workflow-layout,
  .mlflow-grid {
    gap: 3.5rem;
  }

  .product-copy,
  .workflow-copy,
  .mlflow-copy {
    max-width: 650px;
  }

  .product-visual {
    order: 2;
  }

  .mlflow-copy {
    order: 1;
  }

  .mlflow-visual {
    order: 2;
  }

  .open-layout {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 120px 0 88px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-notes {
    gap: 0.5rem 0.8rem;
  }

  .frame-bar {
    grid-template-columns: auto 1fr;
    min-height: 36px;
    padding-inline: 0.65rem;
  }

  .frame-status {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .integration-inner ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.8rem;
  }

  .integration-inner li:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

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

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

  .section {
    padding: 82px 0;
  }

  .section-heading-centered {
    margin-bottom: 2.5rem;
  }

  .section-heading h2,
  .product-copy h2,
  .workflow-copy h2,
  .mlflow-copy h2,
  .cta-card h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .workflow-steps > div {
    grid-template-columns: 36px 1fr;
    gap: 0.7rem;
  }

  .artifact-card {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    min-width: 0;
    width: calc(100% - 24px);
    margin: -12px auto 0;
  }

  .principles article {
    grid-template-columns: 38px 1fr;
  }

  .cta-card {
    padding-inline: 1.25rem;
    border-radius: var(--radius-lg);
  }

  .footer-inner {
    padding-block: 2.2rem;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-inner nav {
    gap: 0.8rem 1.2rem;
  }

  .footer-inner > p {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 360px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-notes {
    font-size: 0.72rem;
  }

  .integration-inner ul {
    grid-template-columns: 1fr;
  }

  .integration-inner li,
  .integration-inner li:last-child {
    grid-column: auto;
    justify-self: start;
  }

  .frame-address {
    text-align: right;
  }
}

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

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-grid,
  .hero-orb,
  .workflow-orb,
  .cta-grid,
  .floating-card,
  .artifact-card {
    display: none !important;
  }

  .hero,
  .workflow-section,
  .cta-card {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: 0;
    padding-top: 2rem;
  }

  .workflow-copy h2,
  .cta-card h2,
  .workflow-copy > p,
  .cta-card > p {
    color: #000;
  }
}
