/* Realtime Chat - "live signal" dark identity.
   Own system: near-black cool base, mint-cyan neon + electric-blue accents,
   Space Grotesk / DM Sans / JetBrains Mono. Deliberately unlike the other
   elman.group landings. */

:root {
  color-scheme: dark;
  --bg: #080b10;
  --bg-2: #0b0f16;
  --elev: #10151d;
  --surface: #141a24;
  --surface-2: #1a212d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #e9eef4;
  --muted: #93a0b1;
  --faint: #5f6b7b;
  --neon: #3df0c5; /* primary - mint/cyan */
  --neon-ink: #052019; /* text on neon */
  --neon-2: #7aa2ff; /* secondary - electric blue */
  --danger: #ff6b6b;
  --glow: rgba(61, 240, 197, 0.55);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 74rem;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Ambient signal glow + faint grid, fixed behind everything. */
  background-image:
    radial-gradient(
      60rem 40rem at 50% -10%,
      rgba(61, 240, 197, 0.1),
      transparent 60%
    ),
    radial-gradient(
      50rem 40rem at 100% 10%,
      rgba(122, 162, 255, 0.08),
      transparent 55%
    ),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100%,
    3.5rem 3.5rem,
    3.5rem 3.5rem;
  background-position:
    0 0,
    0 0,
    center,
    center;
  background-attachment: fixed;
}
body::before {
  /* Fade the grid out toward the bottom so it doesn't fight the content. */
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--bg) 82%);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
::selection {
  background: rgba(61, 240, 197, 0.24);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
[hidden] {
  display: none !important;
}

/* ---- Utilities ---- */
.rule {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--line-strong),
    transparent
  );
}

/* A live "signal line" divider: a neon dot travels along a faint track. */
.signal {
  position: relative;
  height: 1px;
  background: var(--line);
  overflow: visible;
}
.signal::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 6px;
  width: 6px;
  margin-top: -3px;
  border-radius: 9999px;
  background: var(--neon);
  box-shadow: 0 0 12px 2px var(--glow);
  animation: travel 5.5s linear infinite;
}
@keyframes travel {
  0% {
    left: 2%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    left: 98%;
    opacity: 0;
  }
}

.card {
  background: linear-gradient(180deg, var(--surface), var(--elev));
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--line-strong);
  background: rgba(61, 240, 197, 0.06);
  color: var(--neon);
  padding: 0.35rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.chip .live-dot {
  height: 0.45rem;
  width: 0.45rem;
  border-radius: 9999px;
  background: var(--neon);
  box-shadow: 0 0 0 0 var(--glow);
  animation: ping 2s var(--ease) infinite;
}
@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 var(--glow);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(61, 240, 197, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 240, 197, 0);
  }
}

.focus-ring {
  outline: none;
}
.focus-ring:focus-visible {
  box-shadow:
    0 0 0 2px var(--bg),
    0 0 0 4px var(--neon);
  border-radius: 0.5rem;
}

/* ---- Buttons ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.7rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}
.btn:active {
  transform: scale(0.985);
}
.btn--sm {
  height: 2.3rem;
  padding-inline: 0.9rem;
  font-size: 0.875rem;
}
.btn--lg {
  height: 3.15rem;
  padding-inline: 1.7rem;
  font-size: 1rem;
}
.btn--primary {
  background: var(--neon);
  color: var(--neon-ink);
  box-shadow:
    0 0 0 1px rgba(61, 240, 197, 0.3),
    0 12px 32px -12px var(--glow);
}
.btn--primary:hover {
  background: #5cf6d1;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(61, 240, 197, 0.5),
    0 18px 40px -14px var(--glow);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
}
.btn--soft {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.btn--soft:hover {
  border-color: var(--neon);
  color: var(--neon);
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    180deg,
    rgba(8, 11, 16, 0.85),
    rgba(8, 11, 16, 0.4)
  );
  border-bottom: 1px solid var(--line);
}
.site-header .header-inner {
  margin-inline: auto;
  max-width: var(--maxw);
  height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-family: var(--font-mono);
}
.logo-mark {
  display: grid;
  place-items: center;
  height: 2rem;
  width: 2rem;
  border-radius: 0.55rem;
  background: rgba(61, 240, 197, 0.1);
  border: 1px solid var(--line-strong);
  color: var(--neon);
}
.logo-word {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.logo-word b {
  color: var(--neon);
  font-weight: 500;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-link {
  display: none;
  border-radius: 0.5rem;
  padding: 0.5rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.nav-link:hover {
  color: var(--neon);
}
@media (min-width: 768px) {
  .nav-link {
    display: block;
  }
}

/* ---- Footer ---- */
.site-footer {
  position: relative;
  z-index: 10;
  margin-inline: auto;
  max-width: var(--maxw);
  padding: 2rem 1.5rem 3rem;
}
.site-footer .rule {
  margin-bottom: 1.5rem;
}
.footer-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--faint);
}
.footer-link {
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.footer-link:hover {
  color: var(--neon);
}
@media (min-width: 640px) {
  .footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ---- Reveal + reduced motion ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@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;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .signal::after {
    display: none;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100dvh - 4.25rem);
  padding: 4rem 1.5rem 5rem;
}
.wave-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 60% 55% at center,
    transparent 40%,
    var(--bg) 88%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title {
  margin-top: 1.6rem;
  font-size: 2.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero-title .accent {
  color: var(--neon);
  text-shadow: 0 0 32px var(--glow);
}
.hero-title .cursor {
  color: var(--neon);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.hero-sub {
  margin-top: 1.4rem;
  max-width: 36rem;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}
.hero-cta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.hero-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--faint);
}
.hero-meta b {
  color: var(--neon-2);
  font-weight: 500;
}
.scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.5rem;
  color: var(--faint);
  transition: color 0.2s var(--ease);
}
.scroll-cue:hover {
  color: var(--neon);
}
.scroll-cue svg {
  animation: bob 6s var(--ease) infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@media (min-width: 640px) {
  .hero-title {
    font-size: 4rem;
  }
  .hero-sub {
    font-size: 1.22rem;
  }
}
@media (min-width: 900px) {
  .hero-title {
    font-size: 5rem;
  }
}

/* ---- Section scaffolding ---- */
.section {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .section {
    padding: 5.5rem 1.5rem;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  height: 0.4rem;
  width: 0.4rem;
  border-radius: 9999px;
  background: var(--neon);
  box-shadow: 0 0 8px 1px var(--glow);
}
.section-head {
  max-width: 42rem;
}
.section-title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.section-lead {
  margin-top: 1rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.7rem;
  }
}

/* ---- How it works ---- */
.steps {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.step {
  position: relative;
  padding: 1.75rem;
  overflow: hidden;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--neon);
}
.step-title {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.step-body {
  margin-top: 0.6rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 1px;
  background: linear-gradient(to right, var(--neon), transparent);
  opacity: 0.5;
}

/* ---- Live preview ---- */
.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.check-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 1rem;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--neon);
  background: rgba(61, 240, 197, 0.08)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%233df0c5'%3E%3Cpath d='M232.49 80.49l-128 128a12 12 0 0 1-17 0l-56-56a12 12 0 1 1 17-17L96 183 215.51 63.51a12 12 0 0 1 17 17Z'/%3E%3C/svg%3E")
    center / 0.75rem no-repeat;
}

.preview-visual {
  display: grid;
  place-items: center;
}
.chat-window {
  width: min(25rem, 100%);
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 30px 70px -30px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(61, 240, 197, 0.06),
    0 0 60px -20px var(--glow);
}
.chat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.chat-room {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}
.chat-room b {
  color: var(--neon);
  font-weight: 500;
}
.chat-presence {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
}
.chat-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: var(--neon);
  box-shadow: 0 0 0 0 var(--glow);
  animation: ping 2.4s var(--ease) infinite;
}
.chat-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.bubble {
  max-width: 84%;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 0.9rem;
}
.bubble-name {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--neon-2);
  margin-bottom: 0.2rem;
}
.bubble--in {
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom-left-radius: 0.3rem;
  color: var(--text);
}
.bubble--out {
  align-self: flex-end;
  background: rgba(61, 240, 197, 0.12);
  border: 1px solid rgba(61, 240, 197, 0.35);
  color: #d9fff4;
  border-bottom-right-radius: 0.3rem;
}
.chat-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 0.28rem;
  padding: 0.7rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  border-bottom-left-radius: 0.3rem;
}
.chat-typing span {
  height: 0.42rem;
  width: 0.42rem;
  border-radius: 9999px;
  background: var(--neon);
  animation: typing 1.4s var(--ease) infinite;
}
.chat-typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.chat-typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typing {
  0%,
  60%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}
.chat-composer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.95rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.composer-ico {
  display: grid;
  place-items: center;
  color: var(--faint);
}
.composer-input {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--faint);
}
.composer-send {
  display: grid;
  place-items: center;
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  background: var(--neon);
  color: var(--neon-ink);
}

/* ---- Features (bento) ---- */
.feature-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature {
  position: relative;
  padding: 1.75rem;
  transition:
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.feature:hover {
  border-color: rgba(61, 240, 197, 0.45);
  transform: translateY(-3px);
  box-shadow:
    0 20px 44px -26px rgba(0, 0, 0, 0.9),
    0 0 40px -22px var(--glow);
}
.feature-icon {
  display: grid;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 0.7rem;
  background: rgba(61, 240, 197, 0.08);
  border: 1px solid var(--line-strong);
  color: var(--neon);
}
.feature-title {
  margin-top: 1.1rem;
  font-size: 1.15rem;
  font-weight: 600;
}
.feature-body {
  margin-top: 0.55rem;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ---- Tech stack ---- */
.stack-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stack-card {
  padding: 1.75rem;
}
.stack-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-2);
}
.tag-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-list li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.32rem 0.6rem;
}

/* ---- Privacy band ---- */
.privacy-band {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.privacy-band .section-title {
  margin-top: 1rem;
}
.privacy-cta {
  margin-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--neon);
  transition: color 0.2s var(--ease);
}
.privacy-cta:hover {
  color: #5cf6d1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---- Early access ---- */
.ea-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: var(--line-strong);
  background:
    radial-gradient(
      50rem 24rem at 50% -30%,
      rgba(61, 240, 197, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, var(--surface), var(--elev));
}
.ea-inner {
  max-width: 34rem;
  margin-inline: auto;
  text-align: center;
  padding: 3rem 1.5rem;
}
.ea-form {
  margin: 2rem auto 0;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.ea-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) {
  .ea-fields {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field-label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.field-input {
  height: 2.9rem;
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.35);
  padding-inline: 0.9rem;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-sans);
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.field-input::placeholder {
  color: var(--faint);
}
.field-input:focus-visible {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(61, 240, 197, 0.18);
  outline: none;
}
.field-input.is-invalid {
  border-color: var(--danger);
}
.field-error {
  min-height: 1rem;
  margin: 0;
  font-size: 0.85rem;
  color: var(--danger);
}
.ea-fineprint {
  margin: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--faint);
}
.ea-success {
  margin: 2rem auto 0;
  max-width: 28rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(61, 240, 197, 0.4);
  background: rgba(61, 240, 197, 0.08);
  padding: 1.1rem;
  text-align: left;
}
.ea-success svg {
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: var(--neon);
}
.ea-success p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text);
}
.ea-repos {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
