:root {
  --bg: #090b10;
  --bg-soft: #0e1118;
  --surface: #121620;
  --surface-2: #171c27;
  --text: #f3f1eb;
  --muted: #9ca3b2;
  --line: rgba(255, 255, 255, 0.1);
  --green: #b8f34a;
  --green-dark: #7fac2c;
  --blue: #72a5ff;
  --pink: #ff7bb8;
  --mono: "DM Mono", monospace;
  --sans: "Inter", Arial, sans-serif;
  --display: "Inter Tight", "Inter", Arial, sans-serif;
  --max: 1240px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-synthesis: none;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pointer-glow,
.cursor-ring,
.cursor-dot {
  display: none;
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--green);
  color: #0a0c0f;
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.progress {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--green);
}

.grid-bg {
  position: absolute;
  z-index: -2;
  inset: 0 0 auto;
  height: 980px;
  opacity: 0.28;
  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: linear-gradient(to bottom, #000 0%, transparent 90%);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.ambient-one {
  top: -12rem;
  right: -14rem;
  background: rgba(184, 243, 74, 0.1);
}

.ambient-two {
  top: 30rem;
  left: -24rem;
  background: rgba(86, 113, 255, 0.11);
}

.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 0.25s, padding 0.25s, border-color 0.25s;
}

.nav.scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  border-color: var(--line);
  background: rgba(9, 11, 16, 0.82);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(184, 243, 74, 0.35);
  border-radius: 11px;
  background: rgba(184, 243, 74, 0.08);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: -0.08em;
}

.nav-logo {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.nav-logo > span {
  color: var(--green);
}

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

.nav-links a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text);
}

.nav-cta:hover {
  border-color: var(--green);
  background: var(--green);
  color: #0a0c0f !important;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
}

.burger span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s;
}

.hero {
  width: min(100% - 48px, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 145px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(184, 243, 74, 0.09);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(184, 243, 74, 0); }
}

.kicker,
.eyebrow,
.project-label {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker {
  margin-bottom: 17px;
}

.kicker span {
  margin: 0 8px;
  color: #586170;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.6vw, 5.65rem);
  font-weight: 700;
  line-height: 0.98;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line > span {
  display: block;
  animation: title-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.title-line > span.settled {
  animation: none;
  transform: none;
}

.title-line:nth-child(2) > span {
  animation-delay: 0.08s;
}

.title-line:nth-child(3) > span {
  animation-delay: 0.16s;
}

@keyframes title-in {
  from { transform: translateY(110%); }
}

h1 em,
h2 em {
  color: var(--green);
  font-style: normal;
}

.hero-sub {
  max-width: 630px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.btn span,
.email-link span {
  font-size: 1.1em;
  transition: transform 0.2s;
}

.btn:hover span,
.email-link:hover span {
  transform: translate(3px, -3px);
}

.btn-primary {
  background: var(--green);
  color: #0a0c0f;
  box-shadow: 0 10px 35px rgba(184, 243, 74, 0.12);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(184, 243, 74, 0.2);
}

.btn-light {
  background: var(--text);
  color: #0a0c0f;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  text-underline-offset: 5px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 44px;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c4c9d2;
  font-size: 0.75rem;
}

.hero-facts span {
  color: #596170;
  font-family: var(--mono);
  font-size: 0.65rem;
}

.hero-code {
  position: relative;
  padding: 50px 12px;
}

.code-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(13, 17, 24, 0.94);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.window-bar {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #77808f;
  font-family: var(--mono);
  font-size: 0.63rem;
}

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

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3c424d;
}

.window-dots i:first-child {
  background: #ff6e68;
}

.window-dots i:nth-child(2) {
  background: #ffc453;
}

.window-dots i:last-child {
  background: #63ce6b;
}

.window-status {
  justify-self: end;
  color: var(--green);
  font-size: 0.56rem;
}

.code-window pre {
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: 35px clamp(22px, 4vw, 44px);
  overflow: hidden;
  font-family: var(--mono);
  font-size: clamp(0.75rem, 1.25vw, 0.9rem);
  line-height: 1.9;
  tab-size: 2;
}

.code-muted { color: #3e4653; user-select: none; }
.code-pink { color: var(--pink); }
.code-green { color: var(--green); }
.code-blue { color: var(--blue); }

.caret {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  margin-left: 4px;
  vertical-align: -0.2em;
  background: var(--green);
  animation: blink 0.9s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.code-footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: #68717f;
  font-family: var(--mono);
  font-size: 0.57rem;
}

.code-footer span:first-child {
  color: #aab1bc;
}

.code-footer i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
}

.floating-card {
  position: absolute;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(22, 27, 38, 0.88);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.floating-card span {
  display: block;
  color: #697282;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.floating-card strong {
  display: block;
  margin-top: 3px;
  font-size: 0.74rem;
}

.floating-performance {
  right: 0;
  bottom: 18px;
}

.floating-performance strong {
  color: var(--green);
}

.floating-responsive {
  top: 17px;
  left: 0;
}

.tech-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0c0f15;
}

.tech-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 17px 0;
  color: #7f8794;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  animation: marquee 28s linear infinite;
}

.tech-track i {
  color: var(--green);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 60px;
}

.section-heading .eyebrow {
  display: block;
  margin-bottom: 18px;
}

.section-heading h2,
.process-intro h2,
.pilot-card h2,
.contact h2 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 650;
  line-height: 1.02;
}

.section-heading > p,
.process-intro > p,
.contact-side > p {
  color: var(--muted);
  font-size: 0.96rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.project {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s;
}

.project:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 243, 74, 0.35);
}

.project-large {
  grid-column: 1 / -1;
}

.project-visual {
  position: relative;
  min-height: 370px;
  overflow: hidden;
}

.project-large .project-visual {
  min-height: 510px;
}

.project-index {
  position: absolute;
  right: 20px;
  bottom: 15px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.project-info {
  display: grid;
  grid-template-columns: minmax(200px, 0.8fr) 1.2fr;
  gap: 20px 40px;
  padding: 28px;
}

.project:not(.project-large) .project-info {
  grid-template-columns: 1fr;
}

.project-info h3 {
  margin-top: 7px;
  font-size: 1.55rem;
}

.project-info p {
  color: var(--muted);
  font-size: 0.88rem;
}

.tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: #858e9c;
  font-family: var(--mono);
  font-size: 0.57rem;
}

.honesty-note {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px dashed rgba(184, 243, 74, 0.3);
  border-radius: 16px;
  background: rgba(184, 243, 74, 0.035);
}

.note-icon {
  flex: 0 0 auto;
  color: var(--green);
  font-family: var(--mono);
  font-size: 1.2rem;
}

.honesty-note strong {
  font-size: 0.88rem;
}

.honesty-note p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Distinct, industry-based prototype visuals */
.visual-kernwerk {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 60px);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #b9512d;
  background-size: 42px 42px;
}

.craft-browser {
  width: min(92%, 940px);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 12px;
  background: #111318;
  color: #f1eee7;
  box-shadow: 22px 28px 0 rgba(62,20,9,.25), 0 35px 75px rgba(0,0,0,.32);
  transform: rotate(-1.3deg);
}

.craft-nav {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,.11);
  font-size: .56rem;
}

.craft-nav strong {
  font-family: var(--display);
  font-size: .82rem;
  letter-spacing: -.04em;
}

.craft-nav strong span,
.craft-copy small {
  color: #f17942;
}

.craft-nav > div {
  display: flex;
  gap: 25px;
  color: #9b9da3;
}

.craft-nav > b {
  justify-self: end;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  font-weight: 500;
}

.craft-content {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 20px;
  padding: 35px clamp(25px, 5vw, 60px);
}

.craft-copy small {
  font-family: var(--mono);
  font-size: .5rem;
  letter-spacing: .08em;
}

.craft-copy h4 {
  margin: 15px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.4vw, 4.9rem);
  font-weight: 650;
  letter-spacing: -.075em;
  line-height: .84;
}

.craft-copy p {
  max-width: 310px;
  color: #a8a9ad;
  font-size: .65rem;
}

.craft-copy i {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid #f17942;
  font-size: .55rem;
  font-style: normal;
}

.craft-object {
  position: relative;
  min-height: 235px;
  perspective: 700px;
}

.craft-object > span {
  position: absolute;
  top: 15%;
  left: 50%;
  width: 24%;
  height: 72%;
  border: 1px solid rgba(255,255,255,.35);
  background: linear-gradient(90deg, #292d34, #737780 45%, #202329);
  box-shadow: 15px 18px 30px rgba(0,0,0,.3);
  transform: translateX(-50%) rotateX(57deg) rotateZ(35deg);
}

.craft-object > span:nth-child(2) {
  width: 16%;
  transform: translateX(-95%) rotateX(57deg) rotateZ(-28deg);
}

.craft-object > span:nth-child(3) {
  width: 11%;
  height: 60%;
  transform: translate(30%, 18%) rotateX(57deg) rotateZ(68deg);
}

.craft-object > b {
  position: absolute;
  right: 4px;
  bottom: 0;
  color: #f17942;
  font-family: var(--mono);
  font-size: .53rem;
  font-weight: 400;
  line-height: 1.3;
}

.craft-footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 22px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #6f737b;
  font-family: var(--mono);
  font-size: .46rem;
}

.visual-nachtstrom {
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,70,217,.25), transparent 30%),
    #211444;
}

.event-poster {
  position: relative;
  width: min(78%, 380px);
  aspect-ratio: .78;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  background: #d8ff36;
  color: #171128;
  box-shadow: 17px 20px 0 #ff5fc8, 0 30px 60px rgba(0,0,0,.35);
  transform: rotate(3deg);
}

.event-top,
.event-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .5rem;
  line-height: 1.35;
}

.event-top b,
.event-bottom b {
  font-weight: 500;
  text-align: right;
}

.event-poster > strong {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(2.8rem, 7.3vw, 5.9rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .72;
}

.event-orbit {
  position: absolute;
  z-index: 1;
  top: 19%;
  right: -16%;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid #171128;
  border-radius: 50%;
}

.event-orbit i {
  position: absolute;
  inset: 17%;
  border: 1px solid #171128;
  border-radius: 50%;
}

.event-orbit i:nth-child(2) {
  inset: 34%;
}

.event-orbit i:nth-child(3) {
  inset: 47%;
  background: #171128;
}

.visual-klarraum {
  display: grid;
  place-items: center;
  padding: 34px;
  background: #afc9b9;
}

.health-browser {
  position: relative;
  width: min(86%, 470px);
  min-height: 305px;
  padding: 21px;
  overflow: hidden;
  border-radius: 10px;
  background: #f2eee5;
  color: #17392e;
  box-shadow: 14px 17px 0 #557f70, 0 25px 55px rgba(28,66,54,.25);
  transform: rotate(-2deg);
}

.health-browser header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23,57,46,.18);
}

.health-browser header strong {
  font-family: var(--display);
  font-size: .9rem;
  letter-spacing: -.05em;
}

.health-browser header strong span {
  color: #f15c39;
}

.health-browser header i {
  padding: 7px 10px;
  border-radius: 100px;
  background: #17392e;
  color: #fff;
  font-size: .48rem;
  font-style: normal;
}

.health-main {
  position: relative;
  z-index: 2;
  width: 76%;
  padding-top: 31px;
}

.health-main small {
  color: #f15c39;
  font-family: var(--mono);
  font-size: .45rem;
  letter-spacing: .08em;
}

.health-main h4 {
  margin: 12px 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .96;
}

.health-main p {
  max-width: 270px;
  color: rgba(23,57,46,.66);
  font-size: .56rem;
}

.health-main b {
  display: inline-block;
  margin-top: 19px;
  font-size: .52rem;
}

.health-card {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  width: 145px;
  padding: 13px;
  border-radius: 8px;
  background: #17392e;
  color: #f2eee5;
}

.health-card span,
.health-card i {
  display: block;
  color: #9db9ae;
  font-family: var(--mono);
  font-size: .4rem;
  font-style: normal;
}

.health-card strong {
  display: block;
  margin: 8px 0 11px;
  font-family: var(--display);
  font-size: 1.1rem;
}

.health-shape {
  position: absolute;
  right: -52px;
  top: 45px;
  width: 180px;
  height: 180px;
  border: 28px solid #f15c39;
  border-radius: 50% 35% 55% 42%;
  opacity: .8;
  transform: rotate(25deg);
}

.expertise-section {
  border-top: 1px solid var(--line);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.expertise-card {
  position: relative;
  min-height: 340px;
  padding: clamp(28px, 4vw, 45px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.expertise-no {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #515967;
  font-family: var(--mono);
  font-size: 0.62rem;
}

.expertise-icon {
  height: 88px;
  display: flex;
  align-items: end;
  gap: 8px;
  color: var(--green);
}

.device {
  display: block;
  border: 1px solid currentColor;
  border-radius: 3px;
  background: rgba(184, 243, 74, 0.06);
}

.device.desktop { width: 76px; height: 50px; }
.device.tablet { width: 38px; height: 50px; }
.device.mobile { width: 22px; height: 40px; }

.speed-icon {
  position: relative;
  width: 85px;
  height: 70px;
  border: 1px solid var(--green);
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
}

.speed-icon span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 47px;
  transform: rotate(45deg);
  transform-origin: bottom;
  background: var(--green);
}

.speed-icon i {
  position: absolute;
  bottom: -3px;
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.brackets-icon {
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 2.7rem;
}

.brackets-icon i {
  color: var(--text);
  font-size: 1.8rem;
}

.accessibility-icon {
  align-items: center;
}

.accessibility-icon span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 1.15rem;
}

.accessibility-icon i {
  width: 8px;
  height: 35px;
  border-radius: 8px;
  background: #3c4451;
}

.accessibility-icon i:nth-of-type(2) { height: 50px; background: #687384; }
.accessibility-icon i:nth-of-type(3) { height: 67px; background: var(--green); }

.expertise-card h3 {
  margin: 25px 0 12px;
  font-size: 1.35rem;
}

.expertise-card p {
  max-width: 470px;
  color: var(--muted);
  font-size: 0.88rem;
}

.stack {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 25px;
  align-items: start;
  padding: 32px 0 0;
}

.stack > span {
  padding-top: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.stack > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.stack b {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 400;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(60px, 9vw, 130px);
  border-top: 1px solid var(--line);
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro .eyebrow {
  display: block;
  margin-bottom: 20px;
}

.process-intro h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.process-intro > p {
  max-width: 440px;
  margin-top: 26px;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(184,243,74,.08), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.025), transparent),
    var(--surface);
  transition: border-color .3s, transform .3s, background .3s;
}

.process-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transition: width .45s cubic-bezier(.16,1,.3,1);
}

.process-list li:hover {
  border-color: rgba(184,243,74,.35);
  transform: translateY(-4px);
}

.process-list li:hover::before {
  width: 100%;
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-head > span {
  color: var(--green);
  font-family: var(--mono);
  font-size: .65rem;
}

.step-head > b {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: #737c89;
  font-family: var(--mono);
  font-size: .5rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.step-glyph {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0 24px;
  border: 1px solid rgba(184,243,74,.22);
  border-radius: 18px;
  background: rgba(184,243,74,.045);
  color: var(--green);
}

.glyph-dialog {
  position: relative;
}

.glyph-dialog i {
  position: absolute;
  width: 30px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 7px;
}

.glyph-dialog i:first-child {
  transform: translate(-7px, -6px);
}

.glyph-dialog i:last-child {
  transform: translate(8px, 8px);
  background: var(--surface);
}

.glyph-dialog i::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 7px;
  width: 7px;
  height: 7px;
  border-left: 1px solid currentColor;
  transform: skewY(-38deg);
}

.glyph-structure {
  display: grid;
  grid-template-columns: repeat(2, 17px);
  grid-template-rows: repeat(2, 17px);
  gap: 4px;
}

.glyph-structure i {
  border: 1px solid currentColor;
  border-radius: 3px;
}

.glyph-structure i:first-child {
  background: var(--green);
  box-shadow: 0 0 16px rgba(184,243,74,.22);
}

.glyph-code {
  gap: 7px;
  font-family: var(--mono);
  font-size: 1.55rem;
}

.glyph-code i {
  color: var(--text);
  font-size: 1rem;
  font-style: normal;
}

.glyph-release i {
  position: relative;
  width: 35px;
  height: 35px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.glyph-release i::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 10px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.step-copy {
  flex: 1;
}

.process-list h3 {
  font-size: 1.32rem;
}

.process-list p {
  margin-top: 9px;
  color: var(--muted);
  font-size: .8rem;
}

.step-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #5f6875;
  font-family: var(--mono);
  font-size: .48rem;
  letter-spacing: .04em;
  font-weight: 400;
  text-transform: uppercase;
}

.step-result strong {
  color: #b7bec8;
  font-size: .5rem;
  font-weight: 500;
}

.pilot-section {
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
}

.pilot-card {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 75px);
  border-radius: 30px;
  background: var(--green);
  color: #0a0c0f;
}

.pilot-card .eyebrow {
  display: block;
  margin-bottom: 20px;
  color: #40551d;
}

.pilot-card .pilot-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10,12,15,.18);
  background: #f7f5ee;
  color: #0a0c0f;
  box-shadow: 0 10px 0 rgba(64,85,29,.16);
  transition: color .25s, background .25s, border-color .25s, box-shadow .25s, transform .25s;
}

.pilot-card .pilot-button:hover,
.pilot-card .pilot-button:focus-visible {
  border-color: #0a0c0f;
  background: #0a0c0f;
  color: var(--green);
  box-shadow: 0 14px 0 rgba(64,85,29,.28), 0 22px 45px rgba(10,12,15,.18);
  transform: translateY(-4px);
}

.pilot-card .pilot-button:hover span,
.pilot-card .pilot-button:focus-visible span {
  transform: translate(4px, -4px);
}

.pilot-card h2 {
  font-size: clamp(2.2rem, 4.3vw, 4.2rem);
}

.pilot-card h2 em {
  color: #4f6d1b;
}

.pilot-card p {
  max-width: 650px;
  margin: 25px 0 34px;
  color: rgba(10, 12, 15, 0.7);
  font-size: 0.92rem;
}

.pilot-terminal {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background: #10131a;
  color: #dbe0e8;
  box-shadow: 20px 25px 0 rgba(68, 92, 25, 0.25);
  font-family: var(--mono);
  font-size: 0.75rem;
  transform: rotate(3deg);
}

.pilot-terminal > div {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.pilot-terminal > div i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48505d;
}

.pilot-terminal p {
  margin: 0 0 6px;
  color: #dbe0e8;
  font-size: inherit;
}

.pilot-terminal p span {
  color: var(--green);
}

.pilot-terminal .terminal-answer {
  margin: 0 0 19px 16px;
  color: #737e8e;
}

.pilot-terminal .terminal-active {
  color: var(--green);
}

.contact {
  padding-top: clamp(110px, 12vw, 180px);
  padding-bottom: clamp(110px, 12vw, 180px);
}

.contact > .eyebrow {
  display: block;
  margin-bottom: 35px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
}

.contact-side {
  padding-bottom: 9px;
}

.email-link {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 112px;
  margin: 30px 0 14px;
  padding: 22px 22px 22px 25px;
  border: 1px solid rgba(184,243,74,.26);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(184,243,74,.13), transparent 42%),
    var(--surface);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
  transition: border-color .3s, transform .3s, background .3s, box-shadow .3s;
}

.email-link::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(.26);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}

.email-link:hover,
.email-link:focus-visible {
  border-color: rgba(184,243,74,.62);
  background:
    radial-gradient(circle at 100% 0, rgba(184,243,74,.2), transparent 48%),
    #151a21;
  box-shadow: 0 25px 65px rgba(0,0,0,.25), 0 0 0 1px rgba(184,243,74,.08);
  transform: translateY(-4px);
}

.email-link:hover::before,
.email-link:focus-visible::before {
  transform: scaleX(1);
}

.email-copy {
  min-width: 0;
}

.email-copy small {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-family: var(--mono);
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.email-copy strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -.035em;
}

.email-arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #0a0c0f;
  font-size: 1.2rem;
  transition: color .25s, background .25s, transform .25s;
}

.email-link:hover .email-arrow,
.email-link:focus-visible .email-arrow {
  background: var(--text);
  transform: rotate(45deg);
}

.email-link:hover .email-copy,
.email-link:focus-visible .email-copy {
  transform: none;
}

.contact-side small {
  color: #646d7a;
  font-size: 0.66rem;
}

.footer {
  width: min(100% - 48px, var(--max));
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: start;
  margin: 0 auto;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

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

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}

.copyright {
  grid-column: 3;
  color: #59616e;
  font-family: var(--mono);
  font-size: 0.58rem;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Live responsive laboratory */
.lab-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 10%, rgba(114, 165, 255, 0.1), transparent 28rem),
    #0b0e14;
}

.lab-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}

.lab-inner {
  position: relative;
}

.responsive-lab {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: #0c1017;
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
}

.lab-topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}

.lab-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lab-title strong {
  font-size: .82rem;
  letter-spacing: -.02em;
}

.lab-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(184,243,74,.25);
  border-radius: 100px;
  color: var(--green);
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .08em;
}

.lab-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.lab-presets {
  display: flex;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #090c11;
}

.lab-presets button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: #747d8b;
  font-family: var(--mono);
  font-size: .58rem;
  transition: color .2s, background .2s;
}

.lab-presets button.active {
  background: var(--green);
  color: #0a0c0f;
}

.lab-workspace {
  min-height: 690px;
  display: grid;
  grid-template-columns: 255px 1fr;
}

.lab-controls {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  background: #0d1118;
}

.lab-control-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #77808d;
  font-family: var(--mono);
  font-size: .61rem;
  text-transform: uppercase;
}

.lab-control-head output {
  color: var(--green);
}

#viewportRange {
  width: 100%;
  height: 3px;
  appearance: none;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green) 0 51%, #2b323d 51%);
  outline: none;
}

#viewportRange::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
  appearance: none;
  border: 4px solid #0d1118;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 0 18px rgba(184,243,74,.35);
}

#viewportRange::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 4px solid #0d1118;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.lab-readout {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.lab-readout div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 12px;
  background: #10151e;
  font-family: var(--mono);
  font-size: .56rem;
}

.lab-readout span {
  color: #68717f;
}

.lab-readout strong {
  color: #d8dce3;
  font-weight: 500;
}

.lab-switches {
  display: grid;
  gap: 8px;
}

.lab-switches button {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #10151e;
  color: #b3bac5;
  font-family: var(--mono);
  font-size: .58rem;
}

.lab-switches button span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.lab-switches button i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.lab-switches button[aria-pressed="false"] i {
  background: #4b5360;
}

.lab-switches button b {
  color: var(--green);
  font-weight: 500;
}

.lab-tech {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 34px;
}

.lab-tech span {
  position: relative;
  padding-left: 14px;
  color: #626b78;
  font-family: var(--mono);
  font-size: .53rem;
}

.lab-tech span::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--green);
}

.preview-stage {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 34px 25px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.035) 50%, transparent 50.1%),
    linear-gradient(#111722, #0b0f16);
}

.preview-ruler {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
  color: #4e5764;
  font-family: var(--mono);
  font-size: .48rem;
}

.preview-frame {
  --preview-percent: 68%;
  --demo-bg: #11151e;
  --demo-text: #f3f1e9;
  --demo-line: rgba(255,255,255,.14);
  --demo-muted: rgba(243,241,233,.62);
  --demo-accent: #b8f34a;
  width: var(--preview-percent);
  min-width: 235px;
  max-width: 100%;
  container: demo / inline-size;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: var(--demo-bg);
  color: var(--demo-text);
  box-shadow: 0 28px 70px rgba(0,0,0,.4);
  transition: width .25s cubic-bezier(.16,1,.3,1), background .25s, color .25s;
}

.preview-frame.light {
  --demo-bg: #f2efe5;
  --demo-text: #101216;
  --demo-line: rgba(0,0,0,.13);
  --demo-muted: rgba(16,18,22,.62);
  --demo-accent: #6857df;
}

.demo-site {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: clamp(15px, 3.5cqw, 34px);
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 20%, rgba(109,136,255,.16), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.035), transparent),
    var(--demo-bg);
}

.demo-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--demo-line);
}

.demo-nav a {
  color: inherit;
  font-family: var(--mono);
  font-size: clamp(.48rem, 1.6cqw, .68rem);
  font-weight: 600;
  text-decoration: none;
}

.demo-nav a span {
  color: var(--demo-accent);
}

.demo-nav nav {
  display: flex;
  gap: clamp(12px, 3cqw, 28px);
  font-size: clamp(.42rem, 1.35cqw, .6rem);
}

.demo-nav button {
  justify-self: end;
  padding: 8px 12px;
  border: 1px solid var(--demo-line);
  border-radius: 100px;
  background: transparent;
  color: inherit;
  font-size: clamp(.42rem, 1.3cqw, .58rem);
}

.demo-menu {
  display: none;
}

.demo-hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 20px;
  align-items: center;
  padding: 38px 0 28px;
}

.demo-copy > span {
  color: var(--demo-accent);
  font-family: var(--mono);
  font-size: clamp(.4rem, 1.25cqw, .56rem);
  letter-spacing: .08em;
}

.demo-copy h3 {
  margin: 14px 0;
  font-size: clamp(1.3rem, 5.1cqw, 3.25rem);
  font-weight: 650;
  line-height: .94;
}

.demo-copy p {
  max-width: 330px;
  color: var(--demo-muted);
  font-size: clamp(.52rem, 1.55cqw, .72rem);
  line-height: 1.55;
}

.demo-copy b {
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: clamp(.48rem, 1.45cqw, .64rem);
}

.demo-copy b i {
  font-style: normal;
}

.demo-art {
  position: relative;
  min-height: 230px;
  display: grid;
  place-items: center;
}

.demo-sphere {
  position: relative;
  z-index: 2;
  width: min(19cqw, 145px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #f4ffae 0 7%, transparent 8%),
    radial-gradient(circle at 38% 35%, #96cbff, #6f52db 45%, #15162b 72%);
  box-shadow: inset -20px -18px 30px rgba(0,0,0,.3), 0 25px 50px rgba(73,55,176,.25);
  animation: demo-float 4s ease-in-out infinite;
}

.demo-orbit {
  position: absolute;
  width: min(30cqw, 220px);
  aspect-ratio: 1;
  border: 1px solid var(--demo-line);
  border-radius: 50%;
}

.orbit-one {
  transform: rotateX(65deg);
}

.orbit-two {
  transform: rotateY(62deg);
}

.demo-art > span {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: var(--mono);
  font-size: clamp(.38rem, 1.1cqw, .5rem);
  line-height: 1.25;
  text-align: right;
}

@keyframes demo-float {
  50% { transform: translateY(-9px) rotate(4deg); }
}

.preview-frame.motion-off *,
.preview-frame.motion-off *::before,
.preview-frame.motion-off *::after {
  animation-play-state: paused !important;
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--demo-line);
}

.demo-metrics div {
  display: flex;
  gap: 8px;
  padding: 14px 0;
  font-size: clamp(.42rem, 1.25cqw, .56rem);
}

.demo-metrics div + div {
  padding-left: 12px;
  border-left: 1px solid var(--demo-line);
}

.demo-metrics strong {
  color: var(--demo-accent);
  font-family: var(--mono);
}

.lab-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: #626b78;
  font-family: var(--mono);
  font-size: .52rem;
}

.lab-caption span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.preview-frame[data-mode="mobile"] .demo-nav {
  grid-template-columns: 1fr auto;
}

.preview-frame[data-mode="mobile"] .demo-nav nav,
.preview-frame[data-mode="mobile"] .demo-nav button {
  display: none;
}

.preview-frame[data-mode="mobile"] .demo-menu {
  width: 20px;
  height: 12px;
  display: block;
  justify-self: end;
  border-block: 1px solid currentColor;
}

.preview-frame[data-mode="mobile"] .demo-hero {
  grid-template-columns: 1fr;
  align-content: center;
}

.preview-frame[data-mode="mobile"] .demo-art {
  min-height: 150px;
}

.preview-frame[data-mode="mobile"] .demo-sphere {
  width: 88px;
}

.preview-frame[data-mode="mobile"] .demo-orbit {
  width: 135px;
}

.preview-frame[data-mode="mobile"] .demo-metrics {
  grid-template-columns: 1fr;
}

.preview-frame[data-mode="mobile"] .demo-metrics div:nth-child(n+3) {
  display: none;
}

.preview-frame[data-mode="mobile"] .demo-metrics div + div {
  padding-left: 0;
  border-left: 0;
}

.preview-frame[data-mode="tablet"] .demo-nav nav {
  display: none;
}

.preview-frame[data-mode="tablet"] .demo-nav {
  grid-template-columns: 1fr auto;
}

/* Project formats from the original offer structure, rebuilt with proof-first copy */
.formats-section {
  border-top: 1px solid var(--line);
}

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

.format-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.025), transparent), var(--surface);
  transform-style: preserve-3d;
  transition: border-color .3s, transform .3s;
}

.format-card:hover {
  border-color: rgba(184,243,74,.38);
}

.format-featured {
  border-color: rgba(184,243,74,.45);
  background:
    radial-gradient(circle at 80% 0, rgba(184,243,74,.13), transparent 45%),
    var(--surface);
}

.format-badge {
  position: absolute;
  top: 0;
  right: 25px;
  padding: 7px 11px;
  border-radius: 0 0 8px 8px;
  background: var(--green);
  color: #0a0c0f;
  font-family: var(--mono);
  font-size: .5rem;
}

.format-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #515966;
  font-family: var(--mono);
  font-size: .6rem;
}

.format-featured .format-number {
  top: 46px;
}

.format-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid rgba(184,243,74,.28);
  border-radius: 18px;
  background: rgba(184,243,74,.05);
}

.format-icon > i {
  width: 35px;
  height: 42px;
  border: 1px solid var(--green);
  border-radius: 4px;
  box-shadow: 8px 7px 0 -3px var(--surface), 8px 7px 0 -2px var(--green);
}

.format-system {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.format-system > i {
  width: 13px;
  height: 30px;
  box-shadow: none;
}

.format-system > i:nth-child(2) {
  height: 42px;
}

.format-custom > i {
  width: auto;
  height: auto;
  border: 0;
  box-shadow: none;
  color: var(--green);
  font-family: var(--mono);
  font-style: normal;
  font-size: 1rem;
}

.format-label {
  color: var(--green);
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .08em;
}

.format-card h3 {
  margin: 8px 0 13px;
  font-size: 1.6rem;
}

.format-card > p {
  min-height: 76px;
  color: var(--muted);
  font-size: .85rem;
}

.format-card ul {
  flex: 1;
  margin: 22px 0 30px;
  list-style: none;
}

.format-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #a8afba;
  font-size: .76rem;
}

.format-card li::before {
  content: "↳";
  margin-right: 9px;
  color: var(--green);
  font-family: var(--mono);
}

.format-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.format-card > a span {
  color: var(--green);
}

/* FAQ / clarity */
.faq-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(60px, 9vw, 130px);
  border-top: 1px solid var(--line);
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro .eyebrow {
  display: block;
  margin-bottom: 20px;
}

.faq-intro h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 650;
  line-height: 1.02;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  width: 100%;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.faq-item > button > span {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(.95rem, 1.6vw, 1.18rem);
  font-weight: 650;
  letter-spacing: -.025em;
}

.faq-item > button i {
  color: var(--green);
  font-family: var(--mono);
  font-size: .6rem;
  font-style: normal;
  font-weight: 400;
}

.faq-item > button b {
  flex: 0 0 auto;
  color: var(--green);
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform .25s;
}

.faq-item.open > button b {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.faq-answer p {
  max-width: 610px;
  min-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: .86rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding: 0 0 28px 40px;
}

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

  input[type="range"] {
    cursor: ew-resize;
  }

  .pointer-glow {
    position: fixed;
    z-index: 0;
    inset: 0;
    display: block;
    background: radial-gradient(420px circle at var(--pointer-x, -500px) var(--pointer-y, -500px), rgba(184,243,74,.055), transparent 68%);
  }

  .cursor-ring,
  .cursor-dot {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.42);
    transition: width .2s, height .2s, border-color .2s, background .2s;
  }

  .cursor-ring span {
    opacity: 0;
    color: #0a0c0f;
    font-family: var(--mono);
    font-size: .5rem;
    font-weight: 500;
    transition: opacity .15s;
  }

  .cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--green);
  }

  .cursor-ring.hovering {
    width: 58px;
    height: 58px;
    border-color: rgba(184,243,74,.35);
    background: rgba(184,243,74,.1);
  }

  .cursor-ring.labeled {
    width: 76px;
    height: 76px;
    border-color: var(--green);
    background: var(--green);
  }

  .cursor-ring.labeled span {
    opacity: 1;
  }
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 155px;
  }

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

  .hero-code {
    width: min(100%, 690px);
    justify-self: center;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .process-section {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .pilot-card {
    gap: 40px;
  }

  .lab-workspace {
    grid-template-columns: 220px 1fr;
  }

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

  .format-card:last-child {
    grid-column: 1 / -1;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 80px;
  }

  .nav {
    padding: 15px 18px;
  }

  .nav.scrolled {
    padding: 11px 18px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  .nav-links {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 24px 40px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    background: rgba(9, 11, 16, 0.97);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }

  .nav-links.open {
    z-index: 99;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .nav.menu-active {
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }

  .nav.menu-active .logo {
    opacity: 0;
  }

  .nav-links a {
    padding: 20px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: clamp(1.5rem, 8vw, 2.25rem);
    letter-spacing: -0.04em;
  }

  .nav-links .nav-cta {
    min-height: 58px;
    justify-content: center;
    margin-top: 28px;
    padding: 0 20px;
    border-color: var(--green);
    background: var(--green);
    color: #0a0c0f;
    font-size: 1rem;
    letter-spacing: 0;
  }

  .burger {
    position: relative;
    z-index: 101;
    display: grid;
  }

  .burger.open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .burger.open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero,
  .section,
  .footer {
    width: min(100% - 36px, var(--max));
  }

  .hero {
    min-height: auto;
    padding: 125px 0 75px;
    gap: 45px;
  }

  .status {
    max-width: 100%;
    margin-bottom: 25px;
    white-space: normal;
  }

  h1 {
    font-size: clamp(2.85rem, 13.5vw, 4.5rem);
  }

  .hero-sub {
    margin-top: 23px;
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .btn {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-facts {
    display: grid;
    gap: 9px;
    margin-top: 32px;
  }

  .hero-code {
    width: 100%;
    padding: 26px 0;
  }

  .code-window {
    transform: none;
  }

  .code-window pre {
    min-height: 280px;
    padding: 25px 16px;
    font-size: clamp(0.61rem, 3vw, 0.76rem);
    line-height: 1.85;
  }

  .floating-card {
    position: relative;
    display: inline-block;
    margin-top: 10px;
  }

  .floating-performance {
    right: auto;
    bottom: auto;
  }

  .floating-responsive {
    top: auto;
    left: auto;
    float: right;
  }

  .tech-track {
    animation-duration: 20s;
  }

  .lab-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .lab-presets {
    width: 100%;
  }

  .lab-presets button {
    flex: 1;
    padding-inline: 8px;
  }

  .lab-workspace {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .lab-controls {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .lab-readout div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .preview-stage {
    min-height: 570px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 28px 14px 20px;
    overflow-x: auto;
  }

  .preview-ruler {
    min-width: 100%;
  }

  .preview-frame {
    flex: 0 0 auto;
  }

  .preview-frame[data-mode="mobile"] {
    width: 100% !important;
    min-width: 245px;
  }

  .preview-frame[data-mode="tablet"] {
    width: 430px !important;
    min-width: 430px;
  }

  .preview-frame[data-mode="desktop"] {
    width: 680px !important;
    min-width: 680px;
  }

  .lab-caption {
    min-width: 260px;
    white-space: normal;
  }

  .section {
    padding: 90px 0;
  }

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

  .section-heading h2,
  .process-intro h2,
  .pilot-card h2,
  .contact h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .section-heading > p,
  .process-intro > p {
    font-size: 0.88rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-large {
    grid-column: auto;
  }

  .project-visual,
  .project-large .project-visual {
    min-height: 335px;
  }

  .project-info {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .visual-kernwerk,
  .visual-nachtstrom,
  .visual-klarraum {
    padding: 24px 18px;
  }

  .craft-browser {
    width: 100%;
    min-height: 350px;
    box-shadow: 10px 13px 0 rgba(62,20,9,.25);
  }

  .craft-nav {
    grid-template-columns: 1fr;
    padding-inline: 17px;
  }

  .craft-nav > div,
  .craft-nav > b {
    display: none;
  }

  .craft-content {
    grid-template-columns: 1fr;
    padding: 25px 20px;
  }

  .craft-copy {
    position: relative;
    z-index: 2;
  }

  .craft-copy h4 {
    font-size: 2.85rem;
  }

  .craft-object {
    position: absolute;
    z-index: 1;
    right: -18px;
    bottom: 5px;
    width: 47%;
    min-height: 185px;
    opacity: .62;
  }

  .craft-footer span:last-child {
    display: none;
  }

  .event-poster {
    width: min(78%, 255px);
    padding: 18px;
    box-shadow: 11px 13px 0 #ff5fc8;
  }

  .event-poster > strong {
    font-size: 3.5rem;
  }

  .health-browser {
    width: 100%;
    min-height: 330px;
    padding: 17px;
    box-shadow: 9px 11px 0 #557f70;
  }

  .health-main {
    width: 94%;
    padding-top: 27px;
  }

  .health-main h4 {
    font-size: 2rem;
  }

  .health-card {
    right: 13px;
    bottom: 13px;
    width: 132px;
  }

  .tags {
    grid-column: auto;
  }

  .honesty-note {
    padding: 20px;
  }

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

  .expertise-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .stack {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .format-card,
  .format-card:last-child {
    min-height: auto;
    grid-column: auto;
  }

  .format-card > p {
    min-height: 0;
  }

  .process-section {
    gap: 40px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 285px;
  }

  .process-list .step-head > b {
    display: block;
  }

  .pilot-section {
    padding: 0 18px;
  }

  .pilot-card {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 38px 24px 50px;
    border-radius: 23px;
  }

  .pilot-terminal {
    box-shadow: 10px 12px 0 rgba(68, 92, 25, 0.25);
    transform: rotate(1.5deg);
  }

  .faq-section {
    gap: 38px;
  }

  .faq-item > button {
    min-height: 84px;
  }

  .faq-item > button > span {
    align-items: flex-start;
    gap: 12px;
  }

  .faq-item.open .faq-answer p {
    padding-left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .email-link {
    min-height: 104px;
    padding: 19px;
  }

  .email-arrow {
    width: 44px;
    height: 44px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 35px 0;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .hero,
  .section,
  .footer {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    padding-inline: 14px;
  }

  .logo {
    font-size: 0.8rem;
  }

  .nav .nav-logo {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 2.72rem;
  }

  .window-status,
  .code-footer span:last-child {
    display: none;
  }

  .window-bar {
    grid-template-columns: 1fr auto;
  }

}

@media (hover: none) {
  .project:hover,
  .btn-primary:hover {
    transform: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
