:root {
  --bg: #222831;
  --bg-card: #393E46;
  --bg-item: #2a2f38;
  --accent: #00ADB5;
  --accent-dim: #00ADB533;
  --accent-glow: #00ADB540;
  --text: #EEEEEE;
  --text-muted: #9ba4b4;
  --text-dim: #6b7a8d;
  --border: #393E46;
  --border-hover: #4d5560;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
}

.btn img {
  display: inline;
  vertical-align: middle;
}

/* ── Layout ────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ───────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1c2028cc;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 28px;
  height: 28px;
}

.nav-logo span {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--bg) !important;
  background: var(--accent);
  padding: 7px 16px;
  border-radius: 8px;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.88;
  text-decoration: none !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid #00ADB540;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  text-decoration: none;
  border: none;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn svg {
  flex-shrink: 0;
}

/* ── Section shared ────────────────────────────────── */
section {
  padding: 80px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
}

.section-header {
  margin-bottom: 48px;
}

/* ── Platforms ─────────────────────────────────────── */
.platforms {
  background: var(--bg-item);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.platforms-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.platform-pill .dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dot-yt {
  background: #ff0000;
}

.dot-fb {
  background: #1877f2;
}

.dot-ig {
  background: #e1306c;
}

.dot-tt {
  background: #010101;
  border: 1px solid #333;
}

/* ── Features split layout ─────────────────────────── */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-left .section-title {
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.fl-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--accent-dim);
  border: 1px solid #00ADB540;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.features-right {
  display: flex;
  justify-content: center;
}

/* ── How it works ──────────────────────────────────── */
.how-bg {
  background: var(--bg-item);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 28px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.step-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Footer ────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo img {
  width: 22px;
  height: 22px;
}

.footer-logo span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-muted);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-disclaimer {
  border-top: 1px solid #2a2f38;
  padding: 14px 0;
  margin-top: 8px;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Privacy page ──────────────────────────────────── */
.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 15px;
  color: var(--text-muted);
}

.prose {
  max-width: 720px;
  padding: 56px 0 96px;
}

.prose h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 12px;
  letter-spacing: -0.3px;
}

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

.prose p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.prose ul {
  margin: 0 0 16px 20px;
}

.prose li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 4px;
}

.prose a {
  color: var(--accent);
}

.prose .notice {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Popup mockup ──────────────────────────────────── */
.popup-mock {
  width: 300px;
  background: #1c2028;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 173, 181, 0.08);
  text-align: left;
  user-select: none;
}

.pm-header {
  margin-bottom: 14px;
}

.pm-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pm-logo img {
  border-radius: 8px;
  width: 36px;
  height: 36px;
}

.pm-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.pm-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.pm-global {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  background: var(--bg-item);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
}

.pm-global-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.pm-platforms {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 10px;
  border-left: 2px solid var(--border);
}

.pm-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 11px;
  background: var(--bg-item);
  border-radius: 11px;
  border: 1px solid var(--border);
}

.pm-platform {
  display: flex;
  align-items: center;
  gap: 9px;
}

.pm-picon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pm-picon-yt {
  background: #ff0000;
}

.pm-picon-fb {
  background: #1877f2;
}

.pm-picon-ig {
  background: #e1306c;
}

.pm-picon-tt {
  background: #111;
}

.pm-pname {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.pm-psub {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 1px;
}

.pm-switch {
  width: 38px;
  height: 21px;
  border-radius: 21px;
  background: var(--bg-card);
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--border);
}

.pm-switch::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background: var(--text-dim);
  transition: transform 0.2s, background 0.2s;
}

.pm-switch-on {
  background: rgba(0, 173, 181, 0.15);
  border-color: rgba(0, 173, 181, 0.4);
}

.pm-switch-on::after {
  background: var(--accent);
  transform: translateX(17px);
}

.pm-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 860px) {
  .features-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features-right {
    order: -1;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #1c2028f0;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
  }

  .nav-hamburger {
    display: flex;
  }

  nav {
    position: relative;
  }

  .hero {
    padding: 64px 0 56px;
  }

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