:root {
  --bg-0: #161622;
  --bg-1: #1f1f2d;
  --bg-2: #282838;
  --bg-3: #323242;
  --glass: rgba(32, 32, 46, 0.72);
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.1);
  --line-3: rgba(255, 255, 255, 0.16);
  --text: rgba(255, 255, 255, 0.86);
  --text-2: rgba(255, 255, 255, 0.58);
  --text-3: rgba(255, 255, 255, 0.34);
  --mint: #2ee6a8;
  --mint-d: #1bc48a;
  --cyan: #38bdf8;
  --violet: #818cf8;
  --gold: #fbbf24;
  --red: #f87171;
  --orange: #fb923c;
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fs-body: 17px;
  --fs-sm: 14px;
  --fs-xs: 12px;
  --fs-h2: clamp(26px, 2.8vw, 38px);
  --fs-hero: clamp(32px, 4vw, 52px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
}

a { color: inherit; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.brand { color: var(--mint); }
.grad-text {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
}

.sec-sub {
  margin-top: 14px;
  max-width: 580px;
  color: var(--text-2);
  line-height: 1.7;
}

.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  opacity: 0.45;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 230, 168, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(46, 230, 168, 0); }
}

@keyframes shimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(220%); }
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(22, 22, 34, 0.78);
  backdrop-filter: blur(20px) saturate(1.4);
}

.nav-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-mark--bright {
  filter: saturate(1.35) brightness(1.15) drop-shadow(0 0 8px rgba(46, 230, 168, 0.35));
}

.logo-word {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1;
}

.logo-word .labs {
  font-weight: 700;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  border: none;
  white-space: nowrap;
}

.btn-ghost {
  padding: 9px 16px;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--line-2);
}

.btn-ghost:hover {
  color: #fff;
  border-color: var(--line-3);
}

.btn-primary {
  padding: 10px 18px;
  color: #041510;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  box-shadow: 0 0 0 1px rgba(46, 230, 168, 0.2), 0 8px 32px rgba(46, 230, 168, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(46, 230, 168, 0.35), 0 12px 40px rgba(46, 230, 168, 0.28);
}

/* Rotating gradient CTA — 21st.dev button-1 style */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes gradient-angle-spin {
  to { --gradient-angle: 360deg; }
}

.gradient-btn {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  padding: 3px;
  border-radius: 50px;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  vertical-align: middle;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  background: conic-gradient(
    from var(--gradient-angle),
    #2ee6a8,
    #ffffff,
    #38bdf8,
    #818cf8,
    #2ee6a8
  );
  animation: gradient-angle-spin 2.8s linear infinite;
}

.gradient-btn__spin {
  display: none;
}

.gradient-btn__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  color: #041510;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  border-radius: calc(50px - 3px);
  transition: filter 0.2s;
  white-space: nowrap;
}

.gradient-btn--nav .gradient-btn__label {
  padding: 10px 18px;
  font-size: 13px;
}

.gradient-btn--lg .gradient-btn__label {
  padding: 16px 32px;
  font-size: 16px;
}

.gradient-btn--bar {
  display: block;
  width: 100%;
  border-radius: 14px;
  padding: 3px;
}

.gradient-btn--bar:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(46, 230, 168, 0.25),
    0 12px 36px rgba(46, 230, 168, 0.22);
}

.gradient-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(46, 230, 168, 0.25), 0 12px 36px rgba(46, 230, 168, 0.22);
}

.gradient-btn:hover .gradient-btn__label {
  filter: brightness(1.06);
}

.gradient-btn:active {
  transform: translateY(0);
}

.gradient-btn__label svg {
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .gradient-btn {
    animation: none;
    background: conic-gradient(from 45deg, #2ee6a8, #38bdf8, #818cf8, #2ee6a8);
  }
}

/* HERO */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px 72px;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--bg-0);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 640px;
  height: 480px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-a {
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(46, 230, 168, 0.12), transparent 70%);
}

.hero-glow-b {
  bottom: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-slogan {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
  animation: fadeUp 0.5s var(--ease) both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  font-size: 12px;
  color: var(--text-2);
}

.pill-brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
}

.hero h1 {
  font-size: clamp(36px, 5.8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: #fff;
  animation: fadeUp 0.55s 0.06s var(--ease) both;
}

.h1-tw {
  display: flex;
  justify-content: center;
  margin: 2px 0;
  animation: fadeUp 0.55s 0.1s var(--ease) both;
}

.tw-word {
  display: inline-block;
  min-width: 1ch;
  font-size: clamp(36px, 5.8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-align: left;
}

.h1-static {
  font-size: clamp(36px, 5.8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--text-2);
  margin-bottom: 22px;
  animation: fadeUp 0.55s 0.12s var(--ease) both;
}

.hero-tagline {
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 34px;
  animation: fadeUp 0.55s 0.15s var(--ease) both;
}

.search-wrap {
  max-width: 620px;
  margin: 0 auto;
  animation: fadeUp 0.55s 0.2s var(--ease) both;
}

.search-unified-inner {
  display: flex;
  align-items: stretch;
  border-radius: 11px;
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(18px);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(46, 230, 168, 0.04);
}

.search-unified-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint), var(--cyan), transparent);
  pointer-events: none;
  z-index: 2;
}

.search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 18px 22px;
  font: inherit;
  font-size: 15px;
  color: #fff;
}

.search-input::placeholder { color: var(--text-3); }

.search-divider {
  width: 1px;
  margin: 12px 0;
  background: var(--line-2);
  flex-shrink: 0;
}

.search-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 26px;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #041510;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  flex-shrink: 0;
  white-space: nowrap;
}

.search-submit svg {
  transition: transform 0.2s;
}

.search-submit:hover svg {
  transform: translateX(3px);
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--text-2);
}

.badge.live { color: var(--mint); }

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green {
  background: var(--mint);
  animation: pulse-dot 2s ease-in-out infinite;
}

.dot-blue { background: var(--cyan); }

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--bg-1));
  pointer-events: none;
  z-index: 1;
}

/* HOW — elevated band */
.how-band {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding-bottom: 32px;
}

.how-band-surface {
  background: var(--bg-1);
  border-radius: 32px 32px 0 0;
  border-top: 1px solid rgba(46, 230, 168, 0.14);
  box-shadow:
    0 -32px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 64px 0 80px;
}

.how-band-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.how-band-lead {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
}

.how-band-lead strong {
  color: var(--mint);
  font-weight: 700;
}

.how-flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0 0;
  padding: 0;
  align-items: stretch;
}

.how-flow-item {
  display: flex;
  min-width: 0;
}

.reveal.visible .how-flow-item:nth-child(1) { animation: how-step-in 0.55s 0.05s var(--ease) both; }
.reveal.visible .how-flow-item:nth-child(2) { animation: how-step-in 0.55s 0.15s var(--ease) both; }
.reveal.visible .how-flow-item:nth-child(3) { animation: how-step-in 0.55s 0.25s var(--ease) both; }

@keyframes how-step-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.how-flow-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.how-flow-item:hover .how-flow-card {
  transform: translateY(-4px);
}

.how-flow-item--active .how-flow-card {
  border-color: rgba(46, 230, 168, 0.4);
  box-shadow: 0 0 48px rgba(46, 230, 168, 0.1);
}

.how-flow-art {
  width: 100%;
  height: clamp(196px, 23vw, 236px);
  padding: 0;
  background: linear-gradient(165deg, rgba(46, 230, 168, 0.05), var(--bg-2) 42%);
  overflow: hidden;
  line-height: 0;
}

.how-flow-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.how-flow-text {
  padding: 18px 20px 22px;
  text-align: center;
}

.how-flow-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-3);
}

.how-flow-item--active .how-flow-label {
  color: var(--mint);
}

.how-flow-text h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}

.how-flow-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

.how-band-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 52px;
  padding: 4px 0;
}

.how-band-btn {
  padding: 16px 32px;
  font-size: 16px;
}

.how-band-note {
  font-size: 14px;
  color: var(--text-3);
}

@media (max-width: 900px) {
  .how-flow {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .how-flow-item:hover .how-flow-card {
    transform: none;
  }
}

@media (max-width: 768px) {
  .how-band {
    margin-top: -24px;
  }

  .how-band-surface {
    border-radius: 24px 24px 0 0;
    padding: 48px 0 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal.visible .how-flow-item {
    animation: none !important;
  }
}

/* PLATFORMS */
#platforms { background: var(--bg-0); }
#platforms .aurora-a { top: -80px; right: -60px; width: 460px; height: 460px; background: rgba(129, 140, 248, 0.07); }

.plat-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.plat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 12px 20px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.plat-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-3);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
}

.plat-rank {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 7px;
  border-radius: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  color: var(--text-3);
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.plat-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.plat-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.plat-owner {
  margin-top: -4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--text-3);
}

.plat-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.plat-tag {
  padding: 2px 7px;
  border-radius: 5px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  color: var(--text-3);
  background: var(--bg-2);
  border: 1px solid var(--line);
}

/* PARAMS */
#params { background: var(--bg-1); }
#params .aurora-a { bottom: -100px; left: -80px; width: 420px; height: 420px; background: rgba(46, 230, 168, 0.07); }

.params-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.param-card {
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.param-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 230, 168, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.param-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
}

.param-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(46, 230, 168, 0.18);
}

.param-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.param-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.param-list li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.param-list li::before {
  content: "–";
  color: var(--text-3);
  flex-shrink: 0;
}

/* LEADSY */
#leadsy {
  background: linear-gradient(135deg, #181824, #1c2430);
}

#leadsy .aurora-a {
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: rgba(129, 140, 248, 0.08);
}

.leadsy-layout {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
}

.leadsy-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.leadsy-text strong {
  color: var(--text);
  font-weight: 600;
}

.leadsy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.stat {
  padding: 18px 16px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
}

.stat-val {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 5px;
}

.stat-val span { color: var(--mint); }

.stat-label {
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.4;
}

.terminal {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: rgba(22, 22, 34, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.term-title {
  margin-left: auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--text-3);
}

.term-body { padding: 22px; }

.tl {
  display: flex;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 2;
}

.tp { color: var(--mint); }
.tc { color: var(--text); }
.to { color: var(--text-3); padding-left: 18px; }
.tg { color: var(--mint); padding-left: 18px; }
.tr { color: var(--red); padding-left: 18px; }

.term-report {
  margin-top: 18px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
}

.rep-title {
  margin-bottom: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-3);
}

.rep-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.rep-row:last-child { border-bottom: none; }

.rep-label {
  flex: 1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--text-2);
}

.rep-bar {
  flex: 2;
  height: 4px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-3);
}

.rep-fill { height: 100%; border-radius: 4px; }

.rep-val {
  min-width: 32px;
  text-align: right;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.verdict {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(46, 230, 168, 0.2);
  background: rgba(46, 230, 168, 0.06);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--mint);
  line-height: 1.6;
}

/* REVIEWS — testimonials-columns-1 (21st / efferd) */
#reviews {
  background: var(--bg-0);
  padding-bottom: 80px;
}

.rev-columns-shell {
  margin-top: 40px;
}

.rev-columns-mask {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-height: 740px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}

.rev-col {
  flex: 0 0 auto;
  width: 100%;
  max-width: 320px;
  overflow: hidden;
}

.rev-col-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  animation: rev-col-scroll var(--rev-dur, 15s) linear infinite;
}

@keyframes rev-col-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.rev-card {
  width: 100%;
  max-width: 320px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  box-shadow:
    0 10px 15px rgba(0, 0, 0, 0.28),
    0 0 40px rgba(46, 230, 168, 0.08);
}

.rev-text {
  font-size: 15px;
  font-style: normal;
  color: var(--text);
  line-height: 1.65;
}

.rev-text::before,
.rev-text::after {
  content: none;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.rev-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--mint);
  background: rgba(46, 230, 168, 0.1);
  border: 1px solid rgba(46, 230, 168, 0.2);
  flex-shrink: 0;
}

.rev-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}

.rev-role {
  margin-top: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-2);
  opacity: 0.6;
}

@media (max-width: 767px) {
  .rev-col--md {
    display: none;
  }
}

@media (max-width: 1023px) {
  .rev-col--lg {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rev-col-track {
    animation: none !important;
  }
}

/* FAQ */
#faq { background: linear-gradient(180deg, var(--bg-1), var(--bg-0)); }

.faq-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.faq-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--line-2); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 7px;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--text-2);
  transition: transform 0.25s, border-color 0.2s, color 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--mint);
  color: var(--mint);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 20px;
}

/* CTA */
#cta {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
}

.cta-box {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  padding: 72px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint), var(--cyan), transparent);
}

.cta-form { margin-top: 28px; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-0);
  padding: 28px 0 36px;
}

.footer-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.f-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--text-2);
}

.f-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse-dot 2s ease-in-out infinite;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-copy {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--text-3);
}

/* COOKIE */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  width: calc(100% - 48px);
  max-width: 700px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: rgba(32, 32, 46, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--mint);
  text-decoration: none;
}

.cookie-text a:hover { text-decoration: underline; }

.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-cookie-ok {
  padding: 9px 20px;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #041510;
  cursor: pointer;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
}

.btn-cookie-no {
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: transparent;
  font: inherit;
  font-size: 13px;
  color: var(--text-3);
  cursor: pointer;
}

.btn-cookie-no:hover {
  color: var(--text-2);
  border-color: var(--line-3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .params-grid { grid-template-columns: repeat(2, 1fr); }

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

  .leadsy-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .params-grid,
  .plat-grid,
  .faq-grid,
  .leadsy-stats { grid-template-columns: 1fr; }

  .search-unified-inner {
    flex-direction: column;
  }

  .search-divider { display: none; }

  .search-submit {
    justify-content: center;
    padding: 16px;
  }

  .cta-box { padding: 48px 24px; }

  .footer-in {
    flex-direction: column;
    align-items: flex-start;
  }
}
