:root {
  --lime-200: #F1FCC2;
  --lime-300: #E1F7A2;
  --lime-500: #BCE261;
  --lime-600: #9AC247;
  --lime-700: #7BA130;
  --lime-800: #5D831E;
  --emerald-500: #45CC76;
  --emerald-300: #8EEFA0;
  --emerald-800: #187556;
  --bayside-500: #1BA0F9;
  --bayside-300: #74D6FD;
  --bayside-800: #094291;
  --fire-500: #FFC044;
  --fire-300: #FFE08E;
  --fire-800: #935D13;
  --rose-500: #FF6D94;
  --rose-300: #FEA7AF;
  --rose-800: #932260;
  --olive-black: #222B0D;
  --font-single: "Bitcount Prop Single", monospace;
  --font-double: "Bitcount Prop Double", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme=dark] {
  color-scheme: dark;
  --bg: oklch(21.16% 0.0443 124.94deg);
  --surface: oklch(26.98% 0.058 124.8deg);
  --surface-2: oklch(29.2% 0.0539 122.55deg);
  --ink: oklch(85.96% 0.1615 123.54deg);
  --ink-strong: oklch(94.05% 0.1105 120.37deg);
  --ink-dim: var(--lime-600);
  --body: #C9D8A4;
  --phosphor: oklch(85.96% 0.1615 123.54deg);
  --phosphor-ink: oklch(26.98% 0.058 124.8deg);
  --line: rgba(188, 226, 97, 0.22);
  --line-soft: rgba(188, 226, 97, 0.10);
  --glow: rgba(188, 226, 97, 0.45);
  --nav-bg: oklch(21.16% 0.0443 124.94deg / 0.8);
}
[data-theme=dark] .only-light {
  display: none;
}
[data-theme=dark] .theme-toggle-knob {
  transform: translateY(-50%) translateX(32px);
}
[data-theme=dark] .hero-line--accent {
  text-shadow: 0 0 32px var(--glow);
}
[data-theme=dark] .stat-num {
  color: var(--phosphor);
}
[data-theme=dark] .contact-title-accent {
  text-shadow: 0 0 40px var(--glow);
}

[data-theme=light] {
  color-scheme: light;
  --bg: oklch(98.79% 0.0119 111.75deg);
  --surface: oklch(95.96% 0.0185 110.06deg);
  --surface-2: var(--lime-200);
  --ink: oklch(26.98% 0.058 124.8deg);
  --ink-strong: oklch(26.98% 0.058 124.8deg);
  --ink-dim: var(--lime-800);
  --body: #44511F;
  --phosphor: oklch(85.96% 0.1615 123.54deg);
  --phosphor-ink: oklch(26.98% 0.058 124.8deg);
  --line: rgba(34, 43, 13, 0.22);
  --line-soft: rgba(34, 43, 13, 0.10);
  --glow: rgba(154, 194, 71, 0.5);
  --nav-bg: oklch(100% 0 89.88deg / 0.8);
}
[data-theme=light] .only-dark {
  display: none;
}
[data-theme=light] .hero-line--accent {
  color: var(--lime-700);
}
[data-theme=light] .stat-num {
  color: var(--lime-700);
}
[data-theme=light] .contact-title-accent {
  color: var(--lime-700);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

.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;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-single);
  font-weight: 350;
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color 0.45s ease, color 0.45s ease;
}

::selection {
  background: var(--phosphor);
  color: var(--phosphor-ink);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-double);
  font-weight: 400;
  line-height: 0.8;
}

@media (pointer: fine) {
  body, a, button {
    cursor: none;
  }
}
.boot {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: grid;
  place-items: center;
}
.boot-inner {
  width: min(420px, 80vw);
}
.boot-dots {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.boot-dots i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line-soft);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.boot-dots i.lit {
  background: var(--phosphor);
  box-shadow: 0 0 12px var(--glow);
}
.boot-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
}
.boot-pct {
  font-family: var(--font-double);
  font-size: 28px;
  color: var(--ink);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--phosphor);
  box-shadow: 0 0 14px var(--glow);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.3s ease;
  mix-blend-mode: normal;
  opacity: 0;
}
.cursor.is-active {
  opacity: 1;
}
.cursor.is-hover {
  width: 44px;
  height: 44px;
  opacity: 0.55;
}
@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background-color 0.45s ease;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.nav-name {
  font-family: var(--font-double);
  font-size: 18px;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  gap: clamp(14px, 2.5vw, 32px);
}
.nav-links a {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--phosphor);
  transform: translateX(-50%) scale(0);
  transition: transform 0.25s var(--ease-out);
}
.nav-links a:hover {
  color: var(--ink-strong);
}
.nav-links a:hover::after {
  transform: translateX(-50%) scale(1);
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle {
  background: none;
  border: 0;
  padding: 0;
}
.theme-toggle-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 64px;
  height: 32px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: background-color 0.45s ease;
}
.theme-toggle-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-dim);
  opacity: 0.7;
}
.theme-toggle-knob {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--phosphor);
  box-shadow: 0 0 10px var(--glow);
  transform: translateY(-50%) translateX(0);
  transition: transform 0.35s var(--ease-out);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: background-color 0.45s ease;
}
.lang-toggle-opt {
  font-family: var(--font-single);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 6px 11px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--ink-dim);
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.lang-toggle-opt[aria-pressed=true] {
  color: var(--bg);
  background: var(--ink);
  box-shadow: 0 0 14px var(--glow);
}
.lang-toggle-opt:hover[aria-pressed=false] {
  color: var(--ink-strong);
}

@keyframes blink {
  50% {
    opacity: 0.25;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-single);
  font-weight: 450;
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: blink 1.6s steps(2, start) infinite;
}
.btn--solid {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--solid:hover {
  box-shadow: 0 0 26px var(--glow);
}
.btn--ghost {
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--surface-2);
}
.btn--lg {
  font-size: clamp(15px, 2.4vw, 20px);
  padding: 18px 32px;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
    transform: scale(0.8);
  }
}
@keyframes drip {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
.pulse-dot {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--phosphor);
  box-shadow: 0 0 10px var(--glow);
  animation: pulse 2s ease-in-out infinite;
}

.scroll-dots {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  vertical-align: middle;
}
.scroll-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-dim);
  animation: drip 1.4s ease-in-out infinite;
}
.scroll-dots i:nth-child(2) {
  animation-delay: 0.2s;
}
.scroll-dots i:nth-child(3) {
  animation-delay: 0.4s;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(16px, 5vw, 64px) 80px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-scene {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 4vw, 72px);
  top: 50%;
  translate: 0 -50%;
  width: min(600px, 41vw);
  aspect-ratio: 64/44;
  pointer-events: none;
}
@media (max-width: 1280px) {
  .hero-scene {
    position: static;
    right: auto;
    top: auto;
    translate: none;
    width: min(460px, 82vw);
    margin: 0 auto clamp(28px, 5vh, 48px);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  margin-bottom: clamp(20px, 3vh, 36px);
}
.hero-title {
  font-size: clamp(52px, 11.5vw, 168px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink-strong);
  margin-bottom: clamp(24px, 4vh, 44px);
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line > span {
  display: inline-block;
}
.hero-line--accent {
  color: var(--phosphor);
}
.hero-sub {
  max-width: 540px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--body);
  margin-bottom: clamp(28px, 4vh, 44px);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 48px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
}
.hero-meta > span {
  flex: 1;
}
.hero-meta > span:first-child {
  text-align: left;
}
.hero-meta > span:nth-child(2) {
  text-align: center;
}
.hero-meta > span:last-child {
  text-align: right;
}

.hero-pipeline {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  flex-shrink: 0;
}

.pipe-stage {
  --accent: var(--lime-500);
}
.pipe-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  margin-bottom: 12px;
}
.pipe-step i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.pipe-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 21px 24px;
  transition: background-color 0.45s ease, border-color 0.45s ease;
  will-change: transform;
}
.pipe-card--token {
  display: flex;
  align-items: center;
  gap: 21px;
}
.pipe-swatch {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 27px var(--accent);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.pipe-code {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pipe-code em {
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}
.pipe-code strong {
  font-family: var(--font-double);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink-strong);
}
.pipe-fmt {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  border: 1px dashed var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}
.pipe-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 0;
}
.pipe-link i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-dim);
  opacity: 0.45;
}
.pipe-pulse {
  position: absolute;
  left: 50%;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--phosphor);
  box-shadow: 0 0 18px var(--glow);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.pipe-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 15px;
}
.pipe-chrome i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink-dim);
  opacity: 0.5;
}
.pipe-chrome span {
  margin-left: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
}
.pipe-fig {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pipe-btn {
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--olive-black);
  transition: background 0.4s ease;
  white-space: nowrap;
}
.pipe-var {
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--ink-dim);
  white-space: nowrap;
}
.pipe-ship {
  display: flex;
  gap: 18px;
  align-items: stretch;
}
.pipe-browser {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  min-width: 0;
}
.pipe-browser .pipe-chrome {
  margin-bottom: 12px;
}
.pipe-url {
  flex: 1;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 3px 10px;
  text-align: center;
}
.pipe-page {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pipe-bar {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: var(--line-soft);
}
.pipe-bar--w70 {
  width: 70%;
}
.pipe-bar--w50 {
  width: 50%;
}
.pipe-cta {
  display: block;
  width: 42%;
  height: 16px;
  border-radius: 8px;
  background: var(--accent);
  transition: background 0.4s ease;
  margin-top: 2px;
}
.pipe-dots-row {
  display: flex;
  gap: 7px;
  margin-top: 2px;
}
.pipe-dots-row i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  transition: background 0.4s ease;
}
.pipe-dots-row i:nth-child(2) {
  opacity: 0.6;
}
.pipe-dots-row i:nth-child(3) {
  opacity: 0.3;
}
.pipe-phone {
  position: relative;
  width: 96px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 21px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pipe-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-dim);
  opacity: 0.5;
}
.pipe-fab {
  align-self: flex-end;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  margin-top: 4px;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
  background: var(--surface);
  transition: background-color 0.45s ease;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
}
.marquee-chunk {
  font-family: var(--font-double);
  font-size: clamp(16px, 2.2vw, 24px);
  letter-spacing: 0.12em;
  color: var(--ink-dim);
}
.marquee-chunk i {
  font-style: normal;
  color: var(--phosphor);
}

.section {
  padding: clamp(80px, 12vh, 140px) clamp(16px, 5vw, 64px);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 6vh, 64px);
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-single);
  font-weight: 500;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: 0.24em;
  color: var(--ink-strong);
}
.section-hint {
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.card {
  --ramp: var(--lime-500);
  --ramp-soft: var(--lime-300);
  --ramp-deep: var(--lime-800);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease, background-color 0.45s ease;
}
.card[data-ramp=emerald] {
  --ramp: var(--emerald-500);
  --ramp-soft: var(--emerald-300);
  --ramp-deep: var(--emerald-800);
}
.card[data-ramp=bayside] {
  --ramp: var(--bayside-500);
  --ramp-soft: var(--bayside-300);
  --ramp-deep: var(--bayside-800);
}
.card[data-ramp=desert-fire] {
  --ramp: var(--fire-500);
  --ramp-soft: var(--fire-300);
  --ramp-deep: var(--fire-800);
}
.card[data-ramp=shimmer-rose] {
  --ramp: var(--rose-500);
  --ramp-soft: var(--rose-300);
  --ramp-deep: var(--rose-800);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--ramp);
  box-shadow: 0 24px 60px -28px var(--ramp);
}
.card-visual {
  position: relative;
  height: clamp(180px, 24vw, 240px);
  background: var(--ramp-deep);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--ramp) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.5;
  transition: opacity 0.4s ease, transform 0.6s var(--ease-out);
}
.card:hover .card-dots {
  opacity: 0.9;
  transform: scale(1.06);
}
.card-glyph {
  position: relative;
  font-family: var(--font-double);
  font-size: clamp(56px, 8vw, 88px);
  color: var(--ramp-soft);
  text-shadow: 0 0 40px var(--ramp);
}
.card-body {
  padding: clamp(20px, 3vw, 28px);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.card-title {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink-strong);
}
.card-year {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
}
.card-desc {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 18px;
  max-width: 52ch;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.card-tags li {
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-dim);
}

.card-stack {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ramp);
  margin-bottom: 16px;
}
.card-result {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-strong);
  margin-bottom: 18px;
  max-width: 52ch;
}
.card-result::before {
  content: "";
  flex: none;
  margin-top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ramp);
  box-shadow: 0 0 10px var(--ramp);
}
.card-best {
  font-size: 13px;
  color: var(--ink-dim);
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  max-width: 52ch;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-strong);
  transition: gap 0.25s var(--ease-out), color 0.25s ease;
}
.card-cta:hover {
  gap: 14px;
  color: var(--ramp);
}
.card-cta--muted {
  color: var(--ink-dim);
  pointer-events: none;
}
.card-cta--muted::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-dim);
  opacity: 0.6;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-bottom: clamp(48px, 8vh, 88px);
}
.about-layout .stats {
  width: min(360px, 100%);
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1140px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-layout .hero-pipeline {
    width: min(560px, 100%);
  }
  .about-layout .stats {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  }
}
.about-main {
  min-width: 0;
  max-width: 60ch;
}
.about-headline {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.95;
  color: var(--ink-strong);
  margin-bottom: clamp(24px, 4vh, 40px);
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-body p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--body);
  max-width: 54ch;
}

.products {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: background-color 0.45s ease;
}
.products-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) {
  .products-layout {
    grid-template-columns: 1fr;
  }
}
.products-headline {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
  color: var(--ink-strong);
  margin-bottom: 20px;
}
.products-body {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--body);
  max-width: 46ch;
  margin-bottom: 28px;
}
.products-grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.product {
  --ramp: var(--lime-500);
}
.product[data-ramp=bayside] {
  --ramp: var(--bayside-500);
}
.product[data-ramp=shimmer-rose] {
  --ramp: var(--rose-500);
}
.product {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}
.product:hover {
  transform: translateY(-6px);
  border-color: var(--ramp);
  box-shadow: 0 24px 60px -28px var(--ramp);
}
.product-glyph {
  font-family: var(--font-double);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--ramp);
  text-shadow: 0 0 30px var(--ramp);
}
.product-name {
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink-strong);
}
.product-desc {
  font-size: 15px;
  color: var(--body);
  max-width: 40ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
}

.stat {
  background: var(--surface);
  padding: clamp(24px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background-color 0.45s ease;
}
.stat-num {
  font-family: var(--font-double);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--phosphor);
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.contact {
  position: relative;
  padding: clamp(100px, 16vh, 180px) clamp(16px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}
.contact-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3vh, 30px);
}
.contact-title {
  font-size: clamp(48px, 10vw, 140px);
  text-transform: uppercase;
  color: var(--ink-strong);
  line-height: 0.98;
}
.contact-title span {
  display: block;
}
.contact-title-accent {
  color: var(--phosphor);
}
.contact-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--body);
  max-width: 50ch;
}
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-micro {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
}
.contact-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.contact-links span {
  font-size: 8px;
  color: var(--phosphor);
}
.contact-links a {
  transition: color 0.25s ease;
}
.contact-links a:hover {
  color: var(--ink-strong);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px clamp(16px, 5vw, 64px);
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
}
.footer-mid {
  color: var(--phosphor);
  font-size: 9px;
}
.footer > span {
  flex: 1;
}
.footer > span:first-child {
  text-align: left;
}
.footer > span:nth-child(2) {
  text-align: center;
}
.footer > span:last-child {
  text-align: right;
}

.reveal, .reveal-line {
  will-change: transform, opacity;
}

@media (max-width: 760px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    font-size: 10px;
  }
  .hero-meta-item--scroll {
    display: none;
  }
  .hero-meta > span {
    flex: initial;
    text-align: left;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .contact-title {
    font-size: clamp(44px, 14vw, 72px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-line {
    overflow: visible;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}