:root {
  --bg: #070a10;
  --card: rgba(255, 255, 255, 0.06);
  --fg: rgba(255, 255, 255, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --muted: rgba(255, 255, 255, 0.66);

  --a: #6ee7ff;
  --b: #b6ff5f;

  --max: 1180px;
  --r: 18px;
  --rs: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

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

.bg__glow {
  filter: blur(80px);
  height: 520px;
  opacity: 0.55;
  position: fixed;
  width: 520px;
  z-index: -2;
}
.bg__glow--a {
  background: radial-gradient(circle, var(--a), transparent 60%);
  left: -180px;
  top: -140px;
}
.bg__glow--b {
  background: radial-gradient(circle, var(--b), transparent 60%);
  bottom: -180px;
  right: -180px;
}
.bg__grid {
  background-image: linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  inset: 0;
  mask-image: radial-gradient(circle at 50% 20%, rgba(0,0,0,1), rgba(0,0,0,0) 55%);
  position: fixed;
  z-index: -3;
}

.container {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 18px;
}

.header {
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 16, 0.6);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header__actions {
  display: flex;
  gap: 10px;
}
.header__inner {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
}
.brand__mark {
  align-items: center;
  background: linear-gradient(135deg, var(--a), var(--b));
  border-radius: 12px;
  color: #061018;
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.brand__name {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 16px;
}
.nav__link {
  color: var(--muted);
  font-weight: 700;
}
.nav__link:hover { color: var(--fg); }

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  padding: 10px 14px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.btn:active { transform: translateY(1px); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  color: var(--fg);
}
.btn--primary {
  background: linear-gradient(135deg, var(--a), var(--b));
  color: #061018;
}
.btn--sm {
  font-size: 13px;
  padding: 8px 12px;
}
.btn--wide {
  width: 100%;
}

.main { padding-bottom: 68px; }

.hero { padding: 54px 0 20px; }
.hero__inner {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.1fr 0.9fr;
}
.hero__title {
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin: 14px 0 12px;
}
.hero__subtitle {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 62ch;
}
.hero__cta { display: flex; gap: 10px; }

.pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 13px;
  gap: 10px;
  padding: 8px 12px;
}
.pill__dot {
  background: linear-gradient(135deg, var(--a), var(--b));
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}
.metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--rs);
  padding: 12px;
}
.metric__label {
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}
.metric__value {
  font-size: 18px;
  font-weight: 900;
}

.panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.panel__body { padding: 14px; }
.panel__cta { margin-top: 14px; }
.panel__hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.panel__title {
  font-size: 14px;
  font-weight: 900;
}
.panel__top {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
}

.tabs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 14px 14px 0;
}
.tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 12px;
}
.tab--active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
}

.preview__headline {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 10px 0 8px;
}
.preview__kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.preview__list {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  padding-left: 18px;
}
.preview--hidden { display: none; }

.micro {
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
}

.logos {
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-top: 12px;
  overflow: hidden;
}
.logos__track {
  animation: marquee 18s linear infinite;
  display: inline-flex;
  gap: 14px;
  padding: 12px 14px;
  white-space: nowrap;
}
.logo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section { padding: 48px 0; }
.section--alt { background: rgba(255, 255, 255, 0.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--cta { padding: 64px 0; }
.section__head { margin-bottom: 16px; }
.section__title { font-size: 28px; letter-spacing: -0.03em; margin: 0 0 6px; }
.section__subtitle { color: var(--muted); margin: 0; }

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

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
}
.card--accent {
  background: linear-gradient(180deg, rgba(182,255,95,0.14), rgba(255,255,255,0.03));
}
.card__actions { margin-top: 12px; }
.card__tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 8px;
}
.card__text { color: var(--muted); line-height: 1.7; margin: 10px 0 0; }
.card__title { font-size: 16px; font-weight: 900; }
.card__top { align-items: center; display: flex; justify-content: space-between; }

.faq { display: grid; gap: 10px; }
.qa {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 14px;
}
.qa__q { cursor: pointer; font-weight: 900; }
.qa__a { color: var(--muted); line-height: 1.7; padding-top: 10px; }

.cta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  padding: 18px;
}
.cta__actions { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; margin-top: 10px; }
.cta__subtitle { color: var(--muted); line-height: 1.7; margin: 8px 0 0; }
.cta__title { font-size: 26px; letter-spacing: -0.03em; margin: 0; }

.field { display: grid; gap: 8px; margin-top: 10px; }
.field__input {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--fg);
  font-size: 14px;
  padding: 12px;
}
.field__label { color: var(--muted); font-size: 12px; font-weight: 900; }

.footer { border-top: 1px solid var(--line); padding: 24px 0 36px; }
.footer__brand { align-items: center; display: inline-flex; gap: 10px; }
.footer__inner { align-items: center; display: flex; justify-content: space-between; }
.footer__left { display: grid; gap: 8px; }
.footer__link { color: var(--muted); font-weight: 800; }
.footer__link:hover { color: var(--fg); }
.footer__right { display: flex; gap: 14px; }

@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .cta { grid-template-columns: 1fr; }
  .cta__actions { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .header__actions { display: none; }
  .nav { display: none; }
  .metrics { grid-template-columns: 1fr; }
  .tabs { grid-template-columns: 1fr; }
}
