:root {
  --bg: #050b16;
  --surface: rgba(15, 23, 42, 0.78);
  --border: rgba(56, 189, 248, 0.18);
  --border-strong: rgba(56, 189, 248, 0.38);
  --text: #f8fafc;
  --muted: #94a3b8;
  --primary: #38bdf8;
  --success: #22c55e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 12%, rgba(56, 189, 248, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(14, 165, 233, 0.16), transparent 34rem),
    linear-gradient(135deg, #020617 0%, #07111f 52%, #020617 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 6, 23, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.2rem;
}
.brand img { width: 34px; height: 34px; border-radius: 10px; }
.brand strong {
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.nav a {
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  transition: 140ms ease;
}
.nav a:hover {
  color: var(--text);
  background: rgba(148, 163, 184, 0.08);
}
.nav-cta {
  color: var(--primary) !important;
  border: 1px solid var(--border);
  background: rgba(56, 189, 248, 0.08);
}

.help-anchor {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0 !important;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px !important;
  color: var(--primary) !important;
  background: rgba(56, 189, 248, 0.08);
  font-weight: 900;
  line-height: 1;
}

.help-anchor:hover {
  border-color: var(--border-strong);
  background: rgba(56, 189, 248, 0.14) !important;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.08);
}

.menu-button {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.7);
  padding: 0.65rem;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px;
  background: var(--text);
  border-radius: 99px;
}

main { position: relative; z-index: 1; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem) 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.85);
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}
.hero p {
  max-width: 650px;
  margin: 1.55rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}
.hero p strong { color: var(--text); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 14px;
  font-weight: 800;
  transition: 140ms ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  color: #03101c;
  background: linear-gradient(135deg, #67e8f9, #38bdf8 48%, #0ea5e9);
  box-shadow: 0 18px 42px rgba(14, 165, 233, 0.28);
}
.button.secondary {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.72);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
}
.trust-row span {
  padding: 0.38rem 0.66rem;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.62);
  font-size: 0.86rem;
}

.hero-media {
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.42));
  box-shadow: var(--shadow);
}
.hero-media img { border-radius: 22px; }

.purpose-card, .features, .showcase, .privacy, .steps, .creator {
  margin: 1.2rem clamp(1rem, 4vw, 4.5rem);
}
.purpose-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.55);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
}
.purpose-card h2 {
  margin: 0 0 0.45rem;
  letter-spacing: -0.04em;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}
.purpose-card p {
  max-width: 850px;
  margin: 0;
  color: var(--muted);
}
.purpose-badge {
  white-space: nowrap;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(56, 189, 248, 0.08);
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin: 6rem auto 2rem;
  text-align: center;
}
.section-heading.compact { margin-top: 5rem; }
.section-heading span, .showcase-copy span {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.section-heading h2, .showcase-copy h2 {
  margin: 0.5rem 0 0;
  letter-spacing: -0.06em;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
}
.section-heading p, .showcase-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.feature-card {
  padding: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.6);
  transition: 150ms ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: rgba(15, 23, 42, 0.82);
}
.icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--primary);
  background: rgba(56, 189, 248, 0.08);
  font-weight: 900;
}
.feature-card h3, .privacy-grid h3 {
  margin: 0 0 0.45rem;
  letter-spacing: -0.03em;
}
.feature-card p, .privacy-grid p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3rem);
  padding-top: 4rem;
}
.showcase img {
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.showcase ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}
.showcase li::before {
  content: "✓";
  margin-right: 0.55rem;
  color: var(--success);
  font-weight: 900;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.privacy-grid > div {
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.58);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}
.step-list li {
  min-height: 180px;
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.44));
  counter-increment: steps;
}
.step-list li::before {
  content: counter(steps);
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--primary);
  font-weight: 900;
}
.step-list strong {
  display: block;
  margin-bottom: 0.45rem;
  letter-spacing: -0.03em;
}
.step-list span { color: var(--muted); }




.creator-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(56, 189, 248, 0.16), transparent 24rem),
    radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.10), transparent 26rem),
    rgba(15, 23, 42, 0.62);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
}

.creator-profile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
}

.avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 24px;
  color: #03101c;
  background: linear-gradient(135deg, #67e8f9, #38bdf8 48%, #0ea5e9);
  box-shadow: 0 18px 42px rgba(14, 165, 233, 0.22);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.creator-card span {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.creator-card h2 {
  margin: 0.45rem 0 0;
  letter-spacing: -0.06em;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.creator-card p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.social-links a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  min-height: 92px;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.42);
  transition: 150ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: rgba(56, 189, 248, 0.08);
}

.social-links svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 14px;
  fill: var(--primary);
  background: rgba(56, 189, 248, 0.08);
}

.social-links strong {
  display: block;
  color: var(--text);
}

.social-links small {
  display: block;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.social-links .repo-link {
  grid-column: 1 / -1;
  border-color: rgba(56, 189, 248, 0.32);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.11), rgba(15, 23, 42, 0.54));
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 6rem;
  padding: 2rem clamp(1rem, 4vw, 4.5rem);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--muted);
}
.site-footer div { display: grid; gap: 0.2rem; }
.site-footer strong { color: var(--text); }
.site-footer a {
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero, .showcase { grid-template-columns: 1fr; }
  .feature-grid, .privacy-grid, .step-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .creator-card { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.94);
  }
  .nav.open { display: flex; }
  .menu-button { display: inline-block; }
  .feature-grid, .privacy-grid, .step-list { grid-template-columns: 1fr; }
  .purpose-card { align-items: flex-start; flex-direction: column; }
  .creator-card { grid-template-columns: 1fr; }
  .creator-profile { grid-template-columns: 1fr; }
  .social-links { grid-template-columns: 1fr; }
  .social-links .repo-link { grid-column: auto; }
  


.creator-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(56, 189, 248, 0.16), transparent 24rem),
    radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.10), transparent 26rem),
    rgba(15, 23, 42, 0.62);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
}

.creator-profile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
}

.avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 24px;
  color: #03101c;
  background: linear-gradient(135deg, #67e8f9, #38bdf8 48%, #0ea5e9);
  box-shadow: 0 18px 42px rgba(14, 165, 233, 0.22);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.creator-card span {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.creator-card h2 {
  margin: 0.45rem 0 0;
  letter-spacing: -0.06em;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.creator-card p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.social-links a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  min-height: 92px;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.42);
  transition: 150ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: rgba(56, 189, 248, 0.08);
}

.social-links svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 14px;
  fill: var(--primary);
  background: rgba(56, 189, 248, 0.08);
}

.social-links strong {
  display: block;
  color: var(--text);
}

.social-links small {
  display: block;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.social-links .repo-link {
  grid-column: 1 / -1;
  border-color: rgba(56, 189, 248, 0.32);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.11), rgba(15, 23, 42, 0.54));
}

.site-footer { flex-direction: column; }
}
