﻿:root {
  --bg: #0d0f11;
  --bg-soft: #15181b;
  --panel: rgba(25, 29, 32, 0.92);
  --panel-strong: rgba(31, 35, 39, 0.96);
  --text: #eff4f8;
  --muted: #aeb7bf;
  --accent: #bef3c7;
  --accent-strong: #8fdaa1;
  --border: rgba(76, 84, 92, 0.42);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(190, 243, 199, 0.05), transparent 18%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 88%);
  pointer-events: none;
  opacity: 0.28;
}

a {
  color: inherit;
}

.page-glow {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.18;
  z-index: -1;
}

.page-glow-left {
  top: -8rem;
  left: -10rem;
  background: rgba(190, 243, 199, 0.45);
}

.page-glow-right {
  top: 12rem;
  right: -12rem;
  background: rgba(126, 229, 186, 0.18);
}

.site-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}

.topbar,
.hero {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  margin-bottom: 28px;
  border-radius: 20px;
  background: rgba(18, 21, 23, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(190, 243, 199, 0.18), rgba(143, 218, 161, 0.1));
  border: 1px solid rgba(190, 243, 199, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.status-pill,
.mini-chip {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(190, 243, 199, 0.14);
  border: 1px solid rgba(190, 243, 199, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: 30px;
  align-items: center;
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(190, 243, 199, 0.14), transparent 28%),
    var(--panel);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-text,
.preview-body p,
.footer,
.footer a,
.mini-text,
.preview-meta span,
.preview-stats span,
.hero-points span {
  color: var(--muted);
}

.hero-text {
  max-width: 33rem;
  margin: 20px 0 26px;
  font-size: 1rem;
  line-height: 1.82;
}

.hero-actions,
.footer-links,
.hero-points {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-points {
  margin-top: 18px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-button {
  color: #111315;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 24px rgba(190, 243, 199, 0.16);
}

.ghost-button {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.large {
  min-height: 50px;
  padding: 0 24px;
}

.preview-card {
  padding: 18px;
  border-radius: 24px;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(190, 243, 199, 0.14);
}

.preview-body {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(16, 18, 20, 0.56), rgba(16, 18, 20, 0.44));
}

.preview-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.preview-logo {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(190, 243, 199, 0.18), rgba(143, 218, 161, 0.12));
  border: 1px solid rgba(190, 243, 199, 0.12);
  flex: 0 0 auto;
}

.preview-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.preview-meta {
  display: grid;
  gap: 4px;
  align-content: center;
}

.preview-meta span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.preview-meta strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.preview-body h2 {
  margin: 0 0 12px;
  max-width: 11ch;
  font-size: 1.85rem;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.preview-body p {
  margin: 0;
  max-width: 29ch;
  line-height: 1.74;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.preview-stats article {
  display: grid;
  gap: 7px;
  padding: 14px 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.preview-stats span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.preview-stats strong {
  font-size: 0.98rem;
  line-height: 1.3;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 22px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 16px 16px 40px;
  }

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

  .hero {
    padding: 24px;
  }

  .hero h1,
  .preview-body h2,
  .hero-text,
  .preview-body p {
    max-width: none;
  }

  .preview-badge-row,
  .preview-stats {
    grid-template-columns: 1fr;
  }
}
