:root {
  --bg: #0a0b10;
  --bg2: #12141d;
  --brand: #0055ff;
  --brand-light: #5b8bff;
  --brand-lighter: #8fb0ff;
  --cyan: #37c5ff;
  --text: #f8f9fa;
  --slate-200: #dfe3ee;
  --slate-300: #c3cadb;
  --slate-400: #9aa4bb;
  --slate-500: #6b7591;
  --slate-600: #4b5573;
  --line: rgba(255, 255, 255, 0.1);
  --maxw: 1400px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.font-mono {
  font-family: "JetBrains Mono", monospace;
}
::selection {
  background: rgba(0, 85, 255, 0.35);
  color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #1f2430;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}
.container-narrow {
  max-width: 1100px;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' 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");
}
.grid-lines {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.abs-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
}
.grad {
  background: linear-gradient(120deg, #f8f9fa 25%, #7ea0ff 65%, #37c5ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.glow-blue {
  box-shadow: 0 0 60px rgba(0, 85, 255, 0.25);
}
i[data-lucide] {
  width: 1em;
  height: 1em;
  stroke-width: 1.7;
}

/* headings */
h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.overline {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--brand-light);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.overline-22 {
  letter-spacing: 0.22em;
}
.overline-line {
  width: 32px;
  height: 1px;
  background: var(--brand-light);
}
.sec-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
}
.sec-head-lg h2,
.sec-head-wide h2 {
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 300;
}
.sec-head {
  max-width: 42rem;
  margin-bottom: 56px;
}
.sec-head-wide {
  max-width: 42rem;
}
.sec-lead {
  margin-top: 20px;
  font-size: 1.125rem;
  color: var(--slate-300);
  line-height: 1.7;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  padding: 14px 28px;
  cursor: pointer;
  transition:
    filter 0.3s,
    transform 0.3s,
    background-color 0.3s,
    border-color 0.3s;
  border: 1px solid transparent;
}
.btn i {
  font-size: 16px;
}
.btn-sm {
  padding: 10px 20px;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-block {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background-color 0.5s,
    border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 11, 16, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  position: relative;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
}
.logo-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--brand);
  transform: rotate(45deg);
  border-radius: 2px;
  transition: transform 0.5s;
}
.logo:hover .logo-mark::before {
  transform: rotate(135deg);
}
.logo-mark-sm {
  width: 28px;
  height: 28px;
}
.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
}
.logo-text {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.logo-accent {
  color: var(--brand-light);
}
.nav-links {
  display: none;
  gap: 36px;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate-400);
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 150px;
}
.mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
}
.hero-glow {
  position: absolute;
  top: -30%;
  left: -25%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: rgba(0, 85, 255, 0.1);
  filter: blur(140px);
}
.hero-grid-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 7fr 5fr;
  }
}
.hero-h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 300;
  line-height: 0.98;
  margin: 8px 0 0;
}
.mask {
  display: block;
  overflow: hidden;
}
.mask-inner {
  display: block;
  transform: translateY(110%);
  animation: maskUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mask-inner.grad {
  font-weight: 400;
}
@keyframes maskUp {
  to {
    transform: translateY(0);
  }
}
.hero-sub {
  margin-top: 32px;
  max-width: 34rem;
  font-size: 1.125rem;
  color: var(--slate-300);
  line-height: 1.7;
}
@media (min-width: 1024px) {
  .hero-sub {
    font-size: 1.25rem;
  }
}
.hero-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-audience {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate-400);
}
.hero-audience .sep {
  color: #3a4157;
}
.hero-media {
  position: relative;
  display: none;
}
@media (min-width: 1024px) {
  .hero-media {
    display: block;
  }
}
.hero-media-glow {
  position: absolute;
  inset: -24px;
  background: rgba(0, 85, 255, 0.2);
  filter: blur(80px);
  border-radius: 50%;
}
.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.hero-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.1);
}
.hero-frame-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), transparent 55%);
}
.hero-frame-cap {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
}
.hero-frame-cap .live {
  color: var(--cyan);
}
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--slate-500);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.3s;
}
.scroll-cue:hover {
  color: #fff;
}
.scroll-cue i {
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* MARQUEE */
.marquee {
  background: var(--brand);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--brand);
  border-bottom: 1px solid var(--brand);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
}
.marquee-track .item {
  padding: 0 32px;
}
.marquee-track .star {
  color: rgba(10, 11, 16, 0.5);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* SECTIONS */
.section {
  position: relative;
  padding: 96px 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 128px 0;
  }
}
.section-bordered {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* JOURNEYS */
.journeys {
  display: flex;
  flex-direction: column;
  gap: 112px;
}
.journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .journey {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.journey.flip .j-media {
  order: 2;
}
.j-media {
  position: relative;
}
.j-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.j-media-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.1);
  transition:
    filter 0.7s,
    transform 0.7s;
}
.j-media-frame:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}
.j-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 16, 0.8), transparent 55%);
}
.j-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.j-num {
  font-family: "Outfit", sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}
.j-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-top: 8px;
}
.j-copy {
  margin-top: 20px;
  font-size: 1.125rem;
  color: var(--slate-300);
  line-height: 1.7;
  max-width: 32rem;
}
.j-steps {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--slate-300);
  transition:
    background-color 0.3s,
    border-color 0.3s,
    color 0.3s;
  cursor: default;
}
.chip:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.j-steps .sep {
  color: #3a4157;
  font-size: 13px;
}

/* ECOSYSTEM */
.eco-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 40vw;
  background: rgba(0, 85, 255, 0.08);
  filter: blur(130px);
  border-radius: 50%;
}
.ecosystem .container {
  position: relative;
}
.eco-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .eco-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.eco-line {
  display: none;
}
@media (min-width: 768px) {
  .eco-line {
    display: block;
    position: absolute;
    top: 60px;
    left: 16%;
    right: 16%;
    height: 1px;
  }
}
.eco-line-dash {
  display: block;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--brand) 0,
    var(--brand) 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0.5;
}
.eco-card {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(18, 20, 29, 0.7);
  backdrop-filter: blur(18px);
  padding: 32px;
  border-radius: 6px;
  transition: border-color 0.4s;
}
.eco-card:hover {
  border-color: rgba(0, 85, 255, 0.5);
}
.eco-ico {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 6px;
  margin-bottom: 24px;
  transition: border-color 0.4s;
}
.eco-card:hover .eco-ico {
  border-color: rgba(0, 85, 255, 0.6);
}
.eco-ico i {
  font-size: 24px;
  color: var(--brand-light);
}
.eco-tier {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate-500);
  margin-bottom: 8px;
}
.eco-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.eco-card p {
  font-size: 15px;
  color: var(--slate-300);
  line-height: 1.6;
}
.eco-foot {
  margin-top: 48px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate-400);
}

/* CAPABILITIES */
.cap-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 40vw;
  background: rgba(0, 85, 255, 0.08);
  filter: blur(150px);
  border-radius: 50%;
  pointer-events: none;
}
.capabilities .container {
  position: relative;
}
.cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.cap-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  transition:
    transform 0.4s,
    border-color 0.4s,
    box-shadow 0.4s;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(0, 85, 255, 0.1), transparent 55%),
    linear-gradient(160deg, #171b28, #10131c);
}
.cap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 85, 255, 0.5);
  box-shadow: 0 20px 50px -20px rgba(0, 85, 255, 0.5);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(0, 85, 255, 0.2), transparent 55%),
    linear-gradient(160deg, #1c2130, #12161f);
}
.cap-idx {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--slate-500);
  transition: color 0.3s;
}
.cap-card:hover .cap-idx {
  color: var(--brand-lighter);
}
.win {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0b0d14;
  aspect-ratio: 16/10;
}
.win-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.win-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.win-url {
  margin-left: 12px;
  height: 8px;
  width: 96px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
}
.win-img {
  width: 100%;
  height: calc(100% - 36px);
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s;
  image-rendering: auto;
}
.cap-card:hover .win-img {
  transform: scale(1.03);
}
.shimmer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60%;
  transform: translateX(-160%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 170, 255, 0.12),
    transparent
  );
  pointer-events: none;
}
.cap-card:hover .shimmer {
  animation: shimmer 1.1s ease;
}
@keyframes shimmer {
  to {
    transform: translateX(220%);
  }
}
.cap-body {
  padding: 24px 8px 12px;
}
.cap-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cap-ico {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 85, 255, 0.12);
  border: 1px solid rgba(0, 85, 255, 0.25);
  transition:
    background-color 0.3s,
    border-color 0.3s;
  flex-shrink: 0;
}
.cap-card:hover .cap-ico {
  background: var(--brand);
  border-color: var(--brand);
}
.cap-ico i {
  color: var(--brand-lighter);
  font-size: 16px;
  transition: color 0.3s;
}
.cap-card:hover .cap-ico i {
  color: #fff;
}
.cap-head h3 {
  font-size: 1.125rem;
  font-weight: 500;
  flex: 1;
}
.cap-arrow {
  color: var(--slate-600);
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    color 0.3s;
}
.cap-card:hover .cap-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--brand-lighter);
}
.cap-body p {
  font-size: 15px;
  color: var(--slate-300);
  line-height: 1.6;
}

/* ARCHITECTURE */
.arch {
  background: #0c0d14;
}
.arch-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .arch-layout {
    grid-template-columns: 4fr 8fr;
  }
}
.arch-intro {
  align-self: start;
}
@media (min-width: 1024px) {
  .arch-intro {
    position: sticky;
    top: 112px;
  }
}
.arch-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.arch-lead {
  margin-top: 24px;
  font-size: 1.125rem;
  color: var(--slate-300);
  line-height: 1.7;
}
.arch-row {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  transition: background-color 0.3s;
}
.arch-row:first-child {
  border-top: 0;
}
.arch-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.arch-n {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--slate-600);
  width: 40px;
  flex-shrink: 0;
  padding-top: 5px;
}
.arch-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .arch-main {
    flex-direction: row;
    align-items: baseline;
    gap: 32px;
  }
}
.arch-main h3 {
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .arch-main h3 {
    width: 256px;
    flex-shrink: 0;
  }
}
.arch-row:hover h3 {
  color: var(--brand-light);
}
.arch-main p {
  font-size: 15px;
  color: var(--slate-300);
  line-height: 1.6;
}

/* STATS */
.stats-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  height: 40vw;
  background: rgba(0, 85, 255, 0.1);
  filter: blur(150px);
  border-radius: 50%;
}
.stats .container {
  position: relative;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}
.stat-num {
  font-family: "Outfit", sans-serif;
  font-size: clamp(3rem, 5vw, 3.75rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}
.stat-num .suf {
  color: var(--brand-light);
}
.stat-label {
  margin-top: 16px;
  font-size: 15px;
  color: var(--slate-300);
  line-height: 1.6;
  max-width: 200px;
}
.value-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .value-layout {
    grid-template-columns: 4fr 8fr;
  }
}
.value-head h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 40px;
}
@media (min-width: 640px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.value-item {
  display: flex;
  gap: 16px;
}
.value-check {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: rgba(0, 85, 255, 0.15);
  border: 1px solid rgba(0, 85, 255, 0.4);
}
.value-check i {
  font-size: 12px;
  color: var(--brand-light);
}
.value-item p {
  font-size: 15px;
  color: var(--slate-200);
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 0;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-q h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--slate-300);
  transition: color 0.3s;
}
.faq-item.open .faq-q h3,
.faq-q:hover h3 {
  color: #fff;
}
.faq-plus {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition:
    transform 0.3s,
    border-color 0.3s,
    background-color 0.3s;
}
.faq-plus i {
  color: var(--brand-light);
  font-size: 16px;
}
.faq-item.open .faq-plus {
  transform: rotate(45deg);
  border-color: rgba(0, 85, 255, 0.6);
  background: rgba(0, 85, 255, 0.1);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a p {
  padding: 0 56px 28px 0;
  font-size: 15px;
  color: var(--slate-300);
  line-height: 1.7;
  max-width: 42rem;
}

/* CTA */
.cta-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vw;
  background: rgba(0, 85, 255, 0.12);
  filter: blur(160px);
  border-radius: 50%;
}
.cta {
  border-top: 1px solid var(--line);
}
.cta-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) {
  .cta-layout {
    grid-template-columns: 1fr 1fr;
  }
}
.cta-h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 0.95;
}
.cta-lead {
  margin-top: 32px;
  font-size: 1.125rem;
  color: var(--slate-300);
  line-height: 1.7;
  max-width: 28rem;
}
.cta-tags {
  margin-top: 40px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate-400);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-form {
  border: 1px solid var(--line);
  background: rgba(18, 20, 29, 0.7);
  backdrop-filter: blur(18px);
  padding: 32px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .cta-form {
    padding: 40px;
  }
}
.field {
  position: relative;
}
.field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0;
  color: #fff;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s;
}
.field input:focus {
  border-color: var(--brand);
}
.field label {
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--slate-500);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  pointer-events: none;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: -14px;
  font-size: 10px;
  color: var(--brand-light);
}
.form-msg {
  font-size: 13px;
  color: var(--brand-light);
  min-height: 16px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate-600);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .mask-inner {
    animation: none;
    transform: none;
  }
}
