:root {
  --bg: #08080a;
  --bg-soft: #0d0d10;
  --surface: #121215;
  --surface-2: #18181c;
  --border: #232327;
  --border-soft: #1a1a1e;
  --ivory: #f3f1e9;
  --ivory-dim: #c9c7bd;
  --muted: #87868f;
  --muted-2: #5c5b63;
  --accent: #4d5eff;
  --accent-bright: #7783ff;
  --accent-dim: #2b2f66;
  --ok: #39d98a;
  --warn: #ffb44d;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--accent);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* background grid texture */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    #000 40%,
    transparent 90%
  );
}

/* ambient animated gradient blobs — classic "lava lamp" background technique */
.blob-field {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 820px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.38;
  will-change: transform;
}
.blob-a {
  width: 480px;
  height: 480px;
  top: -160px;
  left: -80px;
  background: radial-gradient(
    circle at 30% 30%,
    var(--accent-bright),
    transparent 70%
  );
  animation: blob-float-a 18s ease-in-out infinite;
}
.blob-b {
  width: 420px;
  height: 420px;
  top: 20px;
  right: -120px;
  background: radial-gradient(circle at 60% 40%, #9aa4ff, transparent 70%);
  animation: blob-float-b 22s ease-in-out infinite;
}
.blob-c {
  width: 360px;
  height: 360px;
  top: 260px;
  left: 38%;
  background: radial-gradient(
    circle at 50% 50%,
    var(--accent),
    transparent 70%
  );
  animation: blob-float-c 26s ease-in-out infinite;
  opacity: 0.24;
}
@keyframes blob-float-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, 30px) scale(1.08);
  }
  66% {
    transform: translate(-20px, 50px) scale(0.94);
  }
}
@keyframes blob-float-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, 40px) scale(1.12);
  }
}
@keyframes blob-float-c {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.15);
  }
}
@media (prefers-reduced-motion: reduce) {
  .blob {
    animation: none;
  }
}

/* button shine sweep on hover — common reusable CTA micro-interaction */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn:hover::after {
  left: 120%;
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 1px;
  box-shadow: 0 0 10px var(--accent);
}
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a {
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--ivory);
}
.nav-cta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ivory);
  color: #0a0a0c;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.15s;
}
.nav-cta:hover {
  background: var(--accent-bright);
  color: #fff;
}
.nav-mobile-hide {
  display: flex;
}
@media (max-width: 860px) {
  .nav-mobile-hide {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  z-index: 1;
  padding: 40px 0 0;
}
.hero-inner {
  max-width: 900px;
}
h1.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 20px 0 22px;
}
h1.hero-title .grad {
  background: linear-gradient(
    100deg,
    var(--accent-bright),
    var(--accent) 60%,
    #9aa4ff
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: var(--ivory-dim);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 28px;
}
/* typewriter status line — classic steps() reveal + blinking cursor */
.type-line {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 18px;
}
.type-line .type-prefix {
  color: var(--accent-bright);
}
.type-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--accent-bright);
  margin-left: 2px;
  animation: cursor-blink 1s steps(1) infinite;
}
@keyframes cursor-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .type-cursor {
    animation: none;
  }
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.15s,
    background 0.15s,
    border-color 0.15s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 8px 24px -8px rgba(77, 94, 255, 0.55);
}
.btn-primary:hover {
  background: var(--accent-bright);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--ivory);
}
.btn-ghost:hover {
  border-color: var(--muted);
  background: var(--surface);
}

/* logo marquee */
.marquee-wrap {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.marquee-track {
  display: flex;
  gap: 72px;
  width: max-content;
  animation: scroll-x 28s linear infinite;
}
@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.marquee-item .sw {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-2);
}

/* ---------- CONSOLE MOCKUP ---------- */
.console-section {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.console {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.7);
}
.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface-2);
}
.console-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a3a40;
}
.console-bar .fname {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.console-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}
@media (max-width: 860px) {
  .console-body {
    grid-template-columns: 1fr;
  }
}
.console-col {
  padding: 22px 22px;
}
.console-col + .console-col {
  border-left: 1px solid var(--border-soft);
}
@media (max-width: 860px) {
  .console-col + .console-col {
    border-left: none;
    border-top: 1px solid var(--border-soft);
  }
}
.console-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.tool-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  margin-bottom: 8px;
  background: var(--bg-soft);
}
.tool-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #0a0a0c;
  flex-shrink: 0;
}
.tool-row .meta {
  min-width: 0;
}
.tool-row .name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ivory);
  letter-spacing: 0.03em;
}
.tool-row .desc {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tool-row .status {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ok);
  white-space: nowrap;
}

.code-block {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--ivory-dim);
  overflow-x: auto;
}
.code-block .k {
  color: var(--accent-bright);
}
.code-block .s {
  color: var(--ok);
}
.code-block .c {
  color: var(--muted-2);
}

.feed-line {
  display: flex;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-soft);
}
.feed-line:last-child {
  border-bottom: none;
}
.feed-line .tag {
  color: var(--ok);
}
.feed-line b {
  color: var(--ivory-dim);
  font-weight: 500;
}

/* ---------- STATS BAND ---------- */
.stats-band {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 52px 0;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.stat-num span {
  color: var(--accent-bright);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
}

/* ---------- SECTION HEADERS ---------- */
.section {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin-top: 16px;
  color: var(--ivory);
}
.section-title em {
  font-style: normal;
  color: var(--muted);
}

/* ---------- WHY ONESOL — numbered feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 64px 1fr 1fr;
  gap: 40px;
  padding: 44px 0;
  border-top: 1px solid var(--border-soft);
  align-items: start;
}
.feature-row:last-child {
  border-bottom: 1px solid var(--border-soft);
}
@media (max-width: 860px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.feature-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-2);
  padding-top: 4px;
}
.feature-text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ivory);
}
.feature-text p {
  color: var(--ivory-dim);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 400px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.feature-list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.feature-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  min-height: 170px;
}

/* mini bar chart visual */
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  padding-top: 10px;
}
.mini-bars i {
  flex: 1;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent-dim));
  border-radius: 3px 3px 0 0;
  display: block;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: var(--bg-soft);
  padding: 30px 26px;
  transition: background 0.15s;
}
.service-card:hover {
  background: var(--surface);
}
.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-bright);
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- HOW WE WORK — process timeline ---------- */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  transform-origin: left center;
}
.process-track .rail-fill {
  position: absolute;
  top: 19px;
  left: 0;
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transition: width 1.4s cubic-bezier(0.16, 0.8, 0.3, 1);
}
.process-track.in .rail-fill {
  width: 100%;
}
.process-step {
  position: relative;
  padding: 0 20px 0 0;
  z-index: 1;
}
.process-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  position: relative;
  transition:
    border-color 0.4s,
    color 0.4s,
    box-shadow 0.4s;
}
.process-step.in .process-dot {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 200px;
}

/* Mobile: swap the horizontal rail-and-dot layout for a card stack.
     (A percentage-height rail on an implicit-height grid container is what
     produced the stray blue block on small screens — cards sidestep it.) */
@media (max-width: 960px) {
  .process-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .process-track::before,
  .process-track .rail-fill {
    display: none;
  }
  .process-step {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    border-left: 2px solid var(--border);
    transition:
      border-left-color 0.4s,
      background 0.4s;
  }
  .process-step.in {
    border-left-color: var(--accent-bright);
    background: var(--surface-2);
  }
  .process-dot {
    margin-bottom: 14px;
  }
  .process-step p {
    max-width: none;
  }
}

/* ---------- CONTACT FORM (Web3Forms) ---------- */
.contact-wrap {
  max-width: 640px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 14px;
  transition:
    border-color 0.15s,
    background 0.15s;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted-2);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
  background: var(--surface-2);
}
.hidden-field {
  display: none;
}
.contact-form .btn {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}
.form-status {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  min-height: 18px;
}
.form-status.ok {
  color: var(--ok);
}
.form-status.err {
  color: #ff6b6b;
}

/* ---------- ASCII SIGNATURE ---------- */
.ascii-section {
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: radial-gradient(
    ellipse 60% 100% at 50% 0%,
    rgba(77, 94, 255, 0.08),
    transparent
  );
}
.ascii-art {
  font-family: var(--font-mono);
  color: var(--accent-bright);
  font-size: clamp(6px, 1.55vw, 13px);
  line-height: 1.15;
  white-space: pre;
  overflow-x: auto;
  margin: 0 auto 40px;
  display: inline-block;
  text-shadow: 0 0 24px rgba(119, 131, 255, 0.35);
}

/* ---------- TRUST / CREDENTIALS ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.cert-list {
  display: flex;
  flex-direction: column;
}
.cert-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 13px;
}
.cert-row:first-child {
  border-top: 1px solid var(--border-soft);
}
.cert-row .name {
  color: var(--ivory);
}
.cert-row .status {
  color: var(--ok);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-copy p {
  color: var(--ivory-dim);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 440px;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  padding: 40px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
.quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 500;
  max-width: 820px;
  margin: 0 auto 28px;
  line-height: 1.4;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.quote-attr {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.quote-note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted-2);
  margin-top: 26px;
  letter-spacing: 0.04em;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(77, 94, 255, 0.06));
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 30px;
}
.final-cta .btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--border-soft);
  padding: 70px 0 34px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 11px;
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--ivory);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .copy {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted-2);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  font-family: var(--font-mono);
  transition: 0.15s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee-track {
    animation: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
