:root {
  --bg: #0b0b12;
  --surface: #141420;
  --surface-2: #1b1b2a;
  --gold: #d9a441;
  --purple: #7a3ff2;
  --violet: #a56bff;
  --text: #f5f5f7;
  --muted: #b9b9c9;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(122, 63, 242, 0.24), transparent 28%),
    radial-gradient(circle at top left, rgba(217, 164, 65, 0.1), transparent 22%),
    linear-gradient(180deg, #0b0b12 0%, #0d0d16 100%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(11, 11, 18, 0.72);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(122, 63, 242, 0.28);
}

.brand-text {
  font-size: 18px;
}

.main-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(165, 107, 255, 0.22);
  background: rgba(165, 107, 255, 0.08);
  border-radius: 999px;
  color: #dcc9ff;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 0.96;
  letter-spacing: -1.8px;
}

.hero-text {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), #f0bf60);
  color: #111;
  box-shadow: 0 16px 36px rgba(217, 164, 65, 0.25);
}

.button-secondary {
  background: rgba(122, 63, 242, 0.12);
  border-color: rgba(165, 107, 255, 0.22);
  color: #f2ecff;
}

.button.full {
  width: 100%;
}

.hero-points {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.card-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-visual {
  padding: 18px;
}

.hero-logo {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section {
  padding: 28px 0 24px;
}

.section-head {
  margin-bottom: 20px;
}

.section-head.left {
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -0.7px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 22px;
}

.feature-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(122, 63, 242, 0.14);
  color: #eadcff;
  font-weight: 900;
  margin-bottom: 14px;
  border: 1px solid rgba(165, 107, 255, 0.18);
}

.feature-card h3,
.showcase-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature-card p,
.showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

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

.showcase-card {
  padding: 22px;
}

.mockup {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, #11111b, #191928);
  padding: 14px;
  min-height: 230px;
}

.mock-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

.mock-line.long {
  width: 88%;
}

.mock-line.medium {
  width: 62%;
}

.mock-line.short {
  width: 42%;
}

.mock-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  margin: 12px 0;
}

.mock-thumb {
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122, 63, 242, 0.45), rgba(217, 164, 65, 0.35));
  min-height: 72px;
}

.mock-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mock-poster {
  min-height: 130px;
  border-radius: 14px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(122, 63, 242, 0.45), rgba(217, 164, 65, 0.35));
}

.status-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.bullet-list {
  display: grid;
  gap: 14px;
}

.bullet-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bullet-item p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.bullet-badge {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.16);
  color: #f4cf83;
  font-size: 13px;
  font-weight: 800;
}

.release-card {
  padding: 22px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.release-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.release-row strong {
  color: var(--text);
}

.site-footer {
  padding: 34px 0 50px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  color: var(--text);
  font-weight: 800;
  margin-bottom: 8px;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .showcase-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .main-nav {
    display: none;
  }
}

.legal-wrap {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.legal-title {
  margin: 0 0 10px;
  font-size: clamp(34px, 6vw, 54px);
  letter-spacing: -1.1px;
}

.legal-card {
  padding: 22px;
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.legal-card ul {
  margin: 12px 0 0 18px;
  padding: 0;
}

.legal-card a {
  color: #f0cf8a;
}

@media (max-width: 980px) {
  .legal-wrap {
    gap: 14px;
  }
}
