:root {
  --bg: #06080f;
  --bg-deep: #03050a;
  --card: rgba(18, 22, 36, 0.72);
  --card-border: rgba(255, 47, 125, 0.35);
  --text: #f4f6ff;
  --muted: #9ca5ba;
  --accent: #ff2f7d;
  --accent-soft: rgba(255, 47, 125, 0.22);
  --accent-2: #7b5cff;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 18% 0%, #1a1238 0%, var(--bg) 38%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

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

.bg-layer {
  position: fixed;
  inset: -20vh -20vw;
  pointer-events: none;
  z-index: -3;
}

.bg-layer-a {
  background:
    radial-gradient(circle at 72% 22%, rgba(123, 92, 255, 0.28), transparent 42%),
    radial-gradient(circle at 18% 78%, rgba(255, 47, 125, 0.14), transparent 38%);
}

.bg-layer-b {
  background: radial-gradient(circle at 50% 110%, rgba(255, 47, 125, 0.12), transparent 45%);
  z-index: -4;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: linear-gradient(to right, rgba(6, 8, 15, 0.92), rgba(6, 8, 15, 0.72));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px clamp(14px, 4vw, 40px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

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

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

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}

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

.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, #ff4d9a, #ff2f7d);
  box-shadow: 0 8px 24px rgba(255, 47, 125, 0.35);
}

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

main {
  width: min(var(--max), 100% - 34px);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 9vh, 110px) 0 56px;
  position: relative;
}

.parallax-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.5;
  pointer-events: none;
}

.orb-a {
  width: 380px;
  height: 380px;
  right: -60px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 77, 154, 0.5), transparent 65%);
}

.orb-b {
  width: 280px;
  height: 280px;
  left: -70px;
  bottom: 80px;
  background: radial-gradient(circle at 50% 50%, rgba(123, 92, 255, 0.35), transparent 70%);
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lead,
.hero-subtitle {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.55;
  max-width: 780px;
}

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

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

.hero-stats article {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
}

.stat-value {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}

.stat-label {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.section {
  padding: 64px 0;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

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

.card {
  background: linear-gradient(160deg, rgba(16, 20, 34, 0.95), rgba(8, 10, 18, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--card-border);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32), 0 0 20px var(--accent-soft);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.org-card {
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: var(--card);
  padding: 22px;
}

.org-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.org-item dt {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.org-item dd {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.45;
}

.org-item dd a {
  color: #ffb3d0;
}

.org-item dd a:hover {
  text-decoration: underline;
}

.store-badges {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 600;
}

.legal-page,
.delete-page {
  padding: 48px 0 72px;
}

.legal-page h1,
.delete-page h1 {
  font-size: clamp(28px, 4vw, 44px);
}

.legal-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

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

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.legal-section a {
  color: #ffb3d0;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-updated {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

.delete-card {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: var(--card);
  padding: 22px;
  max-width: 640px;
}

.delete-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.delete-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.delete-form input,
.delete-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
}

.delete-form textarea {
  min-height: 100px;
  resize: vertical;
}

.delete-confirm {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.delete-confirm input {
  margin-top: 3px;
  width: auto;
}

.delete-note,
.delete-status {
  font-size: 14px;
  color: var(--muted);
}

.delete-status {
  margin-top: 12px;
  color: #ffb3d0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px clamp(14px, 4vw, 40px) 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

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

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

@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .org-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(6, 8, 15, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px clamp(14px, 4vw, 40px) 18px;
    gap: 12px;
  }

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

  .site-header {
    flex-wrap: wrap;
    position: relative;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
