:root {
  --ink: #050505;
  --surface: #0e0e10;
  --elevated: #161618;
  --garnet: #b23a48;
  --garnet-hover: #9c2f3d;
  --smoke: #a1a1aa;
  --white: #fafafa;
  --hairline: rgba(255, 255, 255, 0.1);
  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans: "Satoshi", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --maxw: 1300px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--garnet);
  color: #fff;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.accent {
  color: var(--garnet);
}
.muted {
  color: var(--smoke);
}
.italic {
  font-style: italic;
  font-weight: 400;
}
.mono {
  font-family: var(--mono);
}
.dim {
  color: rgba(255, 255, 255, 0.3);
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 20px;
  border: 1px solid transparent;
  transition:
    background-color 0.3s,
    border-color 0.3s,
    color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--garnet);
  color: #fff;
}
.btn--primary:hover {
  background: var(--garnet-hover);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}
.btn--lg {
  padding: 16px 30px;
  font-size: 15px;
}
.btn--block {
  width: 100%;
  justify-content: center;
  padding: 15px;
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  position: relative;
  width: 26px;
  height: 26px;
  display: inline-block;
}
.brand__mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--garnet);
  transform: rotate(45deg);
  transition: transform 0.5s;
}
.brand__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--garnet);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.brand:hover .brand__mark::before {
  transform: rotate(135deg);
}
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
}

/* overline / headings */
.overline {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--garnet);
}
@media (max-width: 640px) {
  .overline {
    font-size: 13px;
  }
}
.h2 {
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.05;
  margin-top: 18px;
  max-width: 20ch;
  text-wrap: balance;
}
.lead {
  color: var(--smoke);
  margin-top: 22px;
  max-width: 46ch;
  font-size: 17px;
}
.section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
@media (max-width: 640px) {
  .section {
    padding: 76px 0;
  }
}

/* glows */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
}
.glow--a {
  top: -80px;
  left: 8%;
  width: 420px;
  height: 420px;
  background: rgba(178, 58, 72, 0.16);
}
.glow--b {
  bottom: 0;
  right: 6%;
  width: 360px;
  height: 360px;
  background: rgba(178, 58, 72, 0.1);
}
.glow--c {
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(178, 58, 72, 0.08);
}
.glow--d {
  top: 25%;
  right: -80px;
  width: 460px;
  height: 460px;
  background: rgba(178, 58, 72, 0.1);
}
.glow--e {
  bottom: 40px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: rgba(178, 58, 72, 0.08);
}
.glow--f {
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 380px;
  background: rgba(178, 58, 72, 0.09);
}
.glow--g {
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: rgba(178, 58, 72, 0.15);
  filter: blur(120px);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background-color 0.5s,
    border-color 0.5s,
    backdrop-filter 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__links {
  display: flex;
  gap: 34px;
}
.nav__links a {
  font-size: 14px;
  color: var(--smoke);
  transition: color 0.3s;
}
.nav__links a:hover {
  color: #fff;
}
.nav__cta {
  display: flex;
  gap: 12px;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: #fff;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hairline);
}
.nav__mobile.open {
  display: flex;
}
.nav__mobile a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.1);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    var(--ink),
    rgba(5, 5, 5, 0.5) 45%,
    rgba(5, 5, 5, 0.3)
  );
}
.hero__overlay--side {
  background: linear-gradient(to right, var(--ink), transparent 55%);
}
.hero__content {
  position: relative;
  z-index: 10;
  padding-top: 120px;
  padding-bottom: 80px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--smoke);
}
.eyebrow__line {
  width: 32px;
  height: 1px;
  background: var(--garnet);
}
.hero__title {
  font-size: clamp(44px, 7.5vw, 84px);
  line-height: 1.02;
  margin-top: 26px;
  font-weight: 500;
  max-width: 15ch;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line span {
  display: block;
  transform: translateY(110%);
  animation: reveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__title .line:nth-child(1) span {
  animation-delay: 0.35s;
}
.hero__title .line:nth-child(2) span {
  animation-delay: 0.47s;
}
.hero__title .line:nth-child(3) span {
  animation-delay: 0.59s;
}
@keyframes reveal {
  to {
    transform: translateY(0);
  }
}
.hero__sub {
  margin-top: 30px;
  max-width: 34rem;
  color: var(--smoke);
  font-size: 18px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.95s;
}
.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1.1s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-top: 1px solid var(--hairline);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}
.hero__strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}
.hero__strip .mono {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--smoke);
}
.hero__built {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--smoke);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--garnet);
  display: inline-block;
}

/* MARQUEE */
.marquee {
  border-top: 1px solid rgba(178, 58, 72, 0.15);
  border-bottom: 1px solid rgba(178, 58, 72, 0.15);
  background: linear-gradient(90deg, #0b0708, #070707, #0b0708);
  padding: 30px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: scrollx 40s linear infinite;
}
@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}
.marquee__item {
  display: flex;
  align-items: center;
}
.marquee__item span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  padding: 0 32px;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: -0.01em;
}
.marquee__item.hot span {
  color: rgba(178, 58, 72, 0.45);
}
.marquee__item i {
  width: 8px;
  height: 8px;
  background: rgba(178, 58, 72, 0.7);
  transform: rotate(45deg);
  display: inline-block;
}

/* MANIFESTO */
.manifesto {
  background: linear-gradient(to bottom, #130a0d, #050505 50%, #0d0709);
}
.manifesto__grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.mani {
  background: #050505;
  padding: 40px;
  transition: background-color 0.5s;
}
.mani:hover {
  background: #0d0d0d;
}
.mani__top {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.mani__n {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 56px;
  color: rgba(255, 255, 255, 0.1);
  transition: color 0.5s;
}
.mani:hover .mani__n {
  color: rgba(178, 58, 72, 0.8);
}
.mani__top i {
  flex: 1;
  height: 1px;
  background: var(--hairline);
}
.mani h3 {
  font-size: 26px;
  margin-top: 28px;
}
.mani p {
  color: var(--smoke);
  margin-top: 16px;
}
@media (max-width: 900px) {
  .manifesto__grid {
    grid-template-columns: 1fr;
  }
}

/* LIFECYCLE */
.lifecycle {
  position: relative;
  height: 500vh;
  background: linear-gradient(to bottom, #0f0809, #070506, #12090c);
}
.lifecycle__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lifecycle__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.lifecycle__counter {
  color: var(--smoke);
  font-size: 14px;
}
.rail {
  position: relative;
  margin-top: 44px;
}
.rail__line,
.rail__fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 1px;
}
.rail__line {
  background: var(--hairline);
}
.rail__fill {
  background: var(--garnet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s linear;
}
.rail__nodes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.node__dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0e0e10;
  color: var(--smoke);
  transition:
    background-color 0.5s,
    border-color 0.5s,
    color 0.5s;
  font-size: 15px;
}
.node.done .node__dot {
  background: var(--garnet);
  border-color: var(--garnet);
  color: #fff;
}
.node__label {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(161, 161, 170, 0.6);
  transition: color 0.5s;
}
.node.active .node__label {
  color: #fff;
}
.lifecycle__body {
  flex: 1;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.lifecycle__grid,
.lifecycle__body > * {
  width: 100%;
}
.lifecycle__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lifecycle__visual {
  position: relative;
  aspect-ratio: 16/11;
  border: 1px solid var(--hairline);
  background: #0e0e10;
  overflow: hidden;
}
.lifecycle__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.lifecycle__visual img.active {
  opacity: 1;
  transform: scale(1);
}
.lifecycle__visual .vgrad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
  z-index: 2;
}
.lifecycle__visual .vtag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--hairline);
  padding: 6px 12px;
  backdrop-filter: blur(4px);
}
.lifecycle__steps {
  position: relative;
  min-height: 280px;
}
.step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition:
    opacity 0.5s,
    transform 0.5s;
}
.step.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
.step__id {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--garnet);
  font-family: var(--serif);
  font-weight: 600;
}
.step__id i {
  width: 40px;
  height: 1px;
  background: rgba(178, 58, 72, 0.6);
}
.step h3 {
  font-size: clamp(22px, 2.8vw, 39px);

  line-height: 1.1;
  max-width: 12ch;
  text-wrap: balance;
  letter-spacing: -0.02em;
}
.step p {
  color: var(--smoke);
  margin-top: 18px;
  max-width: 34ch;
  font-size: 17px;
}
.step ul {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--garnet);
  transform: rotate(45deg);
}
@media (max-width: 900px) {
  .lifecycle {
    height: auto;
  }
  .lifecycle__sticky {
    position: relative;
    height: auto;
    padding: 80px 0;
  }
  .lifecycle__body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .node__label span.full {
    display: none;
  }
}

/* PLATFORM */
.platform {
  background: linear-gradient(to bottom, #0d0709, #0a0708, #130a0d);
}
.platform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.platform__media {
  position: relative;
}
.platform__frame {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.platform__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}
.platform__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0a0708, transparent 55%);
}
.platform__badge {
  position: absolute;
  bottom: -24px;
  right: 12px;
  background: var(--garnet);
  padding: 26px;
  max-width: 220px;
}
.platform__badge-n {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
}
.platform__badge p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.platform__features {
  margin-top: 44px;
  border-top: 1px solid var(--hairline);
}
.pfeat {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.pfeat__ic {
  width: 44px;
  height: 44px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  color: #fff;
  font-size: 18px;
}
.pfeat h3 {
  font-size: 18px;
}
.pfeat p {
  color: var(--smoke);
  font-size: 14px;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .platform__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .platform__media {
    order: 2;
  }
}

/* CAPABILITIES */
.capabilities {
  position: relative;
  height: 520vh;
  background: linear-gradient(to bottom, #0d0709, #050505, #130a0d);
}
.cap__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}
.cap__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.cap__counter {
  color: var(--smoke);
  font-size: 14px;
}
.cap__deck {
  position: relative;
  margin-top: 44px;
  perspective: 1600px;
  min-height: 440px;
}
.cap__deck::before,
.cap__deck::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 16px;
  bottom: -8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0c0809;
  border-radius: 16px;
  transform: scale(0.97);
}
.cap__deck::after {
  left: 24px;
  right: 24px;
  top: 32px;
  bottom: -16px;
  transform: scale(0.94);
  background: rgba(255, 255, 255, 0.02);
}
.cap-card {
  position: absolute;
  inset: 0;
  border: 1px solid var(--hairline);
  background: rgba(16, 11, 13, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 36px;
  opacity: 0;
  transform: translateY(46px) scale(0.97);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.cap-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}
.cap-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  height: 100%;
}
.cap-panel {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.cap-panel__glow {
  position: absolute;
  inset: -24px;
  background: rgba(178, 58, 72, 0.12);
  filter: blur(60px);
  opacity: 0.7;
}
.cap-panel__bez {
  position: relative;
  border: 1px solid var(--hairline);
  background: linear-gradient(135deg, #171012, #0b090a);
  padding: 8px;
  border-radius: 16px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
}
.cap-panel__scr {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #0e0c0d;
}
.cap-panel__scr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.cap-panel__tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}
.cap-txt__top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cap-txt__ic {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(178, 58, 72, 0.4);
  background: rgba(178, 58, 72, 0.1);
  color: var(--garnet);
  font-size: 20px;
}
.cap-txt__top .mono {
  font-size: 14px;
  color: var(--smoke);
  letter-spacing: 0.2em;
}
.cap-txt h3 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  margin-top: 22px;
  letter-spacing: -0.02em;
}
.cap-txt p {
  color: var(--smoke);
  margin-top: 16px;
  font-size: 16px;
}
.cap-txt ul {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cap-txt li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cap-txt li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--garnet);
  transform: rotate(45deg);
}
.cap__bars {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cap-bar {
  padding: 8px 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.cap-bar span {
  display: block;
  height: 4px;
  width: 24px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
  transition:
    width 0.5s,
    background-color 0.5s;
}
.cap-bar.done span {
  background: rgba(178, 58, 72, 0.4);
}
.cap-bar.active span {
  width: 40px;
  background: var(--garnet);
}
@media (max-width: 900px) {
  .capabilities {
    height: auto !important;
  }
  .cap__sticky {
    position: relative;
    height: auto;
  }
  .cap__deck {
    min-height: 0;
  }
  .cap__deck::before,
  .cap__deck::after {
    display: none;
  }
  .cap-card {
    position: relative !important;
    inset: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-bottom: 24px;
  }
  .cap-card:not(.mshow) {
    display: none;
  }
  .cap-card__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cap__bars {
    display: none;
  }
}

/* STATS */
.stats {
  background: linear-gradient(to bottom, #0c0708, #050505);
  border-top: 1px solid rgba(178, 58, 72, 0.2);
  border-bottom: 1px solid rgba(178, 58, 72, 0.2);
  padding: 76px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(178, 58, 72, 0.15);
  border: 1px solid rgba(178, 58, 72, 0.15);
}
.stat {
  position: relative;
  background: #080506;
  padding: 40px;
}
.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--garnet);
}
.stat__v {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 5vw, 60px);
  color: var(--garnet);
  letter-spacing: -0.02em;
}
.stat__l {
  color: var(--smoke);
  margin-top: 12px;
  font-size: 14px;
  max-width: 16ch;
}
@media (max-width: 640px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* FAQ */
.faq {
  background: linear-gradient(to bottom, #120a0d, #070506, #0d0709);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  max-width: 1100px;
}
.faq__list {
  border-top: 1px solid var(--hairline);
}
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}
.faq__q .plus {
  color: var(--garnet);
  font-size: 22px;
  transition: transform 0.4s;
  flex: none;
}
.faq__item.open .plus {
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__a p {
  color: var(--smoke);
  padding: 0 40px 24px 0;
}
@media (max-width: 900px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* DEMO */
.demo {
  background: linear-gradient(to bottom, #050505, #0e070a, #140a0d);
}
.demo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
  max-width: 1200px;
}
.demo__h2 {
  font-size: clamp(34px, 6vw, 64px);
}
.demo__points {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.demo__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(178, 58, 72, 0.15);
  border: 1px solid rgba(178, 58, 72, 0.4);
  color: var(--garnet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.demo__card {
  position: relative;
  border: 1px solid var(--hairline);
  background: #0c0c0d;
  padding: 40px;
}
.toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--hairline);
  background: var(--hairline);
  margin-bottom: 24px;
}
.toggle__btn {
  padding: 12px;
  background: #0c0c0d;
  color: var(--smoke);
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition:
    background-color 0.3s,
    color 0.3s;
}
.toggle__btn.is-active {
  background: var(--garnet);
  color: #fff;
}
.field {
  display: block;
  margin-bottom: 22px;
}
.field > span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--smoke);
}
.field input {
  width: 100%;
  background: #050505;
  border: 1px solid var(--hairline);
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  font-family: var(--sans);
  transition: border-color 0.3s;
}
.field input:focus {
  outline: none;
  border-color: var(--garnet);
}
.field input::placeholder {
  color: #52525b;
}
.teams {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.team {
  padding: 10px;
  border: 1px solid var(--hairline);
  background: none;
  color: var(--smoke);
  cursor: pointer;
  font-size: 14px;
  transition:
    border-color 0.3s,
    color 0.3s,
    background-color 0.3s;
}
.team.is-active {
  border-color: var(--garnet);
  color: #fff;
  background: rgba(178, 58, 72, 0.1);
}
.demo__success {
  text-align: center;
  padding: 50px 0;
}
.demo__check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--garnet);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 26px;
}
.demo__success h3 {
  font-size: 24px;
  margin-top: 24px;
}
.demo__success p {
  color: var(--smoke);
  margin-top: 12px;
}
@media (max-width: 900px) {
  .demo__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* FOOTER */
.footer {
  background: linear-gradient(to bottom, #070707, #0a0708);
  border-top: 1px solid rgba(178, 58, 72, 0.2);
  padding-top: 90px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand p {
  color: var(--smoke);
  margin-top: 20px;
  max-width: 30ch;
}
.footer__cta {
  display: inline-block;
  margin-top: 30px;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid var(--garnet);
  padding-bottom: 4px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--smoke);
  font-weight: 500;
}
.footer__col a {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}
.footer__col a:hover {
  color: #fff;
}
.footer__bottom {
  margin-top: 80px;
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--smoke);
}
.footer__meta {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 12px;
  color: var(--smoke);
}
.footer__meta span {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
