:root {
  --bg: #07111f;
  --bg-soft: #0d1b2f;
  --panel: rgba(10, 24, 43, 0.8);
  --panel-strong: #10253f;
  --text: #edf4ff;
  --muted: #aebbd1;
  --line: rgba(173, 196, 229, 0.16);
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 0 28%),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.14), transparent 0 22%),
    linear-gradient(160deg, #040b14 0%, #07111f 48%, #0c1c31 100%);
}

img {
  max-width: 100%;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 32px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  padding: 28px 0 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.privacy-section h2,
.signup-copy h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  max-width: 14ch;
}

.lede,
.info-card p,
.steps p,
.privacy-section p,
.signup-copy p,
.site-footer p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.lede {
  max-width: 62ch;
  margin: 16px 0 0;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 20px;
}

.btn {
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #04111c;
  box-shadow: 0 14px 28px rgba(56, 189, 248, 0.2);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 14px 28px rgba(239, 68, 68, 0.25);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
  color: #d7e4f8;
}

.hero-card,
.info-card,
.steps article,
.signup-section,
.privacy-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card {
  padding: 22px;
}

.status-pill {
  display: inline-flex;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-card h2 {
  margin: 16px 0 18px;
  font-size: 1.55rem;
  line-height: 1.2;
}

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

.metric-grid div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.metric-grid strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 28px 0;
}

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

.section-heading h2,
.privacy-section h2,
.signup-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

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

.info-card {
  padding: 20px;
}

.info-card h3,
.steps h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.section-alt {
  padding-top: 18px;
}

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

.steps article {
  padding: 18px;
}

.steps span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 12px;
}

.privacy-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding: 22px;
}

.privacy-list {
  margin: 0;
  padding-left: 18px;
  color: #dce8fa;
  line-height: 1.7;
}

.signup-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  padding: 22px;
}

.ai-bot-callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  color: #dcfce7;
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-weight: 700;
}

.ai-bot-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #052e16;
  font-size: 1rem;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: #dce8fa;
  font-weight: 600;
}

.signup-form input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.powered-by-section {
  width: 100%;
  text-align: center;
  padding: 18px 0 10px;
}

.powered-by-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.powered-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.powered-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 6px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.powered-logo--anyverse {
  width: 48px;
  height: 48px;
  background: #ffffff;
  padding: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.powered-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.map-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.map-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-frame {
  width: 100%;
  height: 340px;
  min-height: 280px;
  border: 0;
  border-radius: 14px;
}

.map-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-inline: 14px;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0 8px;
  font-size: 0.92rem;
}

.monitoring-section {
  padding-top: 12px;
  padding-bottom: 30px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  height: 68px;
}

.logo-track {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  display: flex;
  gap: 12px;
  min-width: max-content;
  padding-left: 12px;
  animation: marquee 26s linear infinite;
}

.logo-track.clone {
  left: 100%;
  animation-delay: 13s;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-pill svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

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

@media (max-width: 640px) {
  .logo-marquee {
    height: auto;
    padding: 10px 12px;
    overflow-x: auto;
  }

  .logo-track {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    animation: none;
    gap: 10px;
    white-space: nowrap;
    padding-left: 0;
  }

  .logo-track.clone {
    display: none;
  }

  .logo-pill {
    padding: 5px 8px;
    gap: 6px;
    font-size: 0.82rem;
  }

  .logo-pill svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 900px) {
  .hero,
  .privacy-section,
  .signup-section,
  .steps,
  .card-grid,
  .powered-by-row {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-section {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding-top: 8px;
  }

  .hero h1 {
    max-width: none;
  }

  .map-card {
    padding: 10px;
    gap: 8px;
  }

  .map-frame {
    height: 280px;
    min-height: 240px;
    aspect-ratio: auto;
  }

  .map-open-btn {
    width: 100%;
    justify-content: center;
  }
}
