:root {
  --bg: #06070b;
  --bg-soft: #0d1018;
  --panel: rgba(16, 20, 31, 0.72);
  --panel-strong: rgba(18, 23, 36, 0.88);
  --border: rgba(165, 190, 255, 0.14);
  --text: #eef2ff;
  --muted: #a5afc8;
  --accent: #8ea8ff;
  --accent-2: #7ef0d2;
  --accent-3: #d8a8ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(85, 110, 255, 0.11), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(126, 240, 210, 0.08), transparent 22%),
    linear-gradient(180deg, #05060a 0%, #080b12 45%, #05060a 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    radial-gradient(rgba(255,255,255,0.9) 0.4px, transparent 0.4px);
  background-size: 8px 8px;
  z-index: 0;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 340px;
  height: 340px;
  top: -70px;
  left: -60px;
  background: rgba(120, 145, 255, 0.16);
}

.orb-2 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  right: -40px;
  background: rgba(126, 240, 210, 0.11);
}

.grid-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo{
  height:64px;
  width:auto;
  display:block;
  filter: drop-shadow(0 0 12px rgba(126,240,210,0.35))
          drop-shadow(0 0 28px rgba(142,168,255,0.25));
  transition: transform .3s ease, filter .3s ease;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  color: var(--accent-2);
  text-shadow: 0 0 18px rgba(126, 240, 210, 0.55);
}

.brand-text {
  color: var(--text);
}

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

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px 90px;
}

.hero {
  padding: 72px 0 40px;
}

.eyebrow,
.section-kicker,
.signal-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent-2);
  margin: 0 0 18px;
}

.hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(142, 168, 255, 0.18);
}

.hero-copy {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #071017;
  background: linear-gradient(135deg, var(--accent-2), #99f7ff);
  box-shadow: 0 10px 35px rgba(126, 240, 210, 0.24);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
}

.status-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.dot.live {
  background: #8effc1;
  box-shadow: 0 0 12px rgba(142,255,193,0.65);
}

.dot.beta {
  background: #8ea8ff;
  box-shadow: 0 0 12px rgba(142,168,255,0.65);
}

.signal-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 70px;
}

.signal-card,
.manifesto-card,
.exp-card,
.closing-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.signal-card {
  padding: 22px 22px 20px;
}

.signal-text {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.manifesto {
  margin-bottom: 70px;
}

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

.manifesto-card {
  padding: 24px;
}

.manifesto-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.manifesto-card p {
  margin: 0;
  color: var(--muted);
}

.experiments {
  margin-bottom: 70px;
}

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

.exp-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.exp-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(142,168,255,0.13), transparent 70%);
  pointer-events: none;
}

.exp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(142,168,255,0.28);
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
}

.exp-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.badge,
.lang {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-beta {
  background: rgba(142,168,255,0.13);
  color: #bdd0ff;
  border: 1px solid rgba(142,168,255,0.18);
}

.badge-live {
  background: rgba(126,240,210,0.12);
  color: #b9ffef;
  border: 1px solid rgba(126,240,210,0.18);
}

.badge-concept {
  background: rgba(216,168,255,0.12);
  color: #f0d0ff;
  border: 1px solid rgba(216,168,255,0.18);
}

.lang {
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.exp-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.exp-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.exp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.exp-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}

.exp-link {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 600;
}

.closing-box {
  padding: 28px;
}

.closing-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.closing-box h2 span {
  color: var(--accent-3);
}

.closing-box p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}

.closing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.closing-links a {
  color: var(--accent);
  font-weight: 600;
}

.site-footer {
  padding: 0 24px 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .signal-panel,
  .manifesto-grid,
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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