:root {
  color-scheme: dark;
  --bg: #101010;
  --panel: #171515;
  --panel-soft: #211f1f;
  --line: #313030;
  --text: #f7f4ef;
  --muted: #c4bbb2;
  --subtle: #8f8780;
  --accent: #6d2be8;
  --accent-2: #c43d8f;
  --good: #51d39b;
  --warn: #f4ba5f;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(109, 43, 232, 0.22), transparent 30rem),
    radial-gradient(circle at 84% 18%, rgba(196, 61, 143, 0.18), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-color: rgba(247, 244, 239, 0.45);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 16, 16, 0.78);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--accent), #ffffff);
  color: #111;
  font-weight: 900;
  transform: rotate(-7deg);
  box-shadow: 0 12px 32px rgba(109, 43, 232, 0.36);
}

.brand small {
  display: block;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 650;
  margin-top: -3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--panel-soft);
  color: var(--text);
  text-decoration: none;
  font-weight: 750;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: 44px;
  align-items: center;
  padding: 84px 24px 70px;
}

.eyebrow {
  color: var(--good);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 14px 0 20px;
  font-size: clamp(42px, 7vw, 74px);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  max-width: 61ch;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
}

.app-preview {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #141212;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.preview-title {
  font-weight: 800;
}

.preview-tabs {
  display: flex;
  gap: 8px;
}

.preview-tabs span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.preview-tabs span:nth-child(2) {
  background: var(--accent-2);
}

.preview-tabs span:nth-child(3) {
  background: var(--good);
}

.preview-body {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 380px;
}

.preview-sidebar {
  border-right: 1px solid var(--line);
  padding: 16px;
}

.preview-command {
  display: block;
  width: 100%;
  border-radius: 7px;
  padding: 11px 12px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent), #8c39ee);
  font-weight: 800;
  text-align: center;
}

.channel {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7f4ef, #68615c);
  position: relative;
}

.avatar.dark {
  background: linear-gradient(135deg, #050505, #5d5d5d);
}

.avatar::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #141212;
  background: #2f8cff;
}

.avatar.tiktok::after {
  background: #111;
}

.avatar.youtube::after {
  background: #ff2020;
}

.calendar {
  padding: 18px;
}

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

.calendar-header strong {
  font-size: 17px;
}

.calendar-header span {
  color: var(--subtle);
  font-size: 13px;
}

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

.day {
  min-height: 72px;
  border: 1px solid #262323;
  border-radius: 7px;
  background: repeating-linear-gradient(135deg, #151313, #151313 6px, #181616 6px, #181616 11px);
  padding: 8px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
}

.post {
  display: block;
  margin-top: 8px;
  border-radius: 6px;
  padding: 6px;
  background: rgba(109, 43, 232, 0.22);
  color: var(--text);
  font-size: 11px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px;
}

.section-band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

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

.feature,
.notice,
.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(23, 21, 21, 0.84);
}

.feature {
  padding: 22px;
}

.feature p,
.notice p,
.legal-card p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.notice {
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.legal-card {
  padding: 20px;
  text-decoration: none;
}

.legal-card strong {
  display: block;
  margin-bottom: 6px;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 24px;
}

.legal-content {
  margin-top: 30px;
  padding: 34px;
  border-radius: 8px;
  background: rgba(23, 21, 21, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.updated {
  color: var(--good);
  font-weight: 750;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0d0d;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.footer-meta {
  color: var(--subtle);
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero,
  .notice,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .feature-grid,
  .legal-links {
    grid-template-columns: 1fr;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  h1 {
    font-size: 42px;
  }

  .section,
  .legal-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-content {
    padding: 24px 20px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
