@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #080b10;
  --bg-soft: #0d1118;
  --panel: #111722;
  --panel-raised: #151d2a;
  --ink: #f5f7fb;
  --muted: #9aa6b7;
  --line: rgba(255, 255, 255, 0.1);
  --cyan: #5ee6ff;
  --amber: #ffbd72;
  --violet: #b99aff;
  --green: #72e6ac;
  --red: #ff7f87;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.65 "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #071014;
  background: var(--cyan);
  border-radius: 7px;
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  height: 84px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  display: block;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-header nav a {
  color: #b8c1cf;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: white;
}

.site-header .nav-github {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
}

.hero {
  position: relative;
  display: grid;
  min-height: 800px;
  padding: 160px max(24px, calc((100vw - var(--max)) / 2)) 94px;
  grid-template-columns: minmax(380px, 0.86fr) minmax(540px, 1.14fr);
  align-items: center;
  gap: 46px;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black 5%, transparent 90%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.17;
}

.hero-glow-a {
  top: -230px;
  right: 0;
  background: #397cff;
}

.hero-glow-b {
  bottom: -330px;
  left: -190px;
  background: #37e3ce;
}

.eyebrow,
.section-kicker {
  margin: 0 0 19px;
  color: var(--cyan);
  font: 500 0.73rem/1.4 "DM Mono", monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--cyan);
}

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

h1 {
  margin-bottom: 27px;
  font-size: clamp(3.55rem, 6.4vw, 6.65rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 32px;
  color: #aeb8c7;
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions,
.opensource-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 7px;
  font: 700 0.88rem/1 "Manrope", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #041014;
  background: var(--cyan);
  box-shadow: 0 12px 38px rgba(94, 230, 255, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #91efff;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: #e8edf5;
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.hero-meta {
  display: flex;
  margin-top: 37px;
  gap: 24px;
  color: #737f90;
  font: 500 0.68rem/1 "DM Mono", monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-meta span {
  position: relative;
}

.hero-meta span + span::before {
  position: absolute;
  left: -14px;
  color: #3d4755;
  content: "/";
}

.hero-visual {
  position: relative;
  width: min(780px, 58vw);
  perspective: 1400px;
}

.viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #0b1018;
  box-shadow: 0 55px 110px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(0, 0, 0, 0.45);
  transform: rotateY(-8deg) rotateX(2deg);
  transform-origin: left center;
}

.viewport::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 24%);
  content: "";
}

.viewport-bar,
.timeline {
  display: flex;
  height: 44px;
  padding: 0 15px;
  align-items: center;
  gap: 13px;
  color: #687487;
  background: #0e141e;
  font: 500 0.59rem/1 "DM Mono", monospace;
  letter-spacing: 0.07em;
}

.viewport-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.viewport-bar > span {
  flex: 1;
}

.viewport-bar b {
  padding: 5px 8px;
  color: #031210;
  background: var(--green);
  border-radius: 4px;
  font-size: 0.56rem;
}

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

.window-dots i,
.demo-toolbar i {
  width: 6px;
  height: 6px;
  background: #3a4555;
  border-radius: 50%;
}

.scene {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a2a3a;
}

.scene-sky {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 67% 21%, rgba(255, 214, 146, 0.37), transparent 16%), linear-gradient(#25415d 0%, #607b8b 52%, #baa47f 100%);
}

.scene-sun {
  position: absolute;
  top: 18%;
  right: 25%;
  width: 42px;
  height: 42px;
  background: #ffe2aa;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(255, 224, 170, 0.75);
}

.mountain {
  position: absolute;
  right: -10%;
  bottom: 29%;
  left: -10%;
  height: 48%;
  clip-path: polygon(0 75%, 14% 38%, 28% 66%, 45% 16%, 59% 64%, 74% 28%, 100% 70%, 100% 100%, 0 100%);
}

.mountain-back {
  background: #334858;
  opacity: 0.72;
  transform: translateY(-17px) scale(1.1);
}

.mountain-front {
  background: #1d2d35;
}

.scene-ground {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 36%;
  background: linear-gradient(7deg, #101c1d, #2b3c34);
  clip-path: polygon(0 28%, 36% 0, 66% 22%, 100% 3%, 100% 100%, 0 100%);
}

.subject {
  position: absolute;
  z-index: 3;
  bottom: 13%;
  left: 51%;
  width: 27px;
  height: 79px;
  background: #101416;
  border-radius: 50% 50% 20% 20%;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.42);
}

.subject::before {
  position: absolute;
  top: -17px;
  left: 6px;
  width: 16px;
  height: 20px;
  background: #111517;
  border-radius: 50%;
  content: "";
}

.subject::after {
  position: absolute;
  bottom: -16px;
  left: -8px;
  width: 43px;
  height: 22px;
  border-top: 7px solid #111517;
  border-radius: 50%;
  content: "";
}

.safe-frame {
  position: absolute;
  z-index: 4;
  inset: 13% 12%;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.safe-frame::before,
.safe-frame::after {
  position: absolute;
  content: "";
}

.safe-frame::before {
  top: 50%;
  right: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.safe-frame::after {
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.crosshair {
  position: absolute;
  z-index: 5;
  width: 13px;
  height: 13px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(94, 230, 255, 0.5);
}

.crosshair-a {
  top: 50%;
  left: 52%;
}

.crosshair-b {
  top: 31%;
  left: 29%;
  opacity: 0.55;
}

.focus-pill {
  position: absolute;
  z-index: 5;
  top: calc(50% + 21px);
  left: calc(52% - 38px);
  padding: 5px 7px;
  color: #051013;
  background: var(--cyan);
  border-radius: 3px;
  font: 500 0.5rem/1 "DM Mono", monospace;
}

.shot-card {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 150px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(8, 12, 18, 0.79);
  backdrop-filter: blur(9px);
}

.shot-card small {
  margin-bottom: 3px;
  color: var(--cyan);
  font: 500 0.5rem/1 "DM Mono", monospace;
  letter-spacing: 0.09em;
}

.shot-card strong {
  font-size: 0.75rem;
}

.shot-card span {
  color: #8994a3;
  font-size: 0.61rem;
}

.shot-card-a {
  top: 18px;
  left: 18px;
}

.shot-card-b {
  right: 18px;
  bottom: 18px;
  opacity: 0.73;
}

.timeline {
  height: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-track {
  position: relative;
  height: 3px;
  flex: 1;
  background: #263241;
}

.timeline-track i {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 0;
  width: 64%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(94, 230, 255, 0.4);
}

.proof {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.proof div {
  display: flex;
  min-height: 132px;
  padding: 24px 31px;
  flex-direction: column;
  justify-content: center;
}

.proof div + div {
  border-left: 1px solid var(--line);
}

.proof strong {
  color: white;
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.proof span {
  margin-top: 7px;
  color: #788495;
  font: 500 0.65rem/1.3 "DM Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 126px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

h2 {
  margin-bottom: 25px;
  font-size: clamp(2.6rem, 5.4vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.intro-grid h2 {
  margin: 0;
}

.intro-grid > div {
  padding-top: 8px;
  color: #8e99a9;
}

.large-copy {
  margin-bottom: 27px;
  color: #dfe5ed;
  font-size: 1.24rem;
  line-height: 1.62;
}

.features {
  padding-top: 44px;
}

.section-heading {
  display: grid;
  margin-bottom: 53px;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading > p {
  margin: 0 0 10px;
  color: #8d98a8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.feature {
  position: relative;
  min-height: 390px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.035), transparent 48%), var(--bg-soft);
  grid-column: span 2;
}

.feature-wide {
  grid-column: span 3;
}

.feature-number {
  color: #596474;
  font: 500 0.65rem/1 "DM Mono", monospace;
}

.feature h3 {
  margin: 31px 0 12px;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.feature p {
  max-width: 460px;
  color: #8591a2;
  font-size: 0.9rem;
}

.feature ul {
  display: flex;
  margin: 26px 0 0;
  padding: 0;
  gap: 9px;
  flex-wrap: wrap;
  list-style: none;
}

.feature li {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #9da7b5;
  font: 500 0.59rem/1 "DM Mono", monospace;
  text-transform: uppercase;
}

.feature-icon {
  position: absolute;
  top: 30px;
  right: 29px;
  width: 74px;
  height: 74px;
  color: var(--cyan);
}

.feature-amber .feature-icon { color: var(--amber); }
.feature-violet .feature-icon { color: var(--violet); }
.feature-green .feature-icon { color: var(--green); }
.feature-red .feature-icon { color: var(--red); }

.icon-layers i {
  position: absolute;
  width: 48px;
  height: 28px;
  border: 1px solid currentColor;
  transform: skewY(-22deg) rotate(22deg);
}

.icon-layers i:nth-child(1) { top: 4px; right: 3px; }
.icon-layers i:nth-child(2) { top: 20px; right: 13px; opacity: 0.65; }
.icon-layers i:nth-child(3) { top: 36px; right: 23px; opacity: 0.35; }

.icon-orbit {
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(-22deg) scaleY(0.48);
}

.icon-orbit i {
  position: absolute;
  top: 27px;
  left: -5px;
  width: 11px;
  height: 11px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 13px currentColor;
}

.icon-blend i {
  position: absolute;
  top: 9px;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-blend i:first-child { left: 2px; }
.icon-blend i:last-child { right: 2px; opacity: 0.48; }

.icon-frame {
  border: 1px solid currentColor;
}

.icon-frame::before,
.icon-frame::after {
  position: absolute;
  content: "";
}

.icon-frame::before {
  top: 50%;
  right: 0;
  left: 0;
  border-top: 1px solid currentColor;
  opacity: 0.45;
}

.icon-frame::after {
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid currentColor;
  opacity: 0.45;
}

.icon-frame i {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 17px;
  height: 17px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 14px currentColor;
}

.icon-pulse i {
  position: absolute;
  inset: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.icon-pulse i:nth-child(2) { inset: 15px; opacity: 0.65; }
.icon-pulse i:nth-child(3) { inset: 30px; background: currentColor; box-shadow: 0 0 14px currentColor; }

.pipeline {
  display: grid;
  padding-top: 150px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 105px;
}

.pipeline-copy {
  position: sticky;
  top: 70px;
  align-self: start;
}

.pipeline-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.pipeline-copy > p:not(.section-kicker) {
  color: #8e99aa;
}

.text-link {
  display: inline-flex;
  margin-top: 15px;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

.pipeline-stages {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pipeline-stages li {
  display: grid;
  min-height: 142px;
  padding: 27px 4px;
  border-top: 1px solid var(--line);
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 15px;
}

.pipeline-stages li:last-child {
  border-bottom: 1px solid var(--line);
}

.pipeline-stages > li > span {
  color: #596474;
  font: 500 0.7rem/1 "DM Mono", monospace;
}

.pipeline-stages strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.36rem;
  letter-spacing: -0.03em;
}

.pipeline-stages p {
  margin: 0;
  color: #7f8b9c;
  font-size: 0.86rem;
}

.pipeline-stages b {
  color: #667283;
  font: 400 0.61rem/1.4 "DM Mono", monospace;
  letter-spacing: 0.03em;
}

.demo-section {
  padding: 20px 0 130px;
  background: #0b1017;
}

.demo-copy {
  display: grid;
  padding-bottom: 47px;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 80px;
}

.demo-copy h2 {
  margin: 0;
}

.demo-copy > p {
  margin: 0 0 8px;
  color: #8e99a9;
}

.demo-shell {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: #06080c;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
}

.demo-toolbar {
  display: flex;
  height: 52px;
  padding: 0 17px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #677383;
  background: #111722;
  font: 500 0.63rem/1 "DM Mono", monospace;
}

.demo-toolbar > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.demo-toolbar > div span {
  margin-left: 12px;
}

.demo-toolbar a {
  color: #aab4c2;
  text-decoration: none;
}

.demo-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 530px;
  background: radial-gradient(circle at 50% 25%, rgba(68, 122, 157, 0.2), transparent 43%), linear-gradient(145deg, #0b111a, #05070b);
}

.demo-stage::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
}

.demo-stage iframe {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.demo-poster {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.demo-poster img {
  margin-bottom: 22px;
  filter: drop-shadow(0 0 25px rgba(94, 230, 255, 0.24));
}

.demo-poster p {
  margin-bottom: 9px;
  color: var(--cyan);
  font: 500 0.7rem/1 "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-poster h3 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.06em;
}

.demo-poster small {
  margin-top: 16px;
  color: #657182;
  font-size: 0.71rem;
}

.opensource {
  display: grid;
  grid-template-columns: 1.42fr 0.58fr;
  gap: 14px;
}

.opensource-card,
.provenance {
  min-height: 480px;
  padding: clamp(35px, 5vw, 67px);
  border-radius: 13px;
}

.opensource-card {
  color: #081014;
  background: var(--cyan);
}

.opensource-card .section-kicker {
  color: #176273;
}

.opensource-card h2 {
  max-width: 700px;
  margin-bottom: 24px;
}

.opensource-card > p {
  max-width: 630px;
  color: #235764;
}

.opensource-actions {
  margin-top: 33px;
}

.button-light {
  color: white;
  background: #071014;
}

.text-link-light {
  margin: 0 0 0 13px;
  color: #124d5a;
}

.provenance {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(185, 154, 255, 0.13), transparent 52%), var(--bg-soft);
}

.provenance > span {
  margin-bottom: auto;
  color: var(--violet);
  font: 500 0.67rem/1 "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.provenance p {
  color: #d0d6e0;
  font-size: 1rem;
}

.provenance small {
  color: #6f7a8b;
  font-size: 0.68rem;
}

footer {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  min-height: 125px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

footer p {
  margin: 0;
  color: #6d7989;
  font-size: 0.76rem;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

footer > div a {
  color: #8994a4;
  font-size: 0.73rem;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
    padding-top: 145px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: 92%;
    margin: 30px auto 0;
  }

  .viewport {
    transform: rotateY(-4deg) rotateX(1deg);
  }

  .feature,
  .feature-wide {
    grid-column: span 3;
  }

  .pipeline {
    gap: 60px;
  }

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

  .provenance {
    min-height: 330px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 32px);
  }

  .site-header nav a:not(.nav-github) {
    display: none;
  }

  .hero {
    padding: 132px 20px 75px;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

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

  .hero-meta {
    gap: 15px;
    flex-wrap: wrap;
  }

  .hero-meta span + span::before {
    display: none;
  }

  .hero-visual {
    width: 112%;
    margin-left: 2%;
  }

  .shot-card-b {
    display: none;
  }

  .proof {
    width: calc(100% - 32px);
    grid-template-columns: 1fr 1fr;
  }

  .proof div {
    min-height: 110px;
    padding: 20px;
  }

  .proof div:nth-child(3) {
    border-left: 0;
  }

  .proof div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section {
    width: calc(100% - 32px);
    padding: 90px 0;
  }

  .intro-grid,
  .section-heading,
  .demo-copy,
  .pipeline {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .feature,
  .feature-wide {
    min-height: 350px;
    grid-column: auto;
  }

  .pipeline-copy {
    position: static;
  }

  .pipeline-stages li {
    min-height: 130px;
    grid-template-columns: 42px 1fr;
  }

  .pipeline-stages b {
    display: none;
  }

  .demo-section {
    padding-bottom: 80px;
  }

  .demo-copy {
    padding-bottom: 38px;
  }

  .demo-shell {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .demo-toolbar > div span {
    display: none;
  }

  .demo-stage {
    min-height: 500px;
    aspect-ratio: auto;
  }

  .opensource {
    width: calc(100% - 24px);
  }

  .opensource-card,
  .provenance {
    min-height: 430px;
  }

  footer {
    width: calc(100% - 32px);
    padding: 30px 0;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  footer > div {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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

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