:root {
  --bg: #050705;
  --bg-soft: #08100a;
  --panel: #0a120c;
  --panel-strong: #0d1710;
  --green: #00e676;
  --green-soft: #39ff88;
  --text: #e8f5ec;
  --muted: #9fb8a8;
  --border: #1d3a27;
  --border-strong: #2f6a42;
  --warning: #ffd166;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --glow: 0 0 0 1px rgba(57, 255, 136, 0.12), 0 18px 56px rgba(0, 230, 118, 0.14);
  --max-width: 1160px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: calc(100% - 32px);
  max-width: var(--max-width);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(29, 58, 39, 0.78);
  background: rgba(5, 7, 5, 0.74);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 5, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.nav {
  width: calc(100% - 32px);
  max-width: var(--max-width);
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.2), rgba(57, 255, 136, 0.05));
  color: var(--green-soft);
  font-size: 0.78rem;
  box-shadow: inset 0 0 24px rgba(0, 230, 118, 0.08);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(13, 23, 16, 0.72);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-soft);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.nav-links {
  position: fixed;
  inset: 72px 16px auto;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(5, 7, 5, 0.98);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
}

.nav-links.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--muted);
  font-weight: 700;
}

.language-switch {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(29, 58, 39, 0.86);
  border-radius: 8px;
  padding: 0 10px;
  background: rgba(13, 23, 16, 0.58);
}

.language-switch button {
  border: 0;
  padding: 4px 2px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--green-soft);
}

.language-switch span {
  color: var(--border-strong);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(0, 230, 118, 0.08);
  outline: none;
}

.nav-links .nav-cta {
  justify-content: center;
  color: #021007;
  background: var(--green);
  box-shadow: 0 12px 34px rgba(0, 230, 118, 0.18);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #021007;
  background: var(--green-soft);
}

.hero {
  position: relative;
  min-height: 88svh;
  padding: 116px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 230, 118, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 5, 0.1) 0%, var(--bg) 94%);
}

.market-canvas,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.market-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.54;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.96) 0%, rgba(5, 7, 5, 0.72) 50%, rgba(5, 7, 5, 0.5) 100%),
    linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 32px;
  align-items: center;
}

.ecosystem-hero h1 {
  max-width: 900px;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  border: 1px solid rgba(57, 255, 136, 0.36);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(0, 230, 118, 0.08);
  color: var(--green-soft);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: inset 0 0 28px rgba(0, 230, 118, 0.06);
}

.hero-badge > span:first-child {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.7);
}

.hero-badge > span:not(:first-child) {
  width: auto;
  height: auto;
}

.eyebrow,
.section-kicker,
.product-pill {
  margin: 0 0 14px;
  color: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 8.6vw, 6.8rem);
  font-weight: 900;
}

h1 span {
  display: block;
  max-width: 100%;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 7vw, 4.2rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 850;
}

.hero-subheadline {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.08rem, 4.8vw, 1.42rem);
  line-height: 1.45;
  overflow-wrap: break-word;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--green);
  color: #021007;
  box-shadow: 0 18px 46px rgba(0, 230, 118, 0.2);
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -40%;
  z-index: -1;
  width: 42%;
  transform: skewX(-18deg) translateX(-160%);
  background: rgba(255, 255, 255, 0.3);
  filter: blur(10px);
  transition: transform 520ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-soft);
  box-shadow: 0 20px 60px rgba(0, 230, 118, 0.28);
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
  transform: skewX(-18deg) translateX(520%);
}

.button-secondary {
  border-color: var(--border-strong);
  background: rgba(13, 23, 16, 0.72);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green-soft);
  box-shadow: var(--glow);
}

.button-ghost {
  border-color: rgba(29, 58, 39, 0.76);
  background: rgba(5, 7, 5, 0.54);
  color: var(--muted);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(57, 255, 136, 0.48);
  color: var(--text);
  background: rgba(13, 23, 16, 0.78);
}

.copy-feedback {
  min-height: 1.35rem;
  margin: -4px 0 10px;
  color: var(--green-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.button-disabled,
.button-disabled:hover,
.button-disabled:focus-visible {
  transform: none;
  border-color: rgba(29, 58, 39, 0.8);
  background: rgba(13, 23, 16, 0.68);
  color: var(--muted);
  cursor: not-allowed;
  box-shadow: none;
}

.button-large {
  min-height: 60px;
  padding-inline: 24px;
  font-size: 1.02rem;
}

.full-width {
  width: 100%;
}

.risk-note {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.terminal-panel {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(57, 255, 136, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(57, 255, 136, 0.08), transparent 38%),
    rgba(8, 16, 10, 0.84);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.terminal-topbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.32);
}

.terminal-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--border-strong);
}

.terminal-topbar span:first-child {
  background: var(--green);
}

.terminal-body {
  padding: 18px;
}

.terminal-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(29, 58, 39, 0.72);
}

.terminal-line span,
.signal-box span,
.metric span,
.testimonial-card span {
  color: var(--muted);
}

.terminal-line strong,
.signal-box strong {
  color: var(--text);
  overflow-wrap: anywhere;
}

.signal-box {
  margin-top: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 16px;
  background: rgba(0, 230, 118, 0.08);
}

.signal-box span,
.signal-box strong {
  display: block;
}

.signal-box strong {
  margin-top: 6px;
  color: var(--green-soft);
  font-size: 1.1rem;
}

.mini-chart {
  height: 130px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 8px;
  margin-top: 18px;
}

.mini-chart span {
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--green-soft), rgba(0, 230, 118, 0.12));
  transform-origin: bottom;
  animation: miniPulse 3.8s ease-in-out infinite;
}

.mini-chart span:nth-child(2n) {
  animation-delay: 240ms;
}

.mini-chart span:nth-child(3n) {
  animation-delay: 480ms;
}

.section {
  padding: 72px 0;
}

.section-grid,
.audience-layout,
.product-layout,
.agent-layout,
.roadmap-layout,
.final-cta-layout {
  display: grid;
  gap: 28px;
}

.section-copy h2,
.section-heading h2 {
  max-width: 860px;
}

.section-text {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-text p:last-child,
.product-card p:last-child,
.legal p {
  margin-bottom: 0;
}

.intro-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(8, 16, 10, 0.76), rgba(5, 7, 5, 0.78));
}

.product-section {
  background:
    linear-gradient(90deg, rgba(0, 230, 118, 0.06), transparent 42%),
    var(--bg);
}

.ecosystem-grid,
.product-grid,
.resource-grid {
  display: grid;
  gap: 14px;
}

.lab-card,
.product-lab-card,
.resource-card,
.console-card,
.about-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(57, 255, 136, 0.045), transparent 46%),
    rgba(10, 18, 12, 0.8);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.22);
}

.lab-card,
.resource-card {
  min-height: 210px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lab-card:hover,
.resource-card:hover,
.product-lab-card:hover,
.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 136, 0.42);
  box-shadow: var(--glow);
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--green-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.lab-card p,
.resource-card p,
.product-lab-card p,
.about-card p {
  color: var(--muted);
}

.product-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid rgba(29, 58, 39, 0.86);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(13, 23, 16, 0.64);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: rgba(57, 255, 136, 0.52);
  background: rgba(0, 230, 118, 0.1);
  color: var(--green-soft);
  outline: none;
}

.filter-button.is-active {
  box-shadow: inset 0 0 22px rgba(0, 230, 118, 0.08);
}

.product-lab-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, opacity 180ms ease;
}

.product-lab-card.is-hidden {
  display: none;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-badge {
  width: fit-content;
  border: 1px solid rgba(57, 255, 136, 0.28);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green-soft);
  background: rgba(0, 230, 118, 0.08);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-soon {
  border-color: rgba(255, 209, 102, 0.26);
  color: var(--warning);
  background: rgba(255, 209, 102, 0.06);
}

.status-dev,
.status-planned {
  border-color: rgba(159, 184, 168, 0.3);
  color: var(--muted);
  background: rgba(159, 184, 168, 0.06);
}

.status-free {
  border-color: rgba(57, 255, 136, 0.3);
  color: var(--green-soft);
}

.price-muted {
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 900;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.product-tags span {
  border: 1px solid rgba(29, 58, 39, 0.84);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--muted);
  background: rgba(5, 7, 5, 0.36);
  font-size: 0.78rem;
  font-weight: 800;
}

.agent-section {
  border-block: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(13, 23, 16, 0.72), rgba(5, 7, 5, 0.92)),
    repeating-linear-gradient(90deg, rgba(29, 58, 39, 0.25) 0 1px, transparent 1px 86px);
}

.console-card {
  overflow: hidden;
}

.console-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 22px;
  list-style: none;
}

.console-list li {
  position: relative;
  border-bottom: 1px solid rgba(29, 58, 39, 0.72);
  padding: 0 0 14px 24px;
  color: var(--text);
  font-weight: 750;
}

.console-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--green-soft);
  font-weight: 900;
}

.resources-section {
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 230, 118, 0.08), transparent 28rem),
    var(--bg);
}

.resource-card {
  min-height: 160px;
}

.roadmap-section {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(8, 16, 10, 0.82), rgba(5, 7, 5, 0.92));
}

.roadmap-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: roadmap;
}

.roadmap-list li {
  counter-increment: roadmap;
  position: relative;
  border: 1px solid rgba(29, 58, 39, 0.88);
  border-radius: 8px;
  padding: 16px 16px 16px 58px;
  background: rgba(10, 18, 12, 0.68);
  color: var(--text);
  font-weight: 760;
}

.roadmap-list li::before {
  content: counter(roadmap, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--green-soft);
  font-size: 0.8rem;
  font-weight: 900;
}

.about-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 230, 118, 0.1), transparent 30rem),
    var(--bg);
}

.about-card {
  padding: clamp(24px, 6vw, 44px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card,
.feature-card,
.testimonial-card,
.metric {
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(57, 255, 136, 0.045), transparent 46%),
    rgba(10, 18, 12, 0.8);
}

.product-card {
  padding: clamp(22px, 5vw, 36px);
  box-shadow: var(--shadow);
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.product-pill {
  margin: 0;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(0, 230, 118, 0.08);
}

.price {
  color: var(--green-soft);
  font-size: clamp(1.55rem, 6vw, 2.2rem);
  font-weight: 900;
  text-shadow: 0 0 24px rgba(0, 230, 118, 0.28);
}

.product-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.product-bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 700;
}

.product-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.46);
}

.product-actions {
  display: grid;
  gap: 12px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.metric:hover {
  transform: translateY(-3px);
  border-color: rgba(57, 255, 136, 0.42);
  box-shadow: var(--glow);
  background:
    linear-gradient(145deg, rgba(57, 255, 136, 0.08), transparent 52%),
    rgba(13, 23, 16, 0.92);
}

.metric strong {
  color: var(--text);
  font-size: clamp(1.7rem, 9vw, 2.7rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric span {
  margin-top: 8px;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 28px;
}

.download-box {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  border: 1px solid rgba(57, 255, 136, 0.24);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 32px);
  background:
    linear-gradient(135deg, rgba(0, 230, 118, 0.09), rgba(5, 7, 5, 0.42)),
    rgba(10, 18, 12, 0.78);
  box-shadow: var(--shadow);
}

.download-box h3 {
  max-width: 600px;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 5vw, 2.05rem);
}

.download-items {
  display: grid;
  gap: 10px;
}

.download-items span {
  border: 1px solid rgba(29, 58, 39, 0.88);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(5, 7, 5, 0.42);
  color: var(--text);
  font-weight: 800;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  gap: 14px;
}

.feature-card,
.testimonial-card {
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: rgba(13, 23, 16, 0.94);
  box-shadow: var(--glow);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--green-soft);
  font-size: 0.85rem;
  font-weight: 900;
}

.feature-card p,
.testimonial-card p {
  color: var(--muted);
}

.audience-section {
  border-block: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(13, 23, 16, 0.68), rgba(5, 7, 5, 0.92)),
    repeating-linear-gradient(90deg, rgba(29, 58, 39, 0.3) 0 1px, transparent 1px 80px);
}

.audience-list {
  display: grid;
  gap: 14px;
}

.audience-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid rgba(29, 58, 39, 0.78);
  padding-bottom: 18px;
}

.audience-item span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 3px;
  background: var(--green);
  box-shadow: 0 0 22px rgba(0, 230, 118, 0.48);
}

.audience-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.testimonial-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--text);
}

.placeholder-label {
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 209, 102, 0.26);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--warning) !important;
  background: rgba(255, 209, 102, 0.06);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-invite {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
}

.final-cta {
  padding: 78px 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(0, 230, 118, 0.16), transparent 34%),
    linear-gradient(135deg, #020402 0%, #071009 52%, #020402 100%);
}

.final-cta-layout {
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: clamp(24px, 6vw, 44px);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 700px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 28px;
  background: #030503;
}

.footer-layout {
  display: grid;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.site-footer p,
.legal p {
  color: var(--muted);
}

.social-links {
  display: grid;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-weight: 750;
}

.social-links span {
  border: 1px solid rgba(29, 58, 39, 0.9);
  border-radius: 999px;
  padding: 3px 7px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--green-soft);
  outline: none;
}

.legal {
  margin-top: 32px;
  border-top: 1px solid rgba(29, 58, 39, 0.72);
  padding-top: 20px;
}

.legal p {
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes miniPulse {
  0%,
  100% {
    transform: scaleY(0.82);
    opacity: 0.76;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }

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

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

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

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

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links a {
    min-height: 40px;
    padding: 0 9px;
    font-size: 0.92rem;
  }

  .language-switch {
    min-height: 40px;
    padding-inline: 9px;
  }

  .nav-links .nav-cta {
    margin-left: 4px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 90svh;
    padding: 112px 0 64px;
  }

  h1 {
    font-size: clamp(4rem, 6vw, 5.45rem);
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
  }

  .terminal-panel {
    align-self: end;
  }

  .section {
    padding: 96px 0;
  }

  .section-grid,
  .audience-layout {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .product-layout {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: stretch;
  }

  .agent-layout,
  .roadmap-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .download-box {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .metrics-grid {
    gap: 14px;
  }

  .download-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ecosystem-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .resource-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .final-cta-layout {
    grid-template-columns: 1fr auto;
  }

  .footer-layout {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .social-links {
    justify-items: end;
  }
}

@media (min-width: 1040px) {
  .container {
    width: calc(100% - 48px);
    max-width: var(--max-width);
  }

  .nav {
    width: calc(100% - 48px);
    max-width: var(--max-width);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

  .mini-chart span {
    animation: none;
  }
}
