:root {
  --bg: #050816;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);
  --text: #ffffff;
  --muted: #c6c9d3;
  --muted-2: #8f96a8;
  --accent: #6ee7b7;
  --accent-soft: rgba(110, 231, 183, 0.1);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

img {
  display: block;
  max-width: 100%;
}

.page-bg,
.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-bg {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.06), transparent 28%),
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 32%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.grid-overlay {
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
}

.site-shell {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 96px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(110, 231, 183, 0.22);
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.1);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(110, 231, 183, 0.24);
  border-radius: 50%;
}

.brand-mark::after {
  inset: 15px;
}

.brand-mark-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(110, 231, 183, 0.6);
}

.brand-kicker,
.section-kicker,
.panel-label,
.status-label,
.platform-label,
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-kicker {
  color: #9ca3b4;
}

.brand-subtitle {
  margin-top: 2px;
  font-size: 14px;
  color: #e5e7eb;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: #c9ced9;
  transition: 160ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: 180ms ease;
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
}

.button-solid {
  background: #ffffff;
  color: #050816;
}

.button-solid:hover {
  background: #e9ebef;
}

.button-outline {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-ghost {
  color: #c9ced9;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 64px;
  align-items: center;
  padding: 28px 0 84px;
}

.eyebrow-accent {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(110, 231, 183, 0.2);
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.1);
  color: #d6fbe9;
}

.hero h1,
.section-head h2,
.divider-section h2,
.panel h2,
.community-banner h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  margin-top: 20px;
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 700;
}

.hero-text {
  max-width: 42rem;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.status-card {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.status-card strong {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #f6f7fb;
}

.status-label,
.section-kicker,
.panel-label,
.platform-label {
  color: var(--muted-2);
}

.hero-visual {
  position: relative;
}

.radar-motif {
  position: absolute;
  left: -120px;
  top: 50%;
  width: 420px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(110, 231, 183, 0.18);
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at center, rgba(16, 185, 129, 0.18), rgba(3, 7, 18, 0.04) 42%, rgba(3, 7, 18, 0) 68%);
  box-shadow: 0 0 80px rgba(16, 185, 129, 0.08);
}

.radar-ring,
.radar-cross,
.radar-center,
.radar-dot {
  position: absolute;
}

.radar-ring {
  border: 1px solid rgba(110, 231, 183, 0.12);
  border-radius: 50%;
}

.radar-ring-1 { inset: 20px; }
.radar-ring-2 { inset: 48px; }
.radar-ring-3 { inset: 82px; }

.radar-cross-v {
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(110, 231, 183, 0.14);
}

.radar-cross-h {
  top: 50%;
  left: 20px;
  right: 20px;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(110, 231, 183, 0.14);
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 90deg,
    rgba(16, 185, 129, 0) 0deg,
    rgba(16, 185, 129, 0) 320deg,
    rgba(52, 211, 153, 0.25) 345deg,
    rgba(167, 243, 208, 0.65) 358deg,
    rgba(16, 185, 129, 0) 360deg
  );
  animation: sweep 8s linear infinite;
  -webkit-mask-image: radial-gradient(circle at center, transparent 0 20%, black 22% 100%);
  mask-image: radial-gradient(circle at center, transparent 0 20%, black 22% 100%);
}

.radar-center {
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(167, 243, 208, 0.6);
  border-radius: 50%;
  background: rgba(167, 243, 208, 0.18);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 24px rgba(110, 231, 183, 0.45);
}

.radar-dot {
  border-radius: 50%;
  background: rgba(167, 243, 208, 0.88);
  box-shadow: 0 0 16px rgba(110, 231, 183, 0.56);
}

.radar-dot-1 {
  right: 19%;
  top: 31%;
  width: 10px;
  height: 10px;
}

.radar-dot-2 {
  left: 24%;
  top: 56%;
  width: 8px;
  height: 8px;
}

.radar-dot-3 {
  right: 29%;
  bottom: 18%;
  width: 8px;
  height: 8px;
}

.visual-card,
.info-card,
.panel,
.community-banner,
.divider-section {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.visual-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.35);
}

.panel-title {
  margin-top: 4px;
  font-size: 14px;
  color: #e5e7eb;
}

.retain-pill,
.preview-chip,
.tag,
.icon-badge,
.pills span {
  border-radius: 999px;
}

.retain-pill {
  padding: 8px 12px;
  border: 1px solid rgba(110, 231, 183, 0.2);
  background: rgba(110, 231, 183, 0.1);
  font-size: 12px;
  color: #d6fbe9;
  white-space: nowrap;
}

.preview-frame {
  position: relative;
  overflow: hidden;
  margin: 0 14px 14px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #08111d;
  aspect-ratio: 16 / 10;
}

.preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(34, 197, 94, 0.18), rgba(8, 17, 29, 0.95) 45%);
}

.preview-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(110, 231, 183, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 183, 0.18) 1px, transparent 1px);
  background-size: 34px 34px;
}

.preview-fallback::after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(167, 243, 208, 0.12);
  border-radius: 50%;
}

.preview-fallback-card {
  position: relative;
  z-index: 1;
  max-width: 380px;
  padding: 18px 20px;
  border: 1px solid rgba(167, 243, 208, 0.16);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  text-align: center;
}

.panel-label-green {
  color: #d6fbe9;
}

.preview-fallback-text {
  margin-top: 8px;
  font-size: 14px;
  color: #e5e7eb;
}

.preview-overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.74));
}

.preview-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  font-size: 12px;
  color: #d1d5db;
}

.divider-section,
.section-block,
.split-panel,
.community-banner {
  margin-top: 0;
}

.divider-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-inline: none;
  border-radius: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  backdrop-filter: none;
}

.divider-section h2,
.section-head h2,
.panel h2,
.community-banner h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 650;
}

.divider-section p,
.section-head p,
.panel p,
.community-banner p,
.info-card p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.section-block {
  padding: 72px 0 80px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.section-head > p {
  max-width: 42rem;
  margin: 0;
}

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

.info-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
}

.info-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d1d5db;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  color: #d1d5db;
  font-size: 14px;
}

.info-card h3 {
  margin: 18px 0 0;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.info-card p {
  margin: 14px 0 0;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pills span {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(110, 231, 183, 0.15);
  background: rgba(110, 231, 183, 0.05);
  font-size: 12px;
  color: #d6fbe9;
}

.info-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.info-card a:hover {
  color: #d6fbe9;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  padding-bottom: 72px;
}

.panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 30px;
}

.panel-links {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.03));
}

.panel p {
  max-width: 46ch;
  margin: 18px 0 0;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.platform-link {
  position: relative;
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  transition: 180ms ease;
}

.platform-link:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
}

.platform-link strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: #f7f8fb;
}

.platform-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
}

.community-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.community-banner p {
  max-width: 60rem;
  margin: 16px 0 0;
}

.community-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted-2);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer nav a:hover {
  color: #ffffff;
}

@keyframes sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .hero,
  .divider-section,
  .split-panel,
  .community-banner,
  .section-head {
    grid-template-columns: 1fr;
  }

  .site-header,
  .section-head,
  .community-banner {
    align-items: flex-start;
  }

  .hero {
    gap: 36px;
  }

  .radar-motif {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 420px);
    margin: 0 auto 20px;
    transform: none;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    border-radius: 28px;
  }

  .site-header,
  .status-grid,
  .card-grid,
  .link-grid,
  .community-actions,
  .site-footer {
    display: grid;
  }

  .site-nav,
  .site-footer nav {
    gap: 8px;
  }

  .status-grid,
  .card-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .community-actions {
    width: 100%;
  }

  .community-actions .button,
  .site-nav .button {
    width: 100%;
  }

  .preview-overlay,
  .visual-card-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding-inline: 16px;
    padding-top: 16px;
    padding-bottom: 72px;
  }

  .hero {
    padding-top: 12px;
    padding-bottom: 56px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-text,
  .divider-section p,
  .section-head p,
  .panel p,
  .community-banner p,
  .info-card p {
    font-size: 15px;
  }

  .info-card,
  .panel,
  .community-banner {
    padding: 22px;
  }

  .visual-card-top,
  .preview-overlay {
    margin: 10px;
    padding: 14px;
  }

  .preview-frame {
    margin: 0 10px 10px;
  }

  .site-footer {
    margin-top: 56px;
  }
}
