@charset "utf-8";

/*
  style_merged_new.css
  - merged from nexus-style.css + hero-style.css (your originals)
  - plus additional n8n-like layout + modern card system
  - safe to use as a new file; does not modify originals
*/


/* =========================
   RESET / BASE
========================= */
* {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

:root {
  /* Legacy tokens retained for backward compatibility */
  --primary-grey: #e5e7eb;
  --primary-orange: #f97316;
  --primary-purple: #7c3aed;
  --secondary-amber: #fbbf24;
  --dark-bg: #1a0b2e;
  --darker-bg: #0f051a;
  --card-bg: rgba(229, 231, 235, 0.03);
  --border-color: rgba(229, 231, 235, 0.2);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --primary-cyan: #00ffff;
  --primary-pink: #ff00ff;
  --shadow2: 0 16px 40px rgba(0, 0, 0, 0.35);
  --radius2: 18px;
}

/* Basic table styling from original */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
}

table,
th,
td {
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  text-align: left;
  color: var(--text-primary);
  font-size: var(--fs-body);
}

th {
  background: var(--card-bg);
}

p {
  margin-bottom: 1.25rem;
  color: var(--text);
  line-height: 1.0;
  font-size: var(--fs-body);
}

/* =========================
   ORBS (original)
========================= */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -4;
}

.orb1-2 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -150px;
  animation-delay: 0s;
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 60, 170, 0.35), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(170, 70, 255, 0.28), transparent 60%),
    radial-gradient(circle at center, rgba(200, 60, 255, 0.5), rgba(5, 8, 18, 0.85));
  filter: blur(50px);
}

.orb2-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: -200px;
  animation-delay: 5s;
  background:
    radial-gradient(circle at 40% 40%, rgba(47, 248, 240, 0.35), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(138, 79, 255, 0.3), transparent 60%),
    radial-gradient(circle at center, rgba(58, 139, 255, 0.5), rgba(5, 8, 18, 0.9));
  filter: blur(50px);
}

.orb3-4 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  animation-delay: 10s;
  background:
    radial-gradient(circle at 55% 40%, rgba(170, 70, 255, 0.4), transparent 60%),
    radial-gradient(circle at 40% 70%, rgba(120, 70, 255, 0.35), transparent 60%),
    url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.95" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.15"/></svg>');
  background-size: cover;
  filter: blur(60px);
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(100px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-50px, 100px) scale(0.9);
  }
}

/* =========================
   NAVIGATION (original kept + n8n polish)
========================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: rgb(11, 14, 20, 0.2);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 10000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Site nav right group ── */
.site-topnav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-topnav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 9px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(233, 238, 246, 0.62);
  border: 1px solid transparent;
  transition: color 140ms ease, background 140ms ease, border-color 140ms ease;
  white-space: nowrap;
}

.site-topnav__link:hover {
  color: rgba(233, 238, 246, 0.95);
  background: rgba(233, 238, 246, 0.05);
  border-color: rgba(233, 238, 246, 0.1);
}

.site-topnav__link svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.site-topnav__link:hover svg {
  opacity: 1;
}

.site-topnav__sep {
  width: 1px;
  height: 16px;
  background: rgba(233, 238, 246, 0.1);
  flex-shrink: 0;
  margin: 0 4px;
}

.site-topnav__ai {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-topnav__ai a {
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 8px;
  opacity: 0.5;
  transition: opacity 140ms ease, background 140ms ease, transform 140ms ease;
}

.site-topnav__ai a:hover {
  opacity: 1;
  background: rgba(233, 238, 246, 0.05);
  transform: translateY(-1px);
}

.site-topnav__ai img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

@media (max-width: 680px) {
  .site-topnav__ai-label {
    display: none;
  }
}

@media (max-width: 540px) {
  .site-topnav__link span {
    display: none;
  }

  .site-topnav__link {
    padding: 7px;
  }
}

@media (max-width: 400px) {
  .site-topnav__ai {
    display: none;
  }

  .site-topnav__sep {
    display: none;
  }
}

/* Logo (original) */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 20px var(--primary-cyan);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo::before {
  content: '>';
  margin-right: 0.5rem;
  color: var(--primary-cyan);
  transition: 0.3s ease;
}

.logo::after {
  content: '_';
  animation: blink 1s infinite;
  color: var(--primary-cyan);
}


@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* Mobile Menu Button (original) */
.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  /* color: var(--primary-cyan); */
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.mobile-menu-button:hover {
  /* color: var(--primary-purple); */
  color: #ffffff;
  transform: scale(1.1);
}

.hamburger {
  position: relative;
  width: 25px;
  height: 20px;
  margin: auto;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--grad-button);
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.25s ease-in-out;
  box-shadow: 0 0 5px var(--primary-cyan);
  transform-origin: center;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

.mobile-menu-button.active .hamburger span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.mobile-menu-button.active .hamburger span:nth-child(2) {
  opacity: 0;
  left: -25px;
}

.mobile-menu-button.active .hamburger span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

/* Mobile Menu (original base + n8n-like glass) */
.mobile-menu {
  position: fixed;
  top: 68px;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: calc(100vh - 68px);
  z-index: 9999;
  backdrop-filter: blur(20px);
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: rgba(11, 14, 20, 0.65);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  border: none;
  top: 68px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(1px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  padding: 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Your markup has an empty button — give it a visible X via CSS */
#mobileMenuClose {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--primary-cyan);
  font-size: 1.25rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: all 0.25s ease;
  position: relative;
}

#mobileMenuClose::before {
  content: "✕";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

#mobileMenuClose:hover {
  color: var(--primary-orange);
  transform: rotate(8deg);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-nav a {
  display: block;
  padding: 1.4rem 2rem;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}

.mobile-menu-nav a:hover {
  background: rgba(0, 255, 255, 0.05);
  color: var(--text);
}

.hero__image {
  border: none;
  border-radius: 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 88% 82% at 52% 48%, black 62%, transparent 100%);
  mask-image: radial-gradient(ellipse 88% 82% at 52% 48%, black 62%, transparent 100%);
}

.uma__image {
  border: none;
  border-radius: 0;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 88% 82% at 52% 48%, black 62%, transparent 100%);
  mask-image: radial-gradient(ellipse 88% 82% at 52% 48%, black 62%, transparent 100%);
}

@media (max-width: 860px) {
  .hero__image {
    width: 70%;
  }
}

/* ── Site top nav (index) ── */

.site-topnav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-topnav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 9px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(233, 238, 246, 0.62);
  border: 1px solid transparent;
  transition: color 140ms ease, background 140ms ease, border-color 140ms ease;
  white-space: nowrap;
}

.site-topnav__link:hover {
  color: rgba(233, 238, 246, 0.95);
  background: rgba(233, 238, 246, 0.05);
  border-color: rgba(233, 238, 246, 0.1);
}

.site-topnav__link svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.site-topnav__link:hover svg {
  opacity: 1;
}

.site-topnav__sep {
  width: 1px;
  height: 16px;
  background: rgba(233, 238, 246, 0.1);
  flex-shrink: 0;
  margin: 0 4px;
}

.site-topnav__ai {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-topnav__ai a {
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 8px;
  opacity: 0.5;
  transition: opacity 140ms ease, background 140ms ease, transform 140ms ease;
}

.site-topnav__ai a:hover {
  opacity: 1;
  background: rgba(233, 238, 246, 0.05);
  transform: translateY(-1px);
}

.site-topnav__ai img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

@media (max-width: 540px) {
  .site-topnav__link span { display: none; }
  .site-topnav__link { padding: 7px; }
}

@media (max-width: 400px) {
  .site-topnav__ai { display: none; }
  .site-topnav__sep { display: none; }
}


.fork-rail {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  margin-top: 36px;
  gap: 0;
}

.fork-card {
  padding: 28px;
  border-radius: 22px;
  background: none;
  border: none;
}

.fork-card--base {
  opacity: 0.72;
}

.fork-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  background: rgba(11, 13, 16, 0.28);
  margin-bottom: 14px;
  color: rgba(233, 238, 246, 0.55);
}

.fork-card__tag--active {
  background: rgba(34, 211, 238, 0.09);
  color: rgba(34, 211, 238, 0.92);
}

.fork-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(233, 238, 246, 0.78);
  line-height: 1.6;
}

.fork-card li+li {
  margin-top: 8px;
}

/* Center connector node */
.fork-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.fork-connector::before,
.fork-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: calc(50% + 2px);
}

.fork-connector::before {
  right: 50%;
  background: linear-gradient(90deg, rgba(233, 238, 246, 0.12), rgba(34, 211, 238, 0.3));
}

.fork-connector::after {
  left: 50%;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.4), rgba(167, 139, 250, 0.4));
}

.fork-connector__node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-1);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #06080f;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.28), 0 0 60px rgba(167, 139, 250, 0.15);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.fork-connector__label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(233, 238, 246, 0.38);
  position: relative;
  z-index: 3;
  white-space: nowrap;
}

/* =============================================
       BORDER + BACKGROUND REMOVALS — all boxes except #resources
       ============================================= */

/* Security section signal boxes */
.signal-box--small {
  border: none;
  background: none;
}

/* UMA panel — keep resources panel untouched */
#uma .cta-panel {
  border: none;
  box-shadow: none;
  background: none;
}

#uma .cta-panel::before {
  display: none;
}

/* =============================================
       SECURITY SECTION — numbered 3-col layout
       ============================================= */

.sec-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  margin-top: 52px;
}

.sec-feature {
  position: relative;
  padding-top: 28px;
  display: grid;
  gap: 14px;
  align-content: start;
}

/* Gradient top accent line */
.sec-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-1);
  opacity: 0.55;
}

.sec-feature__num {
  display: block;
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sec-feature h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(233, 238, 246, 0.92);
}

.sec-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =============================================
       EVOLUTION TRACK — OpenClaw → Animus timeline
       ============================================= */

.evo-track {
  margin-top: 48px;
  max-width: 620px;
  display: grid;
  gap: 0;
}

.evo-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0;
}

.evo-row__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3px;
}

/* Vertical rail connecting nodes */
.evo-rail {
  width: 1px;
  flex: 1;
  min-height: 20px;
  background: linear-gradient(180deg,
      rgba(34, 211, 238, 0.22),
      rgba(167, 139, 250, 0.14));
}

.evo-dot {
  flex-shrink: 0;
  border-radius: 50%;
}

/* Source: OpenClaw — muted outline circle */
.evo-dot--source {
  width: 16px;
  height: 16px;
  background: rgba(233, 238, 246, 0.08);
  border: 1px solid rgba(233, 238, 246, 0.28);
}

/* Addition steps — small gradient dots */
.evo-dot--step {
  width: 10px;
  height: 10px;
  background: var(--grad-1);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.4);
  margin-top: 5px;
}

/* Result: Animus — glowing gradient dot */
.evo-dot--result {
  width: 20px;
  height: 20px;
  background: var(--grad-1);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.45),
    0 0 44px rgba(167, 139, 250, 0.2);
}

.evo-row__body {
  padding: 0 0 30px 16px;
}

.evo-row__body--last {
  padding-bottom: 0;
}

/* Source label */
.evo-label {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(233, 238, 246, 0.55);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

/* Result label — gradient text */
.evo-label--result {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 900;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}

/* Step headings */
.evo-step-title {
  display: block;
  font-weight: 700;
  font-size: 0.94rem;
  color: rgba(233, 238, 246, 0.9);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.evo-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

/* Mobile stacking */
@media (max-width: 780px) {
  .sec-features {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Mobile stacking */
@media (max-width: 780px) {
  .fork-rail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fork-card--base {
    order: 1;
  }

  .fork-connector {
    order: 2;
    flex-direction: row;
    padding: 18px 0;
    gap: 10px;
  }

  .fork-connector::before,
  .fork-connector::after {
    display: none;
  }

  .fork-card--product {
    order: 3;
  }
}



/* Desktop note from original */
@media (min-width: 769px) {
  .mobile-menu-button {
    display: block !important;
  }
}

/* =========================
   HERO (merged from hero-style + n8n layout)
========================= */
.index-hero-animated-fading {
  position: relative;
  width: 100%;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  z-index: 5;
  padding-top: 110px;
  padding-bottom: 40px;
}

.index-hero-animated-fading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--grad3);
  background-size: 300% 300%;
  animation: gradientShift 12s ease-in-out infinite;
  opacity: 0.22;
}

.index-hero-animated-fading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 30%, rgba(47, 248, 240, 0.16), transparent 60%);
}

.index-hero-animated-fading .fade-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(5, 8, 18, 0.0) 10%,
      rgba(5, 8, 18, 0.30) 40%,
      rgba(5, 8, 18, 0.35) 50%,
      rgba(5, 8, 18, 0.30) 60%,
      rgba(5, 8, 18, 0.0) 90%,
      transparent 100%);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.container--uma {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.hero-static-left {
  margin-top: 0;
  margin-left: 0;
  max-width: 100%;
  pointer-events: auto;
  z-index: 2;
}

.hero-static-left h1 {
  font-size: var(--fs-hero);
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: -0.03em;
}

.hero-static-left h1 span {
  background: linear-gradient(90deg, #3A8BFF, #8A4FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-static-sub {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 720px;
}

.hero-static-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* hero buttons (from original) */
.hero-btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.hero-btn.primary {
  background: var(--grad-button);
  color: #050812;
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #EAF0FF;
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Quick strip cards inside hero */
.quick-strip {
  margin-top: 26px;
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow2);
}

/* Right panels */
.hero-right {
  display: grid;
  gap: 12px;
  align-content: start;
}


.codebox {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 8, 18, 0.55);
  overflow: hidden;
}

.codebox pre {
  margin: 0;
  padding: 14px;
  font-size: 0.9rem;
  color: rgba(234, 240, 255, 0.86);
  overflow-x: auto;
  line-height: 1.5;
}

/* btn-terciary (original) */
.btn-terciary {
  background: transparent;
  color: var(--primary-cyan);
  padding: 1.0rem 1.4rem;
  border: 2px solid var(--primary-cyan);
  text-decoration: none;
  font-weight: 800;
  width: auto;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}

.btn-terciary:hover {
  background: var(--primary-cyan);
  color: var(--darker-bg);
  box-shadow: 0 0 30px var(--primary-cyan);
}

/* =========================
   SECTIONS 
========================= */
.section-divider {
  padding: 26px 0 0;
  text-align: center;
}

.arrow-down {
  opacity: 0.55;
  font-size: 2rem;
  transform: translateY(-6px);
}

.section-head {
  max-width: 900px;
  margin-bottom: 22px;
}

.section-h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-lead {
  margin-top: 14px;
  color: rgba(234, 240, 255, 0.72);
  max-width: 900px;
}

/* 2x2 grid cards */
.grid-2x2 {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card-soft {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card-soft:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow2);
}

.card-soft h3 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: rgba(234, 240, 255, 0.92);
}

.card-soft p {
  color: rgba(234, 240, 255, 0.72);
}

/* =========================
   TABS (original + polish)
========================= */
.tabs-section.tabs-mesh {
  margin-top: 16px;
}

.tabs-menu {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  color: #C8CEDD;
  font-size: var(--fs-body);
  transition: 0.25s ease;
}

.tab-btn.active {
  background: var(--grad-button);
  color: #050812;
}

.tab-pane {
  display: none;
  animation: tabFadeIn 0.3s ease-out;
}

.tab-pane.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.styled-list {
  padding-left: 20px;
  color: #C8CEDD;
}

.footnote {
  margin-top: 10px;
  color: rgba(234, 240, 255, 0.60);
}

/* =========================
   CONTEXT vs MEMORY (original kept)
========================= */
.cm-divided-section {
  padding: 96px 0;
  text-align: center;
  color: #EAF0FF;
}

.cm-header p {
  max-width: 850px;
  margin: 0 auto 40px;
  color: #C8CEDD;
}

.cm-two-col-wrapper {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: start;
  gap: 20px;
  margin-bottom: 40px;
}

.cm-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.cm-item-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-align: left;
}

.cm-col h3 {
  margin-bottom: 12px;
}

.cm-final-note {
  max-width: 850px;
  margin: 0 auto;
  color: #C8CEDD;
  font-size: var(--fs-body);
  line-height: 1.6;
}

/* =========================
   UMA teaser (new)
========================= */
.uma-teaser {
  padding-top: 64px;
}

.teaser-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(900px 360px at 10% 10%, rgba(58, 139, 255, 0.16), transparent 60%),
    radial-gradient(900px 360px at 90% 0%, rgba(47, 248, 240, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.03);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  font-size: var(--fs-body);
  color: rgba(234, 240, 255, 0.92);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.teaser-actions {
  margin-top: 16px;
}

.note-box {
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(5, 8, 18, 0.35);
}

.note-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.note-text {
  color: rgba(234, 240, 255, 0.72);
}

.note-text a {
  color: var(--primary-cyan);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 255, 255, 0.35);
}

/* Pricing / Stats / Contact previews */
.pricing-cta {
  margin-top: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.stat-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.stat-k {
  color: rgba(234, 240, 255, 0.72);
  font-size: var(--fs-body);
  margin-bottom: 6px;
}

.stat-v {
  font-weight: 800;
}

.contact-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* UMA button from your original section */
.uma-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 10px;
  background: var(--grad-button);
  color: #050812;
  text-decoration: none;
  font-weight: 800;
}

/* =========================
   FOOTER (original)
========================= */

.copyright {
  width: 100%;
  height: 33px;
  text-align: center;
  line-height: 33px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 40px;
}


.ai-icon {
  width: 35px;
  height: 35px;
  margin-right: 5px;
  vertical-align: middle;
}

.ai-icon2 {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  vertical-align: middle;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-links {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 0.5rem;
}

.footer-links a:hover {
  color: var(--primary-cyan);
  text-shadow: 0 0 10px var(--primary-cyan);
  transform: translateY(-2px);
}

.footer-separator {
  color: var(--primary-cyan);
  opacity: 0.5;
  font-size: 0.8rem;
  margin: 0 0.2rem;
}

.footer-bottom {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .teaser-card {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .grid-2x2 {
    grid-template-columns: 1fr;
  }

  .cm-two-col-wrapper {
    grid-template-columns: 1fr;
  }

  .cm-divider {
    display: none;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 90%;
    max-width: none;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Space+Grotesk:wght@500;600;700&family=Orbitron:wght@700;900&display=swap");

:root {
  --bg: #0b0d10;
  --bg-2: #0f131a;
  --text: #e9eef6;
  --muted: rgba(233, 238, 246, 0.76);
  --faint: rgba(233, 238, 246, 0.12);
  --border: rgba(233, 238, 246, 0.14);
  --border-strong: rgba(233, 238, 246, 0.22);

  --shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 28px;
  --space-6: 40px;
  --space-7: 56px;
  --space-8: 72px;


  --grad-01: linear-gradient(90deg,
      #ff5500 0%,
      #e63e3e 15%,
      #c42157 35%,
      #8b2d7a 65%,
      #5a1b5c 100%);
  --grad-02: linear-gradient(90deg,
      #ff3300 0%,
      #ff5a00 20%,
      #d93d42 40%,
      #8b2d7a 70%,
      #4a1652 100%);
  --grad-button: linear-gradient(135deg,
      #ff4400 0%,
      #ff6b1a 25%,
      #d93d42 50%,
      #9d2d7d 75%,
      #5a1652 100%);
  --grad-block: linear-gradient(45deg,
      #ff3300 0%,
      #e63e3e 20%,
      #a83d60 50%,
      #6b2d7a 80%,
      #4a1652 100%);
  --grad-1: linear-gradient(135deg, #ff4fd8 0%, #a78bfa 30%, #22d3ee 62%, #34d399 100%);

  --grad-2: linear-gradient(135deg,
      rgba(255, 79, 216, 0.16),
      rgba(167, 139, 250, 0.16),
      rgba(34, 211, 238, 0.1),
      rgba(52, 211, 153, 0.1));
  --grad-border: linear-gradient(90deg, #ff4fd8, #a78bfa, #22d3ee, #34d399, #ff4fd8);
  --grad-3: radial-gradient(600px 300px at 20% 10%, rgba(167, 139, 250, 0.22), transparent 60%),
    radial-gradient(520px 280px at 90% 35%, rgba(34, 211, 238, 0.22), transparent 60%),
    radial-gradient(520px 320px at 55% 95%, rgba(52, 211, 153, 0.18), transparent 60%),
    radial-gradient(560px 340px at 35% 85%, rgba(255, 79, 216, 0.12), transparent 60%);

  --focus: rgba(34, 211, 238, 0.85);
  --focus-soft: rgba(34, 211, 238, 0.35);

  --font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  --font-display: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --font-title: "Orbitron", "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}

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

html {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: linear-gradient(to right, rgba(233, 238, 246, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(233, 238, 246, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.26;
  mask-image: radial-gradient(600px 420px at 30% 10%, black 20%, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background: var(--grad-3);
  filter: blur(0px);
}

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

a:hover {
  text-decoration: none;
}

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

strong {
  font-weight: 600;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 999;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(15, 19, 26, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  left: 10px;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--focus-soft);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.h1 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-3);
  text-shadow: 0 18px 70px rgba(34, 211, 238, 0.12), 0 10px 50px rgba(255, 79, 216, 0.08);
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}

.lead {
  margin: 0 0 var(--space-5);
  color: var(--muted);
  font-size: var(--fs-body);
}

.muted {
  color: var(--muted);
}

.text-gradient {
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 26px rgba(34, 211, 238, 0.16), 0 0 34px rgba(255, 79, 216, 0.12);

}



.eyebrow {
  margin: 0 0 var(--space-2);
  color: rgba(233, 238, 246, 0.76);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 13, 16, 0.35);
  border-bottom: 1px solid rgba(233, 238, 246, 0.06);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 13, 16, 0.82);
  border-bottom-color: rgba(233, 238, 246, 0.14);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--grad-2);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  display: grid;
  place-items: center;
  color: rgba(233, 238, 246, 0.9);
}

.brand__text {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav__back {
  display: none;
  color: rgba(233, 238, 246, 0.78);
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.nav__back:hover {
  border-color: var(--border);
  background: rgba(15, 19, 26, 0.45);
}

.nav__links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.nav__link {
  color: rgba(233, 238, 246, 0.78);
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.nav__link:hover {
  color: rgba(233, 238, 246, 0.92);
  border-color: var(--border);
  background: rgba(15, 19, 26, 0.45);
}

.nav__cta {
  display: none;
  justify-content: end;
}

.nav__toggle {
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15, 19, 26, 0.45);
  color: rgba(233, 238, 246, 0.9);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.nav__toggle-lines {
  width: 18px;
  height: 12px;
  position: relative;
}

.nav__toggle-lines::before,
.nav__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(233, 238, 246, 0.86);
}

.nav__toggle-lines::before {
  top: 0;
  box-shadow: 0 5px 0 rgba(233, 238, 246, 0.86);
}

.nav__toggle-lines::after {
  bottom: 0;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  border: 0;
  padding: 0;
  z-index: 1;
}

.nav-drawer__panel {
  position: absolute;
  top: 10px;
  right: 10px;
  width: min(420px, calc(100vw - 20px));
  max-height: calc(100vh - 20px);
  overflow: auto;
  background: rgba(15, 19, 26, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: var(--space-4);
  z-index: 2;
}

.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.nav-drawer__title {
  font-weight: 650;
  letter-spacing: -0.01em;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(11, 13, 16, 0.25);
  color: rgba(233, 238, 246, 0.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
}

.nav-drawer__body {
  display: grid;
  gap: 8px;

  color: rgba(233, 238, 246, 0.92);
}

.nav-drawer__link {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: rgba(233, 238, 246, 0.88);
  background: rgba(11, 13, 16, 0.22);
}

.nav-drawer__link:hover {
  border-color: var(--border);
  background: rgba(11, 13, 16, 0.35);
}

.nav-drawer__divider {
  height: 1px;
  background: rgba(233, 238, 246, 0.12);
  margin: 10px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--grad-01);
  color: #041016;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28) inset, 0 18px 70px rgba(34, 211, 238, 0.16),
    0 16px 60px rgba(255, 79, 216, 0.1);
}

.btn--primary:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28) inset, 0 18px 60px rgba(167, 139, 250, 0.2);
}

.btn--secondary {
  background: rgba(15, 19, 26, 0.35);
  color: rgba(233, 238, 246, 0.92);
  border-color: rgba(233, 238, 246, 0.18);
}

.btn--secondary:hover {
  border-color: rgba(233, 238, 246, 0.3);
  background: rgba(15, 19, 26, 0.55);
}

.btn--block {
  width: 100%;
}

.section {
  padding: var(--space-6) 0;
}

.section--tight {
  padding: var(--space-6) 0;
}

.section__header {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  max-width: 90%;
}

.section__lead {
  max-width: 70ch;
  color: var(--muted);
  margin: 0;
  font-size: clamp(1.1rem, 1.1vw, 1.1rem);
}

.hero {
  padding: calc(var(--space-8) + 10px) 0 var(--space-8);
  margin-top: 50px;
  position: relative;
}

.hero--main {
  background-image:
    linear-gradient(to bottom,
      rgba(11, 13, 16, 0.25) 0%,
      rgba(11, 13, 16, 0.40) 40%,
      rgba(11, 13, 16, 0.80) 68%,
      rgba(11, 13, 16, 1.0) 100%),
    url('../images/animus_hero.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.hero--product {
  background-image: url('../images/hero_bg_main.png');
  background-size: cover;
}


.hero::before {
  content: "";
  position: absolute;
  inset: -120px -20px auto -20px;
  height: 520px;
  background: radial-gradient(520px 260px at 18% 40%, rgba(167, 139, 250, 0.22), transparent 65%),
    radial-gradient(520px 260px at 86% 30%, rgba(34, 211, 238, 0.18), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}

.hero__image {
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-4);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(233, 238, 246, 0.14);
  background: rgba(15, 19, 26, 0.35);
}

.meta-pill__label {
  color: rgba(233, 238, 246, 0.6);
  font-size: 0.8rem;
}

.meta-pill__value {
  font-weight: 650;
  font-size: 0.9rem;
}

.glass-card {
  --panel-fill: linear-gradient(180deg, rgba(15, 19, 26, 0.72), rgba(15, 19, 26, 0.42));
  border-radius: var(--radius-lg);
  background: var(--panel-fill);
  border: 1px solid rgba(233, 238, 246, 0.14);
  box-shadow: var(--shadow-soft);
  padding: var(--space-3);

  margin-bottom: 10px;
}



.glass-card--accent {
  border-color: rgba(34, 211, 238, 0.28);
  background: linear-gradient(180deg, rgba(13, 18, 25, 0.75), rgba(13, 18, 25, 0.45));
}

.glass-card--glow {
  position: relative;
  overflow: hidden;
}

.glass-card--glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--grad-2);
  opacity: 0.6;
  filter: blur(18px);
  pointer-events: none;
  z-index: -1;
}

.panel--vibrant {
  position: relative;
  isolation: isolate;
  border: 1px solid transparent;
  background: var(--panel-fill, rgba(15, 19, 26, 0.45)) padding-box, var(--grad-block) border-box;
  background-size: auto, 260% 100%;
  background-position: 0 0, 0% 50%;
}

.panel--vibrant::after {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: inherit;
  background: var(--grad-block);
  background-size: 260% 100%;
  filter: blur(34px);
  opacity: 0.16;
  pointer-events: none;
  z-index: -2;
}

.panel--vibrant:hover::after {
  opacity: 0.22;
}

.glass-card__header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-3);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(233, 238, 246, 0.16);
  background: rgba(11, 13, 16, 0.24);
  color: rgba(233, 238, 246, 0.84);
  font-size: 0.85rem;
  white-space: nowrap;
}

.chip--ok {
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.08);
}

.divider {
  height: 1px;
  background: rgba(233, 238, 246, 0.12);
  margin: var(--space-4) 0;
}

.divider--gradient {
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.35), rgba(167, 139, 250, 0.25), transparent);
}

.divider-block {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  color: rgba(233, 238, 246, 0.7);
}

.divider-block__line {
  height: 1px;
  background: rgba(233, 238, 246, 0.12);
}

.divider-block__text {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.checklist,
.bullets {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li::marker {
  color: rgba(52, 211, 153, 0.9);
}

.grid {
  display: grid;
  gap: var(--space-4);
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.tabs {
  display: grid;
  gap: var(--space-4);
}

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tabs__tab {
  appearance: none;
  border: 1px solid rgba(233, 238, 246, 0.16);
  background: rgba(15, 19, 26, 0.35);
  color: rgba(233, 238, 246, 0.86);
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: background 140ms ease, border-color 140ms ease;
}

.tabs__tab[aria-selected="true"] {
  border-color: rgba(34, 211, 238, 0.36);
  background: rgba(34, 211, 238, 0.08);
}

.tabs__panels {
  display: grid;
  gap: var(--space-4);
}

.compare {
  display: grid;
  gap: var(--space-4);
}

.callout {
  --panel-fill: linear-gradient(180deg, rgba(167, 139, 250, 0.08), rgba(34, 211, 238, 0.05));
  margin-top: var(--space-5);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(167, 139, 250, 0.25);
  background: var(--panel-fill);
  box-shadow: var(--shadow-soft);
  display: grid;
  position: relative;
  overflow: hidden;

}

.callout--inline {
  margin-top: var(--space-4);
}

.cta-panel {
  margin-top: var(--space-1);
  padding: var(--space-2);
  display: grid;
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
}

.cta-panel>* {
  position: relative;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-panel--big {
  padding: clamp(28px, 4vw, 56px);
}

.footer {
  border-top: 1px solid rgba(233, 238, 246, 0.1);
  padding: var(--space-6) 0;
  background: rgba(11, 13, 16, 0.55);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(233, 238, 246, 0.75);
}

.footer__links a {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.footer__links a:hover {
  border-color: var(--border);
  background: rgba(15, 19, 26, 0.45);
}

.hero--product::before {
  inset: -160px -20px auto -20px;
  height: 600px;
  background: radial-gradient(540px 300px at 22% 30%, rgba(34, 211, 238, 0.22), transparent 65%),
    radial-gradient(520px 320px at 76% 38%, rgba(167, 139, 250, 0.2), transparent 65%),
    radial-gradient(520px 340px at 55% 100%, rgba(52, 211, 153, 0.15), transparent 65%);
}

.icon-bullets {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0 0;
  display: grid;
  gap: 12px;
}

.icon-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(233, 238, 246, 0.86);
}

.icon-bullets__icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid rgba(233, 238, 246, 0.14);
  background: rgba(15, 19, 26, 0.35);
  display: grid;
  place-items: center;
  color: rgba(34, 211, 238, 0.95);
}

.mock {
  display: grid;
  gap: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233, 238, 246, 0.14);
  --panel-fill: linear-gradient(180deg, rgba(15, 19, 26, 0.65), rgba(15, 19, 26, 0.35));
  background: var(--panel-fill);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
}

.mock__top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mock__grid {
  display: grid;
  gap: var(--space-4);
}

.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-3);
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.code-dot--r {
  background: #ff5f57;
}

.code-dot--y {
  background: #febc2e;
}

.code-dot--g {
  background: #28c840;
}

.code-title {
  margin-left: 6px;
  color: rgba(233, 238, 246, 0.72);
  font-size: 0.9rem;
}

.code {
  margin: 0;
  padding: 0;
  overflow: auto;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(233, 238, 246, 0.9);
}

.code code {
  font-family: var(--font-mono);
}

.pack-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.pack-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(233, 238, 246, 0.12);
  background: rgba(11, 13, 16, 0.18);
}

.pack-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(34, 211, 238, 0.08);
  font-weight: 800;
}

.mock__result {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(52, 211, 153, 0.22);
  background: rgba(52, 211, 153, 0.06);
}

.mock__result-label {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 650;
}

.mock__note {
  margin: 0;
}

.social-proof {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233, 238, 246, 0.12);
  --panel-fill: rgba(15, 19, 26, 0.35);
  background: var(--panel-fill);
  padding: var(--space-5);
  display: grid;
  gap: var(--space-3);
}

.social-proof__title {
  margin: 0;
  color: rgba(233, 238, 246, 0.8);
  font-weight: 650;
}

.social-proof__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-pill {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(233, 238, 246, 0.14);
  background: rgba(11, 13, 16, 0.18);
  color: rgba(233, 238, 246, 0.75);
  font-size: 0.92rem;
}

.feature {
  display: grid;
  gap: 10px;
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(233, 238, 246, 0.14);
  background: rgba(15, 19, 26, 0.35);
  display: grid;
  place-items: center;
  color: rgba(167, 139, 250, 0.92);
}

.how {
  display: grid;
  gap: var(--space-4);
}

.tabs--timeline .tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.step {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233, 238, 246, 0.18);
  background: rgba(11, 13, 16, 0.18);
  font-size: 0.85rem;
  font-weight: 750;
  color: rgba(233, 238, 246, 0.9);
}

.use-case {
  display: grid;
  gap: var(--space-4);
}

.mini-ui {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233, 238, 246, 0.14);
  background: rgba(11, 13, 16, 0.18);
  padding: var(--space-4);
  display: grid;
  gap: 12px;
}

.mini-ui__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: baseline;
}

.mini-ui__k {
  color: rgba(233, 238, 246, 0.6);
  font-weight: 650;
}

.mini-ui__v {
  color: rgba(233, 238, 246, 0.86);
}

.price__header {
  display: grid;
  gap: 6px;
  margin-bottom: var(--space-3);
}

.price__tag {
  margin: 0;
  color: rgba(233, 238, 246, 0.72);
}

.price__value {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.price__note {
  margin: 0;
}

.price--popular {
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: 0 18px 70px rgba(34, 211, 238, 0.1), var(--shadow-soft);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq__item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233, 238, 246, 0.14);
  background: rgba(15, 19, 26, 0.35);
  padding: 0;
  overflow: hidden;
}

.faq__q {
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "▾";
  color: rgba(233, 238, 246, 0.7);
}

.faq__item[open] .faq__q::after {
  content: "▴";
}

.faq__a {
  padding: 0 var(--space-5) var(--space-5);
}

.footer--cols {
  padding-top: var(--space-7);
}

.footer-cols {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

.footer-col__title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: rgba(233, 238, 246, 0.86);
}

.footer-col a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: rgba(233, 238, 246, 0.75);
}

.footer-col a:hover {
  border-color: var(--border);
  background: rgba(15, 19, 26, 0.45);
  color: rgba(233, 238, 246, 0.88);
}

.footer__bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(233, 238, 246, 0.1);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}

.blog-hero .lead {
  max-width: 72ch;
}

.prose {
  color: rgba(233, 238, 246, 0.92);
}

.prose p {
  margin: 0 0 var(--space-3);
}

.prose h3 {
  margin: var(--space-5) 0 var(--space-2);
}

.prose ul {
  margin: 0 0 var(--space-3);
}

.prose hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 238, 246, 0.2), transparent);
  margin: var(--space-5) 0;
}

.prose blockquote {
  margin: var(--space-4) 0;
  padding: var(--space-4) var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.06), rgba(255, 79, 216, 0.03));
  color: rgba(233, 238, 246, 0.9);
}

.prose pre {
  margin: var(--space-4) 0;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233, 238, 246, 0.14);
  background: rgba(11, 13, 16, 0.35);
  overflow: auto;
  box-shadow: var(--shadow-soft);
}

.prose pre code {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(233, 238, 246, 0.92);
}

.post-header {
  margin-bottom: var(--space-5);
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  margin: 0 0 var(--space-2);
  letter-spacing: -0.02em;
}

.post-subtitle {
  margin: 0 0 var(--space-3);
  max-width: 70ch;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(233, 238, 246, 0.75);
  font-size: 0.92rem;
  margin-bottom: var(--space-3);
}

.post-meta__dot {
  opacity: 0.7;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(233, 238, 246, 0.14);
  background: rgba(15, 19, 26, 0.28);
  color: rgba(233, 238, 246, 0.84);
  font-weight: 650;
  font-size: 0.85rem;
}

.blog-sidebar {
  display: grid;
  gap: var(--space-4);
}

.sidebar-card {
  padding: var(--space-5);
}

.sidebar-help {
  margin: 0 0 var(--space-4);
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.sidebar-link {
  display: grid;
  gap: 6px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(233, 238, 246, 0.12);
  background: rgba(11, 13, 16, 0.22);
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.sidebar-link:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.22);
  background: rgba(11, 13, 16, 0.35);
}

.sidebar-link__title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.sidebar-link__meta {
  font-size: 0.92rem;
}

.sidebar-divider {
  height: 1px;
  background: rgba(233, 238, 246, 0.12);
  margin: var(--space-4) 0;
}

.sidebar-cta p {
  margin: 0 0 var(--space-2);
}

@media (min-width: 860px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav--with-back {
    grid-template-columns: auto auto 1fr auto;
  }

  .nav__back {
    display: inline-flex;
    justify-self: start;
  }

  .nav__toggle {
    display: none;
  }

  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .hero__panel {}

  .hero__grid--product {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mock__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .how {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .use-case {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .footer-cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: var(--space-6);
  }

  .blog-sidebar {
    position: sticky;
    top: 92px;
  }

  .simple-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .btn:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .panel--vibrant {
    animation: borderShift 10s linear infinite;
  }

  .panel--vibrant::after {
    animation: glowShift 10s linear infinite;
  }
}

@keyframes borderShift {
  0% {
    background-position: 0 0, 0% 50%;
  }

  100% {
    background-position: 0 0, 100% 50%;
  }
}

@keyframes glowShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.hero__proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.proof-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 10, 18, 0.52);
  border: 1px solid rgba(233, 238, 246, 0.12);
  backdrop-filter: blur(12px);
}

.proof-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.proof-card p {
  margin: 0;
  color: rgba(233, 238, 246, 0.72);
  font-size: 0.98rem;
  line-height: 1.45;
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 28px;
  font-size: 0.98rem;
}

.simple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 28px;
}



.contrast-card {
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 18, 0.48);
  border: 1px solid rgba(233, 238, 246, 0.12);
  backdrop-filter: blur(12px);
}

.contrast-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contrast-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(233, 238, 246, 0.8);
  line-height: 1.6;
}

.contrast-card li+li {
  margin-top: 8px;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.signal-row-footer {
  display: grid;
  grid-template-columns: repeat(4, 50px);
  gap: 1px;
  width: fit-content;
  align-items: center;
}

.signal-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 30px;
}

.signal-box {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(233, 238, 246, 0.12);
  background: rgba(8, 10, 18, 0.45);
}

.signal-box--small {
  padding: 5px 20px;
  border-radius: 20px;
  border: 1px solid rgba(233, 238, 246, 0.12);
  background: rgba(8, 10, 18, 0.45);
}

.signal-box h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.signal-box--small h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}


.signal-box p {
  margin: 0;
  color: rgba(233, 238, 246, 0.72);
  line-height: 1.55;
  font-size: clamp(1.0rem, 1.0vw, 1.0rem);
}

.signal-box--smal p {
  margin: 0;
  color: rgba(233, 238, 246, 0.72);
  line-height: 1.0;
  font-size: clamp(0.9rem, 0.9vw, 0.9rem);
}


@media (max-width: 900px) {

  .hero__proofs,
  .signal-row,
  .contrast-grid {
    grid-template-columns: 1fr;
  }
}