:root {
  --navy-950: #050a12;
  --navy-900: #07111d;
  --navy-850: #0b1320;
  --navy-800: #0d1d2d;
  --copper: #e67e22;
  --copper-deep: #d35400;
  --white: #ffffff;
  --slate: #94a3b8;
  --muted: #c3cbd6;
  --mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Syne", "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--navy-950);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
  background:
    radial-gradient(circle at 52% 42%, rgba(11, 19, 32, 0.98) 0%, rgba(5, 10, 18, 0.97) 48%, #02060c 100%),
    linear-gradient(145deg, var(--navy-950), var(--navy-850));
}

a,
button {
  touch-action: manipulation;
}

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

.page-shell {
  width: 100%;
  min-height: 100vh;
  padding: 40px 44px;
  overflow-x: hidden;
}

.studio-frame {
  position: relative;
  width: min(100%, 1188px);
  min-height: calc(100dvh - 80px);
  margin: 0 auto;
  padding: 26px 80px 42px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background:
    linear-gradient(103deg, rgba(5, 14, 24, 0.97) 0%, rgba(7, 18, 31, 0.99) 48%, rgba(46, 40, 37, 0.9) 100%),
    radial-gradient(circle at 78% 11%, rgba(230, 126, 34, 0.56), transparent 35%),
    radial-gradient(circle at 18% 84%, rgba(9, 52, 79, 0.42), transparent 34%);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.52),
    inset 0 0 80px rgba(0, 0, 0, 0.28);
}

.studio-frame::before,
.studio-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.studio-frame::before {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 78%);
}

.studio-frame::after {
  background:
    radial-gradient(circle at 79% 18%, rgba(230, 126, 34, 0.38), transparent 25%),
    radial-gradient(circle at 48% 92%, rgba(230, 126, 34, 0.18), transparent 18%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.15), transparent 22%, transparent 80%, rgba(255, 136, 62, 0.12));
}

.site-header,
.hero,
.signal-strip,
.build-section,
.products-section,
.process-section,
.notes-section,
.about-section {
  position: relative;
  z-index: 2;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 112px;
  min-height: 60px;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
}

.brand-mark {
  position: relative;
  display: block;
  width: 28px;
  height: 34px;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  background: var(--white);
}

.brand-mark::before {
  left: 0;
  top: 0;
  width: 11px;
  height: 11px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.brand-mark::after {
  right: 0;
  bottom: 0;
  width: 9px;
  height: 13px;
  background: var(--copper);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.brand-mark span:nth-child(1) {
  left: 1px;
  top: 8px;
  width: 9px;
  height: 34px;
  transform: rotate(45deg);
  transform-origin: top left;
}

.brand-mark span:nth-child(2) {
  left: 11px;
  top: 0;
  width: 9px;
  height: 43px;
  transform: rotate(45deg);
  transform-origin: top left;
}

.brand-mark span:nth-child(3) {
  left: 0;
  bottom: 0;
  width: 28px;
  height: 9px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.brand-type {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-weight: 800;
  line-height: 0.86;
  text-transform: uppercase;
}

.brand-type span:nth-child(1) {
  font-size: 17px;
  letter-spacing: 0;
}

.brand-type span:nth-child(2) {
  font-size: 17px;
  letter-spacing: 0;
}

.brand-type span:nth-child(3) {
  margin-top: 5px;
  color: var(--slate);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
  transition: color 160ms cubic-bezier(0.23, 1, 0.32, 1), border-color 160ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.site-nav a:focus-visible {
  outline: 2px solid rgba(230, 126, 34, 0.8);
  outline-offset: 4px;
  border-radius: 3px;
}

.site-nav a:hover,
.site-nav .active {
  color: var(--white);
}

.site-nav .active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--copper);
  box-shadow: 0 0 12px rgba(230, 126, 34, 0.7);
}

.site-nav .signup {
  margin-left: 6px;
  padding: 11px 18px;
  color: #f6d6be;
  border: 1px solid rgba(230, 126, 34, 0.64);
  border-radius: 8px;
  background: rgba(5, 10, 18, 0.72);
  box-shadow:
    0 0 20px rgba(230, 126, 34, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  min-height: 520px;
  padding: 28px 0 26px;
}

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

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: "Barlow Condensed", var(--display);
  font-size: clamp(68px, 6.8vw, 96px);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--copper);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero p {
  max-width: 536px;
  margin: 28px 0 0;
  color: #e7edf4;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.terminal-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--slate);
  font-family: var(--mono);
  font-size: 12px;
}

.ticker-cursor {
  color: var(--copper);
  animation: cursorBlink 1.1s step-end infinite;
}

#ticker-label {
  color: var(--white);
  transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.26);
}

.dot-grid {
  position: absolute;
  inset: -28px;
  opacity: 0.2;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(230, 126, 34, 0.32) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 42% 42%, black, transparent 70%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 180ms cubic-bezier(0.23, 1, 0.32, 1), opacity 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

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

.button:active {
  opacity: 0.75;
  transform: scale(0.96);
}

.button:focus-visible {
  outline: 2px solid rgba(230, 126, 34, 0.8);
  outline-offset: 3px;
}

.button.primary {
  color: var(--navy-800);
  border: 1px solid var(--copper);
  background: var(--copper);
  box-shadow: none;
}

.button.primary:hover {
  background: #d9771f;
  border-color: #d9771f;
}

.button.secondary {
  color: var(--copper);
  border: 1px solid rgba(230, 126, 34, 0.55);
  background: transparent;
}

.hero-globe {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  margin: 0 -40px 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: radial-gradient(circle at center, black 38%, rgba(0,0,0,0.6) 54%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 38%, rgba(0,0,0,0.6) 54%, transparent 70%);
}

@media (prefers-reduced-motion: reduce) {
  .globe-video {
    animation: none;
  }
}

.build-section {
  margin-top: 72px;
}

.signal-strip {
  width: calc(100% + 160px);
  margin: 18px -80px 0;
  overflow: hidden;
  border-top: 1px solid rgba(230, 126, 34, 0.22);
  border-bottom: 1px solid rgba(230, 126, 34, 0.22);
  background: rgba(255, 255, 255, 0.018);
}

.strip-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: stripScroll 26s linear infinite;
}

.signal-strip:hover .strip-track {
  animation-play-state: paused;
}

.strip-group {
  display: flex;
}

.strip-group span {
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  padding: 0 32px;
  border-right: 1px solid rgba(230, 126, 34, 0.16);
  color: var(--slate);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip-group strong {
  margin: 0 4px;
  color: var(--copper);
  font-weight: 600;
}

.section-heading h2 {
  margin: 0 0 30px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}


.build-grid {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.build-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: default;
  transition: padding-left 240ms cubic-bezier(0.23, 1, 0.32, 1);
}

.build-card:hover {
  padding-left: 14px;
}

.build-num {
  font-family: "Barlow Condensed", var(--display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: rgba(230, 126, 34, 0.18);
  padding-top: 3px;
  transition: color 240ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
}

.build-card:hover .build-num {
  color: var(--copper);
}

.build-body h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
  transition: color 240ms cubic-bezier(0.23, 1, 0.32, 1);
}

.build-card:hover .build-body h3 {
  color: #fde8d4;
}

.build-flow {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.flow-in {
  color: var(--slate);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}

.flow-arrow {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 13px;
  opacity: 0.65;
  flex-shrink: 0;
}

.flow-out {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .strip-track {
    animation: none;
    will-change: auto;
  }

  .ticker-cursor {
    animation: none;
  }
}

@keyframes cursorBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes stripScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.products-section,
.process-section,
.notes-section,
.about-section {
  padding-top: 86px;
}

.products-section {
  overflow: visible;
}

.rail-wrap {
  position: relative;
  z-index: 3;
}

.rail-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.rail-track::-webkit-scrollbar {
  display: none;
}

.rail-track.is-dragging {
  cursor: grabbing;
}

.rail-card {
  flex: 0 0 min(440px, 84vw);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(230, 126, 34, 0.42);
  border-radius: 16px;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018) 48%, rgba(230, 126, 34, 0.07)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 22px rgba(230, 126, 34, 0.22);
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1), border-color 220ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.rail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 126, 34, 0.8);
  box-shadow: 0 0 38px rgba(230, 126, 34, 0.34);
}

.rail-card__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(230, 126, 34, 0.22);
  background: rgba(5, 10, 18, 0.58);
}

.rail-card__chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.rail-card__chrome span:nth-child(1) {
  background: rgba(255, 99, 71, 0.58);
}

.rail-card__chrome span:nth-child(2) {
  background: rgba(255, 190, 74, 0.52);
}

.rail-card__chrome span:nth-child(3) {
  background: rgba(45, 246, 140, 0.38);
}

.rail-card__chrome p {
  min-width: 0;
  margin: 0 0 0 8px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--mono);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rail-card__screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(5, 10, 18, 0.84);
}

.rail-card__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.82);
  transition: transform 420ms cubic-bezier(0.23, 1, 0.32, 1), filter 420ms cubic-bezier(0.23, 1, 0.32, 1);
}

.rail-card:hover .rail-card__screen img {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.92);
}

.product-mock {
  position: absolute;
  inset: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 74% 18%, rgba(230, 126, 34, 0.32), transparent 35%),
    rgba(255, 255, 255, 0.035);
}

.product-mock strong {
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.product-mock span {
  max-width: 250px;
  margin-top: 10px;
  color: var(--slate);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
}

.product-mock i {
  position: absolute;
  right: 24px;
  width: 32%;
  height: 10px;
  border-radius: 999px;
  background: rgba(230, 126, 34, 0.42);
  box-shadow: 0 0 18px rgba(230, 126, 34, 0.38);
}

.product-mock i:nth-of-type(1) {
  top: 32px;
}

.product-mock i:nth-of-type(2) {
  top: 56px;
  width: 44%;
}

.product-mock i:nth-of-type(3) {
  top: 80px;
  width: 26%;
}

.rail-card__num {
  position: absolute;
  left: 18px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.05);
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
}

.rail-card__hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  opacity: 0;
  background: rgba(5, 10, 18, 0.86);
  transition: opacity 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.rail-card:hover .rail-card__hover {
  opacity: 1;
}

.rail-card[data-lightbox] {
  cursor: zoom-in;
}

/* ── Lightbox ────────────────────────────────────────── */

dialog.lb-overlay {
  position: fixed;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.23, 1, 0.32, 1);
}

dialog.lb-overlay.is-open {
  opacity: 1;
}

dialog.lb-overlay::backdrop {
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.23, 1, 0.32, 1);
}

dialog.lb-overlay.is-open::backdrop {
  opacity: 1;
}

.lb-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  cursor: default;
  transform: scale(0.96);
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1);
}

dialog.lb-overlay.is-open .lb-img {
  transform: scale(1);
}

.lb-close {
  position: absolute;
  top: 1.4rem;
  right: 2rem;
  font-size: 2.6rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 150ms;
}

.lb-close:hover { color: #fff; }

.rail-card__tech-label {
  color: var(--slate);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.rail-card__tags,
.products-hover-overlay__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.rail-card__tag,
.products-hover-overlay__tags span {
  padding: 7px 10px;
  border: 1px solid rgba(230, 126, 34, 0.34);
  border-radius: 7px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.045);
}

.rail-card__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px 16px;
}

.rail-card__name {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.rail-card__meta {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 11px;
}

.prod-status {
  padding: 5px 9px;
  border: 1px solid rgba(230, 126, 34, 0.32);
  border-radius: 999px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.prod-status.s-live {
  color: #68f2a0;
  border-color: rgba(104, 242, 160, 0.28);
}

.prod-status.s-beta {
  color: var(--copper);
  border-color: rgba(230, 126, 34, 0.32);
}

.prod-status.s-ongoing {
  color: var(--slate);
  border-color: rgba(148, 163, 184, 0.28);
}

.rail-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(230, 126, 34, 0.42);
  border-radius: 50%;
  color: var(--white);
  background: rgba(5, 10, 18, 0.74);
  box-shadow: 0 0 22px rgba(230, 126, 34, 0.24);
  cursor: pointer;
  transform: translateY(-50%);
}

.rail-arrow:focus-visible {
  outline: 2px solid rgba(230, 126, 34, 0.8);
  outline-offset: 3px;
}

.rail-arrow:disabled {
  opacity: 0.32;
}

.rail-arrow--prev {
  left: -20px;
}

.rail-arrow--next {
  right: -20px;
}

.products-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms cubic-bezier(0.23, 1, 0.32, 1);
}

.products-hover-overlay.is-active {
  opacity: 1;
}

.products-hover-overlay__bg,
.products-hover-overlay__shade {
  position: absolute;
  inset: 0;
}

.products-hover-overlay__bg {
  background-position: center top;
  background-size: cover;
  filter: brightness(0.24) saturate(0.55);
  transform: scale(1.06);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.products-hover-overlay.is-active .products-hover-overlay__bg {
  transform: scale(1);
}

.products-hover-overlay__shade {
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.35), rgba(5, 10, 18, 0.96)),
    radial-gradient(circle at 70% 20%, rgba(230, 126, 34, 0.28), transparent 38%);
}

.products-hover-overlay__content {
  position: absolute;
  right: 42px;
  bottom: 34px;
  max-width: 440px;
  text-align: right;
}

.products-hover-overlay__num {
  display: block;
  color: rgba(255, 255, 255, 0.06);
  font-size: 108px;
  font-weight: 800;
  line-height: 0.8;
}

.products-hover-overlay__name {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  transform: translateY(10px);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1) 60ms;
}

.products-hover-overlay.is-active .products-hover-overlay__name {
  transform: translateY(0);
}

.products-hover-overlay__meta {
  color: var(--slate);
  font-family: var(--mono);
  transform: translateY(10px);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1) 90ms;
}

.products-hover-overlay.is-active .products-hover-overlay__meta {
  transform: translateY(0);
}

.products-hover-overlay__tags {
  transform: translateY(10px);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1) 120ms;
}

.products-hover-overlay.is-active .products-hover-overlay__tags {
  transform: translateY(0);
}

.pipeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.pipeline-line {
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(230, 126, 34, 0.24);
}

.pipeline-line span {
  display: block;
  width: 16.66%;
  height: 100%;
  background: var(--copper);
  box-shadow: 0 0 14px rgba(230, 126, 34, 0.7);
  transition: width 420ms cubic-bezier(0.23, 1, 0.32, 1);
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 160px;
  padding: 76px 14px 18px;
  text-align: center;
}

.stage::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(230, 126, 34, 0.44);
  border-radius: 50%;
  background: rgba(5, 10, 18, 0.96);
  transform: translateX(-50%);
  transition: background 220ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.stage.active::before {
  background: var(--copper);
  box-shadow: 0 0 22px rgba(230, 126, 34, 0.55);
}

.stage span {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 10px;
}

.stage strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
}

.stage p {
  margin: 7px auto 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.45;
  text-wrap: pretty;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.note-card {
  overflow: hidden;
  border: 1px solid rgba(230, 126, 34, 0.38);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 24px rgba(230, 126, 34, 0.18);
}

.note-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.82) brightness(0.74);
  transition: transform 360ms cubic-bezier(0.23, 1, 0.32, 1);
}

.note-card:hover > img {
  transform: scale(1.04);
}

.note-card__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.note-card__brand--signal {
  background:
    radial-gradient(circle at 50% 55%, rgba(245, 158, 11, 0.16), transparent 52%),
    linear-gradient(160deg, #060608 0%, #0a0a0b 60%, #0f0e09 100%);
}

.note-card__brand--pitchos {
  background:
    radial-gradient(circle at 50% 55%, rgba(59, 130, 246, 0.22), transparent 55%),
    linear-gradient(160deg, #040b1a 0%, #071428 60%, #0a1e42 100%);
}

.note-card__brand--vsa {
  background:
    radial-gradient(circle at 50% 55%, rgba(34, 160, 100, 0.22), transparent 55%),
    linear-gradient(160deg, #040e08 0%, #071510 60%, #0b1f16 100%);
}

.note-card__brand img {
  width: auto;
  height: 72px;
  aspect-ratio: auto;
  object-fit: contain;
  filter: none;
  transition: transform 360ms cubic-bezier(0.23, 1, 0.32, 1);
}

.note-card:hover .note-card__brand img {
  transform: scale(1.06);
}

.note-card div {
  padding: 22px;
}

.note-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border: 1px solid rgba(230, 126, 34, 0.5);
  border-radius: 4px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--copper);
  vertical-align: middle;
}

.note-type {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.note-card h3 {
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}

.note-card p:not(.note-type) {
  margin: 0 0 16px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.55;
  text-wrap: pretty;
}

.note-card strong {
  color: #f7d8c0;
  font-size: 14px;
}

.about-section {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 86px -80px 0;
  padding: 86px 80px;
  border-top: 1px solid rgba(230, 126, 34, 0.22);
}

.about-logo {
  margin-bottom: 48px;
}

.about-logo img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 20px;
  opacity: 0.92;
}

.about-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
}

.about-copy h2 {
  margin: 0 0 26px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.about-copy p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--slate);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}

.about-copy strong {
  color: var(--white);
}

.about-copy .about-founder-line {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.about-copy .about-buyer-line {
  font-size: 14px;
  font-family: var(--mono);
  color: var(--copper);
  letter-spacing: 0.03em;
  opacity: 0.85;
}

.about-copy a {
  display: inline-flex;
  margin-top: 20px;
  color: #f7d8c0;
  font-family: var(--sans);
}



/* ── Contact form ───────────────────────────────────── */

.contact-section {
  padding-top: 100px;
  padding-bottom: 16px;
  max-width: 760px;
  margin-inline: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.form-optional {
  font-size: 10px;
  opacity: 0.6;
  text-transform: none;
  letter-spacing: 0;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  transition: border-color 200ms cubic-bezier(0.23, 1, 0.32, 1),
              background 200ms cubic-bezier(0.23, 1, 0.32, 1);
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(148, 163, 184, 0.45);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(230, 126, 34, 0.55);
  background: rgba(230, 126, 34, 0.04);
}

.form-submit {
  align-self: flex-start;
  cursor: pointer;
}

.form-status {
  font-family: var(--mono);
  font-size: 13px;
  min-height: 20px;
  margin: 0;
}

.form-status.is-success {
  color: var(--copper);
}

.form-status.is-error {
  color: #e05252;
}

@media (max-width: 1100px) {
  .page-shell {
    padding: 22px;
  }

  .studio-frame {
    padding: 24px 40px 38px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-globe {
    width: min(100%, 420px);
    margin: 24px auto 0;
  }

  .pipeline-track,
  .notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pipeline-line {
    display: none;
  }

  .about-logo img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 0;
  }

  .studio-frame {
    min-height: 100vh;
    padding: 24px 20px 32px;
    border-radius: 0;
  }

  .site-header {
    align-items: center;
  }

  .brand {
    width: 104px;
  }

  .site-nav a:not(.signup):not(.active) {
    display: none;
  }

  .site-nav {
    gap: 18px;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .hero p {
    font-size: 14px;
  }

  .button {
    width: 100%;
  }

  .hero-globe {
    display: none;
  }

  .build-card {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 22px 0;
  }

  .build-num {
    font-size: 34px;
  }

  .signal-strip {
    width: calc(100% + 40px);
    margin-inline: -20px;
  }

  .strip-group span {
    min-height: 58px;
    padding: 0 18px;
  }

  .products-section,
  .process-section,
  .notes-section,
  .about-section,
  .contact-section {
    padding-top: 64px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
  }

  .rail-arrow,
  .products-hover-overlay {
    display: none;
  }

  .rail-card__info small {
    width: 100%;
    margin-left: 0;
  }

  .pipeline-track,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .stage {
    min-height: 0;
    padding: 22px 18px 22px 72px;
    text-align: left;
    border: 1px solid rgba(230, 126, 34, 0.28);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
  }

  .stage::before {
    left: 28px;
    top: 26px;
  }

  .about-section {
    min-height: 620px;
    margin-inline: -20px;
    padding: 64px 20px;
  }

  .about-logo img {
    width: 120px;
    height: 120px;
  }

  .about-copy h2 {
    font-size: clamp(38px, 12vw, 52px);
  }
}

/* ============================================================
   SITE FOOTER
============================================================ */
.site-footer {
  margin-top: 96px;
  padding: 28px 0 4px;
  border-top: 1px solid rgba(230, 126, 34, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(195, 203, 214, 0.5);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__mark {
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.site-footer__loc {
  color: rgba(195, 203, 214, 0.45);
}

.site-footer__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer__meta span[aria-hidden="true"] {
  color: rgba(230, 126, 34, 0.5);
}

.site-footer__link {
  color: rgba(195, 203, 214, 0.65);
  transition: color 180ms ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: var(--copper);
}

@media (max-width: 720px) {
  .site-footer {
    margin-top: 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 11px;
  }
}
