:root {
  --bg: #0a0612;
  --bg-2: #12081f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f4f0ff;
  --muted: #a399bf;
  --coral: #ff6b4a;
  --coral-dim: rgba(255, 107, 74, 0.2);
  --violet: #a78bfa;
  --cyan: #22d3ee;
  --accent: #c4b5fd;
  --accent-2: #f472b6;
  --success: #4ade80;
  --radius: 16px;
  --radius-sm: 12px;
  --font: "Outfit", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --shadow-glow: 0 0 80px -20px rgba(244, 114, 182, 0.35),
    0 0 60px -30px rgba(167, 139, 250, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Animated background ---- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.bg__aurora {
  position: absolute;
  inset: -40% -20%;
  background: conic-gradient(
    from 200deg at 50% 50%,
    rgba(244, 114, 182, 0.15),
    rgba(167, 139, 250, 0.12),
    rgba(34, 211, 238, 0.1),
    rgba(255, 107, 74, 0.08),
    rgba(244, 114, 182, 0.15)
  );
  animation: aurora 14s ease-in-out infinite alternate;
  filter: blur(70px);
  opacity: 0.9;
}

.bg__blobs {
  position: absolute;
  inset: 0;
}

.bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: float 12s ease-in-out infinite;
}

.bg__blob--a {
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  background: rgba(167, 139, 250, 0.35);
  top: -5%;
  right: -5%;
  animation-delay: -2s;
}

.bg__blob--b {
  width: min(50vw, 440px);
  height: min(50vw, 440px);
  background: rgba(255, 107, 74, 0.2);
  bottom: 10%;
  left: -15%;
  animation-delay: -5s;
}

.bg__blob--c {
  width: min(35vw, 320px);
  height: min(35vw, 320px);
  background: rgba(34, 211, 238, 0.18);
  top: 40%;
  left: 35%;
  animation-delay: -8s;
}

.bg__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black, transparent);
}

.bg__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(34, 211, 238, 0.03) 2px,
    rgba(34, 211, 238, 0.03) 3px
  );
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 40%, transparent 75%);
  animation: scan-drift 10s linear infinite;
  opacity: 0.65;
}

@keyframes scan-drift {
  0% {
    transform: translateY(-8%);
  }
  100% {
    transform: translateY(8%);
  }
}

@keyframes aurora {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(20deg) scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(2%, 3%) scale(1.04);
  }
}

/* ---- Marquee (terminal / AI vibe) ---- */
.marquee {
  position: relative;
  border-block: 1px solid rgba(167, 139, 250, 0.22);
  background: linear-gradient(90deg, rgba(6, 4, 14, 0.95), rgba(18, 10, 32, 0.88), rgba(6, 4, 14, 0.95));
  overflow: hidden;
  margin-bottom: 0;
}

.marquee--neon .marquee__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.06),
    rgba(167, 139, 250, 0.08),
    transparent
  );
  pointer-events: none;
  animation: marquee-glow 6s ease-in-out infinite;
}

@keyframes marquee-glow {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.marquee__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: max-content;
  padding: 0.72rem 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  animation: marquee 32s linear infinite;
}

.marquee__tag {
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
  color: var(--cyan);
  flex-shrink: 0;
}

.marquee__item {
  color: #c4b8dc;
  white-space: nowrap;
}

.marquee__dot {
  color: var(--accent-2);
  font-size: 0.55rem;
  opacity: 0.85;
}

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

/* ---- Pulse strip (under hero) ---- */
.pulse-row {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 2.75rem;
}

@media (min-width: 720px) {
  .pulse-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.pulse-row__item {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  animation: rise 0.75s ease-out both;
}

.pulse-row__item--1 {
  animation-delay: 0.05s;
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow: 0 0 40px -20px rgba(34, 211, 238, 0.35);
}

.pulse-row__item--2 {
  animation-delay: 0.12s;
  border-color: rgba(167, 139, 250, 0.22);
  box-shadow: 0 0 40px -20px rgba(167, 139, 250, 0.3);
}

.pulse-row__item--3 {
  animation-delay: 0.18s;
  border-color: rgba(244, 114, 182, 0.2);
  box-shadow: 0 0 40px -20px rgba(244, 114, 182, 0.25);
}

.pulse-row__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--accent-2));
  opacity: 0.65;
}

.pulse-row__k {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.pulse-row__v {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ebe4ff;
}

/* ---- Layout ---- */
.wrap {
  width: min(1100px, 92vw);
  margin-inline: auto;
  padding-block: 1.75rem 4rem;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.top__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo__ops {
  background: linear-gradient(120deg, var(--coral), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
}

.badge--pulse {
  position: relative;
  color: var(--text);
}

.badge--pulse::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--coral), var(--violet), var(--cyan));
  opacity: 0.35;
  z-index: -1;
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.02);
  }
}

.btn-ghost {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn-ghost:hover {
  background: var(--surface-2);
  border-color: rgba(167, 139, 250, 0.35);
}

.btn-ghost:active {
  transform: scale(0.98);
}

/* ---- Hero ---- */
.hero-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
    margin-bottom: 4rem;
  }
}

.hero-copy {
  animation: rise 0.8s ease-out both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.eyebrow__icon {
  color: var(--cyan);
  font-size: 0.65rem;
  line-height: 1;
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.8);
}

.eyebrow__icon--pulse {
  animation: live-blink 2.2s ease-in-out infinite;
}

@keyframes live-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hero-copy h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.grad-text {
  background: linear-gradient(105deg, var(--coral), var(--accent-2), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead strong {
  color: #d8d0ea;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), #e11d48);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: filter 0.2s ease, transform 0.12s ease;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-primary:active {
  transform: scale(0.98);
}

.hero-actions__meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.4);
}

.pop {
  color: #e8e2f4;
  font-weight: 600;
}

/* ---- Hero: AI chat demo ---- */
.hero-visual {
  animation: rise 0.9s ease-out 0.12s both;
}

.ai-chat {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(167, 139, 250, 0.28);
  background: linear-gradient(
    165deg,
    rgba(18, 12, 32, 0.92) 0%,
    rgba(8, 6, 16, 0.97) 60%,
    rgba(12, 30, 40, 0.35) 100%
  );
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.06),
    0 32px 64px -32px rgba(0, 0, 0, 0.75),
    0 0 80px -40px rgba(167, 139, 250, 0.35);
  overflow: hidden;
  max-width: 440px;
  margin-inline: auto;
}

.ai-chat::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto -20%;
  height: 60%;
  background: linear-gradient(
    105deg,
    rgba(34, 211, 238, 0.12),
    transparent 50%,
    rgba(167, 139, 250, 0.1)
  );
  filter: blur(28px);
  opacity: 0.7;
  pointer-events: none;
}

.ai-chat__chrome {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.ai-chat__traffic {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.ai-chat__traffic span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--surface-2);
}

.ai-chat__traffic span:nth-child(1) {
  background: #fb7185;
}
.ai-chat__traffic span:nth-child(2) {
  background: #facc15;
}
.ai-chat__traffic span:nth-child(3) {
  background: #4ade80;
}

.ai-chat__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.ai-chat__glyph {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.2), rgba(167, 139, 250, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.ai-chat__name {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ai-chat__sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ai-chat__status {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  color: var(--success);
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  box-shadow: 0 0 20px -6px rgba(74, 222, 128, 0.5);
}

.ai-chat__thread {
  position: relative;
  padding: 1.1rem 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 12.5rem;
}

.ai-msg--user {
  align-self: flex-end;
  max-width: 92%;
}

.ai-msg--user p {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 18px 18px 6px 18px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #0f172a;
  font-weight: 500;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  box-shadow: 0 8px 24px -12px rgba(251, 191, 36, 0.5);
}

.ai-msg--bot {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  max-width: 100%;
}

.ai-msg__avatar {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
}

.ai-msg__col {
  flex: 1;
  min-width: 0;
}

.ai-msg__bubble {
  padding: 0.85rem 1rem;
  border-radius: 16px 16px 16px 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.025) 100%
  );
  box-shadow: 0 16px 40px -28px rgba(34, 211, 238, 0.35);
}

.ai-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.15rem 0 0.6rem;
  min-height: 1.75rem;
}

.ai-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: typing-bounce 1.1s ease-in-out infinite;
}

.ai-typing span:nth-child(2) {
  animation-delay: 0.15s;
  background: var(--violet);
}

.ai-typing span:nth-child(3) {
  animation-delay: 0.3s;
  background: var(--accent-2);
}

.ai-typing--hidden {
  display: none !important;
}

@keyframes typing-bounce {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.ai-msg__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #ece8fa;
}

.ai-msg__text::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-left: 2px;
  vertical-align: -0.12em;
  background: var(--cyan);
  opacity: 0.85;
  animation: caret-blink 0.95s step-end infinite;
}

.ai-typing:not(.ai-typing--hidden) ~ .ai-msg__text::after {
  display: none;
}

.ai-msg__text:empty::after {
  display: none;
}

@keyframes caret-blink {
  50% {
    opacity: 0;
  }
}

.ai-msg__meta {
  margin: 0.45rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.ai-chat__composer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.28);
}

.ai-chat__input-fake {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  border: 1px dashed rgba(167, 139, 250, 0.35);
  background: rgba(0, 0, 0, 0.35);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ai-chat__send {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  color: #0f172a;
  background: linear-gradient(145deg, var(--cyan), var(--violet));
  box-shadow: 0 8px 20px -10px rgba(34, 211, 238, 0.6);
}

.hero-visual__caption {
  margin: 1rem 0 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Feature zone (showcase cards + dialogue) ---- */
.feature-zone {
  margin-bottom: 2.5rem;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-head__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.section-head__prompt {
  color: var(--success);
  margin-right: 0.35rem;
}

.section-head__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.038em;
  color: #f0e8ff;
}

.section-head__lede {
  margin: 0;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.55;
}

.showcase {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .showcase {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .showcase__card--wide {
    grid-column: 1 / -1;
  }
}

.showcase__card {
  position: relative;
  padding: 1.35rem 1.45rem 1.25rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: linear-gradient(
    155deg,
    rgba(22, 14, 38, 0.92) 0%,
    rgba(8, 6, 16, 0.88) 55%,
    rgba(12, 40, 48, 0.12) 100%
  );
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: rise 0.7s ease-out both;
}

.showcase__card:nth-child(1) {
  animation-delay: 0.04s;
}
.showcase__card:nth-child(2) {
  animation-delay: 0.1s;
}
.showcase__card:nth-child(3) {
  animation-delay: 0.16s;
}

.showcase__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  opacity: 0.55;
}

.showcase__card--wallet::before {
  background: linear-gradient(90deg, #fb7185, var(--violet));
}

.showcase__card--agents::before {
  background: linear-gradient(90deg, var(--cyan), var(--accent-2));
}

.showcase__card--solo::before {
  background: linear-gradient(90deg, #fde68a, var(--cyan));
}

.showcase__card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 28px 56px -36px rgba(167, 139, 250, 0.45),
    0 0 60px -40px rgba(34, 211, 238, 0.2);
}

.showcase__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.showcase__badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
}

.showcase__icon {
  font-size: 1.15rem;
  color: var(--cyan);
  opacity: 0.85;
}

.showcase__h {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.showcase__h em {
  font-style: italic;
  color: var(--accent-2);
}

.showcase__p {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.showcase__transcript {
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.showcase__line {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #b8adc8;
}

.showcase__line:last-child {
  margin-bottom: 0;
}

.showcase__line span {
  display: inline-block;
  min-width: 2.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 0.35rem;
  vertical-align: 0.05em;
}

.showcase__line--you span {
  color: #fde68a;
}

.showcase__line--ops span {
  color: var(--cyan);
}

/* ---- Waitlist: human conversation (compact) ---- */
.human-waitlist {
  margin-top: 0.5rem;
}

.human-waitlist__shell {
  max-width: 32rem;
  margin-inline: auto;
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    165deg,
    rgba(28, 22, 44, 0.88) 0%,
    rgba(10, 8, 18, 0.95) 100%
  );
  box-shadow: 0 24px 48px -32px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.human-waitlist__head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.human-waitlist__face {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #1e1b2e;
  background: linear-gradient(135deg, #fde68a, #fdba74);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px -4px rgba(253, 186, 116, 0.5);
}

.human-waitlist__head h2 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.human-waitlist__sub {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.human-waitlist__progress {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9b8fb8;
}

.human-waitlist__form-wrap {
  min-height: 8rem;
}

.human-step {
  outline: none;
}

.hm-thread {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hm-from {
  display: flex;
  justify-content: flex-start;
}

.hm-bubble--them {
  max-width: 100%;
  padding: 0.75rem 0.95rem;
  border-radius: 16px 16px 16px 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.4);
}

.hm-bubble--them p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #e8e0f4;
}

.hm-reply {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: stretch;
  padding-left: 0.25rem;
}

.hm-reply--stack {
  gap: 0.65rem;
}

.hm-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #b8adc8;
  letter-spacing: 0.02em;
}

.hm-optional {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.68rem;
}

input.hm-input,
select.hm-select,
textarea.hm-textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.human-waitlist input::placeholder,
.human-waitlist textarea::placeholder {
  color: #7a7188;
  opacity: 1;
}

textarea.hm-textarea {
  resize: vertical;
  min-height: 3.5rem;
  line-height: 1.45;
}

select.hm-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23a399bf' stroke-linecap='round' stroke-width='1.5' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

input.hm-input:focus-visible,
select.hm-select:focus-visible,
textarea.hm-textarea:focus-visible {
  border-color: rgba(253, 186, 116, 0.55);
  box-shadow: 0 0 0 3px rgba(253, 186, 116, 0.12);
}

.hm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 0.25rem;
}

.hm-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: filter 0.15s ease, transform 0.1s ease;
}

.hm-btn--primary {
  color: #1a1525;
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  box-shadow: 0 6px 20px -8px rgba(251, 191, 36, 0.6);
}

.hm-btn--primary:hover {
  filter: brightness(1.05);
}

.hm-btn--primary:active {
  transform: scale(0.98);
}

.hm-btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hm-btn--ghost {
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
}

.hm-btn--ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.hm-status {
  margin: 0.75rem 0 0;
  min-height: 1.1rem;
  font-size: 0.8rem;
}

.hm-status--err {
  color: #fb7185;
}

.human-success {
  padding: 0.5rem 0 0;
  animation: rise 0.5s ease-out both;
}

.human-success .hm-bubble--them {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.25);
}

.human-success .hm-bubble--them p {
  color: #d8f5e0;
}

.human-success__tiny {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

.human-waitlist__foot {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  line-height: 1.45;
  color: #8a7fa3;
  text-align: center;
}

/* ---- Chatbot-style waitlist (thread + composer + chips) ---- */
.cb-layout {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cb-progress-wrap {
  padding: 0 0.1rem 0.65rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cb-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.cb-progress-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b8a8d4;
}

.cb-progress-pct {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  opacity: 0.95;
}

.cb-progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.cb-progress-bar {
  height: 100%;
  width: 16.66%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--accent-2));
  background-size: 140% 100%;
  transition: width 0.35s ease;
  box-shadow: 0 0 16px -4px rgba(34, 211, 238, 0.45);
}

.cb-thread {
  max-height: min(46vh, 360px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.35rem 0.15rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  scroll-behavior: smooth;
}

.cb-msg {
  display: flex;
  width: 100%;
  animation: rise 0.35s ease-out both;
}

.cb-msg--bot {
  justify-content: flex-start;
}

.cb-msg--user {
  justify-content: flex-end;
}

.cb-msg--typing .cb-bubble--bot {
  padding: 0.65rem 1rem;
}

.cb-bubble--bot {
  max-width: 94%;
  padding: 0.65rem 0.9rem;
  border-radius: 16px 16px 16px 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 8px 24px -18px rgba(0, 0, 0, 0.5);
}

.cb-bubble--bot p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.48;
  color: #ebe4f7;
}

.cb-bubble--bot strong {
  color: #fff;
  font-weight: 700;
}

.cb-bubble--user {
  max-width: 88%;
  padding: 0.5rem 0.8rem;
  border-radius: 16px 16px 5px 16px;
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 600;
  color: #1e293b;
  background: linear-gradient(135deg, #fef9c3, #fde68a);
  box-shadow: 0 6px 18px -10px rgba(251, 191, 36, 0.45);
}

.cb-dots {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.cb-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: typing-bounce 1s ease-in-out infinite;
}

.cb-dots span:nth-child(2) {
  animation-delay: 0.15s;
  background: var(--violet);
}

.cb-dots span:nth-child(3) {
  animation-delay: 0.28s;
  background: var(--accent-2);
}

.cb-hint {
  margin: 0;
  padding: 0.35rem 0.15rem 0.25rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #a898c4;
  min-height: 1.15rem;
}

.cb-hint:empty {
  display: none;
}

.cb-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.15rem 0 0.35rem;
}

.cb-chip {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.4);
  background: rgba(167, 139, 250, 0.1);
  color: #e4dcff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.cb-chip:hover {
  background: rgba(167, 139, 250, 0.22);
  border-color: rgba(167, 139, 250, 0.55);
}

.cb-chip:active {
  transform: scale(0.98);
}

.cb-composer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
  margin-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#cb-input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  outline: none;
}

#cb-input:focus-visible {
  border-color: rgba(253, 186, 116, 0.55);
  box-shadow: 0 0 0 3px rgba(253, 186, 116, 0.12);
}

.cb-send {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  color: #1a1525;
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  box-shadow: 0 4px 14px -8px rgba(251, 191, 36, 0.6);
  transition: filter 0.15s ease, transform 0.1s ease;
}

.cb-send svg {
  display: block;
}

.cb-send:hover {
  filter: brightness(1.05);
}

.cb-send:active {
  transform: scale(0.98);
}

.cb-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cb-join-row {
  padding: 0.35rem 0 0.25rem;
}

.cb-join {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  border: none;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  color: #0f172a;
  background: linear-gradient(135deg, #86efac, #4ade80);
  box-shadow: 0 8px 24px -14px rgba(74, 222, 128, 0.55);
  transition: filter 0.15s ease, transform 0.1s ease;
}

.cb-join:hover {
  filter: brightness(1.06);
}

.cb-join:active {
  transform: scale(0.99);
}

.cb-join:disabled {
  opacity: 0.65;
  cursor: wait;
}

#waitlist-form {
  display: block;
}

#waitlist-form button[type="submit"].hm-btn--primary {
  /* submit matches primary pill; avoid global violet submit */
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  color: #1a1525;
  box-shadow: 0 6px 20px -8px rgba(251, 191, 36, 0.6);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  margin-top: 3.5rem;
  padding: 2.25rem 0 2.5rem;
  border-top: 1px solid rgba(167, 139, 250, 0.2);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  text-align: left;
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
    gap: 2.5rem;
  }
}

.site-footer__brand strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  background: linear-gradient(105deg, #fff, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer__brand > span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.site-footer__tiny {
  margin: 0.65rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #7dd3fc;
  opacity: 0.85;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ddd5f4;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__links a:hover {
  color: var(--cyan);
}

.site-footer__soon {
  margin-left: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.12rem 0.4rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  vertical-align: middle;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer__mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.site-footer__dot {
  opacity: 0.4;
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ai-msg__text::after {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

  .marquee__inner {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 100%;
    gap: 0.75rem 1.5rem;
    text-align: center;
    padding-inline: 1rem;
  }
}

/* ---- FAQ Zone (AEO optimized) ---- */
.faq-zone {
  margin-bottom: 5rem;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(167, 139, 250, 0.4);
  transform: translateY(-2px);
}

.faq-item h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

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

.site-footer__admin {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.site-footer__admin:hover {
  opacity: 1;
  text-decoration: underline;
}
