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

body {
  font-family: 'Sora', sans-serif;
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.12), transparent 32%),
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.16), transparent 28%),
    linear-gradient(180deg, #070810 0%, #090b14 100%);
  color: #e2e8f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: #22d3ee; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
nav.site-nav {
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(7, 8, 16, 0.84);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

nav.site-nav .brand {
  font-weight: 700;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #8b5cf6, #22d3ee 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav.site-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav.site-nav ul a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 400;
}

nav.site-nav ul a:hover {
  color: #e2e8f0;
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 5rem 0 3rem;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.panel-label {
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0.9rem 0 1rem;
}

.hero-text {
  max-width: 700px;
  font-size: 1.08rem;
  color: #cbd5e1;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #7c3aed, #0891b2);
  color: #f8fafc;
}

.button-secondary {
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.62);
  color: #e2e8f0;
}

.hero-panel,
.stack-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(10, 12, 24, 0.96));
  border: 1px solid rgba(103, 232, 249, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  border-radius: 22px;
  padding: 1.5rem;
}

.snapshot-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.snapshot-grid strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f8fafc;
}

.snapshot-grid span {
  display: block;
  color: #94a3b8;
  margin-top: 0.2rem;
}

/* Page header (non-home pages) */
.page-header {
  padding: 4rem 0 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.page-header .subhead {
  color: #94a3b8;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* Sections */
section.block {
  padding: 3rem 0;
}

section.block h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
}

section.block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: #e2e8f0;
}

section.block p {
  color: #cbd5e1;
  margin-bottom: 1rem;
}

section.block ul {
  color: #cbd5e1;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

section.block ul li {
  margin-bottom: 0.4rem;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #94a3b8;
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 3rem;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  overflow: hidden;
}

.credibility-strip div {
  padding: 1rem 1.1rem;
  background: rgba(9, 12, 24, 0.78);
  color: #cbd5e1;
  font-size: 0.92rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.plain-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.plain-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.plain-list li:last-child {
  border-bottom: 0;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.22), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* Apps grid */
.apps {
  padding: 3rem 0;
}

.apps h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  display: block;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.76), rgba(10, 12, 24, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  color: inherit;
}

.card:hover {
  border-color: rgba(103, 232, 249, 0.45);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.card h3 .viz {
  color: #67e8f9;
}

.card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

.status {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.status.live {
  color: #34d399;
  background: rgba(52, 211, 153, 0.14);
}

.status.coming-soon {
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.14);
}

.status.in-dev {
  color: #94a3b8;
  background: #94a3b814;
}

/* Product page */
.product-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.product-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.product-hero h1 .viz {
  color: #67e8f9;
}

.product-hero .lede {
  max-width: 640px;
  margin: 1rem auto 0;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.76), rgba(10, 12, 24, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  padding: 1.25rem;
}

.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #e2e8f0;
}

.feature p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
}

.callout {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.76), rgba(10, 12, 24, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-left: 3px solid #22d3ee;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.callout p {
  margin: 0;
  color: #cbd5e1;
}

/* Contact / info */
.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.info-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.76), rgba(10, 12, 24, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
}

.info-card .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #67e8f9;
  margin-bottom: 0.4rem;
}

.info-card .value {
  color: #e2e8f0;
  font-size: 1rem;
}

/* Legal text */
.legal h2 {
  margin-top: 2rem;
}

.legal .updated {
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  padding: 4rem 0 3rem;
  text-align: center;
  color: #475569;
  font-size: 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  margin-top: 4rem;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: #94a3b8;
  font-size: 0.85rem;
}

footer .email {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

footer .meta {
  color: #475569;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

@media (max-width: 860px) {
  .hero-home,
  .two-column,
  .credibility-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 640px) {
  nav.site-nav .container {
    flex-direction: column;
    gap: 0.8rem;
  }

  nav.site-nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .container {
    padding: 0 1rem;
  }

  .page-header h1,
  .product-hero h1 {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 2.3rem;
  }
}
