:root {
  --bg: #050507;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f8fbff;
  --muted: #aeb4c3;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #17f7ff;
  --pink: #ff2d8f;
  --violet: #8d6bff;
  --green: #7cffb2;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 45, 143, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 22%, rgba(23, 247, 255, 0.14), transparent 30rem),
    linear-gradient(180deg, #050507 0%, #090910 48%, #040406 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 75%);
  z-index: -3;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  position: relative;
  padding: 108px 0;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: #030305;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(23, 247, 255, 0.14), rgba(255, 45, 143, 0.16));
  box-shadow: 0 0 34px rgba(23, 247, 255, 0.22), 0 0 54px rgba(255, 45, 143, 0.18);
  animation: pulseMark 1.8s ease-in-out infinite;
}

.loader-mark span {
  font-size: 38px;
  font-weight: 900;
}

.loader p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(1160px, calc(100% - 40px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(5, 5, 7, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: #050507;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 22px rgba(23, 247, 255, 0.36);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 132px;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: -2;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.42;
  z-index: -1;
}

.hero-glow-a {
  width: 380px;
  height: 380px;
  right: 6%;
  top: 19%;
  background: radial-gradient(circle, rgba(23, 247, 255, 0.34), transparent 68%);
}

.hero-glow-b {
  width: 320px;
  height: 320px;
  left: 4%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(255, 45, 143, 0.32), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(68px, 12vw, 156px);
  line-height: 0.86;
  font-weight: 900;
  text-shadow: 2px 0 var(--cyan), -2px 0 var(--pink), 0 0 34px rgba(255, 255, 255, 0.1);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.hero-phrase {
  margin-bottom: 18px;
  max-width: 700px;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.03;
  font-weight: 900;
}

.hero-copy,
.section-heading p,
.about-copy p,
.service-card p,
.testimonial-card p,
.faq-list p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 650px;
  font-size: 18px;
}

.hero-actions,
.contact-links,
.community-tags,
.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  color: #050507;
  background: linear-gradient(135deg, var(--cyan), #fff 42%, var(--pink));
  box-shadow: 0 18px 46px rgba(23, 247, 255, 0.18), 0 18px 46px rgba(255, 45, 143, 0.14);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.signal-row {
  margin-top: 28px;
}

.signal-row span,
.community-tags span,
.contact-links a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
}

.creator-dashboard,
.analytics-panel,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.creator-dashboard {
  position: relative;
  padding: 22px;
  overflow: hidden;
}

.creator-dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(23, 247, 255, 0.35), transparent 34%, rgba(255, 45, 143, 0.28));
  opacity: 0.45;
  mask-image: linear-gradient(#000, transparent 38%);
}

.dash-top,
.profile-card,
.metric-grid {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.dash-top {
  align-items: flex-start;
  margin-bottom: 24px;
}

.dash-label,
.profile-card p,
.metric-grid span,
.analytics-row span,
.testimonial-card span {
  color: var(--muted);
  font-size: 13px;
}

.dash-top strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.live-pill {
  padding: 8px 10px;
  border-radius: 8px;
  color: #050507;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(124, 255, 178, 0.32);
}

.profile-card {
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.profile-card p {
  margin: 4px 0 0;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 42px;
  height: 42px;
  margin-right: -12px;
  border: 2px solid #0a0a0f;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
}

.avatar-stack span:nth-child(2) {
  background: linear-gradient(135deg, #fff, var(--violet));
}

.avatar-stack span:nth-child(3) {
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.rank {
  align-self: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 45, 143, 0.15);
  color: #ffd4e7;
  font-size: 12px;
  font-weight: 900;
}

.growth-chart {
  height: 230px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  align-items: end;
  margin: 26px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(0, 0, 0, 0.2);
  background-size: 100% 25%;
}

.growth-chart span {
  height: var(--h);
  min-height: 34px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--cyan), var(--pink));
  box-shadow: 0 0 20px rgba(23, 247, 255, 0.24);
  transform-origin: bottom;
  animation: barRise 1.3s ease both;
}

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

.metric-grid div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.metric-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.stats-strip {
  padding: 30px 0 84px;
}

.stats-grid,
.services-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.stat-card,
.service-card,
.testimonial-card,
.mission-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.stat-card {
  padding: 24px;
}

.stat-number,
.stat-suffix {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.stat-suffix {
  color: var(--cyan);
}

.stat-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.two-column,
.performance-grid,
.contact-grid,
.community-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.section-heading.centered {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.mission-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
}

.mission-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #050507;
  background: var(--cyan);
  font-weight: 900;
}

.mission-card p {
  margin-bottom: 0;
}

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

.service-card {
  min-height: 230px;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 247, 255, 0.45);
  box-shadow: 0 22px 70px rgba(23, 247, 255, 0.1);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #050507;
  background: linear-gradient(135deg, var(--cyan), #fff, var(--pink));
  font-weight: 900;
}

.performance {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035), transparent);
}

.analytics-panel {
  padding: 24px;
}

.analytics-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.analytics-row:last-child {
  margin-bottom: 0;
}

.progress {
  grid-column: 1 / -1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 18px rgba(255, 45, 143, 0.28);
}

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

.testimonial-card {
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card p {
  min-height: 134px;
  color: #dfe5ef;
  font-size: 17px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.testimonial-author img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 2px solid rgba(23, 247, 255, 0.42);
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 22px rgba(23, 247, 255, 0.2), 0 0 28px rgba(255, 45, 143, 0.14);
}

.community-grid {
  align-items: center;
}

.community-visual {
  position: relative;
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(23, 247, 255, 0.17), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(255, 45, 143, 0.12), transparent 56%),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.center-node,
.node {
  position: absolute;
  border-radius: 50%;
}

.center-node {
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  color: #050507;
  background: linear-gradient(135deg, var(--cyan), #fff 46%, var(--pink));
  font-size: 38px;
  font-weight: 900;
  box-shadow: 0 0 56px rgba(23, 247, 255, 0.28);
}

.node {
  width: 34px;
  height: 34px;
  background: var(--text);
  box-shadow: 0 0 26px currentColor;
  animation: floatNode 5s ease-in-out infinite;
}

.node-a { left: 17%; top: 26%; color: var(--cyan); }
.node-b { right: 22%; top: 20%; color: var(--pink); animation-delay: -1s; }
.node-c { left: 24%; bottom: 21%; color: var(--green); animation-delay: -2s; }
.node-d { right: 18%; bottom: 28%; color: var(--violet); animation-delay: -3s; }
.node-e { left: 48%; top: 13%; color: #fff; animation-delay: -4s; }

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-a {
  width: 250px;
  height: 250px;
}

.orbit-b {
  width: 360px;
  height: 360px;
  border-color: rgba(23, 247, 255, 0.18);
}

.community-tags {
  margin-top: 26px;
}

.faq-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 0;
}

.contact {
  padding-bottom: 72px;
}

.contact-links {
  margin-top: 28px;
}

.contact-links a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-form {
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #dce3ef;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.28);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(23, 247, 255, 0.08);
}

.contact-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

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

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseMark {
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 44px rgba(23, 247, 255, 0.34), 0 0 70px rgba(255, 45, 143, 0.24);
  }
}

@keyframes barRise {
  from {
    transform: scaleY(0.15);
    opacity: 0.3;
  }
}

@keyframes floatNode {
  50% {
    transform: translateY(-16px) scale(1.08);
  }
}

@media (max-width: 1180px) {
  .container,
  .site-header {
    width: min(100% - 32px, 1040px);
  }

  .hero-grid {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  }

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

@media (max-width: 980px) {
  .section {
    padding: 86px 0;
  }

  .hero-grid,
  .two-column,
  .performance-grid,
  .contact-grid,
  .community-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .creator-dashboard {
    max-width: 620px;
  }

  .section-heading.centered {
    text-align: left;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .container,
  .site-header {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    top: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 7, 0.94);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .stats-grid,
  .services-grid,
  .testimonial-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .creator-dashboard,
  .contact-form {
    padding: 16px;
  }

  .profile-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .growth-chart {
    height: 190px;
  }

  .testimonial-card p {
    min-height: auto;
  }

  .community-visual {
    min-height: 340px;
  }

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

@media (max-width: 560px) {
  .container,
  .site-header {
    width: min(100% - 22px, 1160px);
  }

  .section {
    padding: 68px 0;
  }

  .site-header {
    min-height: 58px;
    padding: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 88px);
  }

  h2 {
    font-size: clamp(30px, 11vw, 42px);
  }

  .hero-phrase {
    font-size: clamp(24px, 8vw, 34px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .signal-row span,
  .community-tags span,
  .contact-links a {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }

  .dash-top,
  .analytics-row {
    gap: 10px;
  }

  .dash-top strong,
  .metric-grid strong {
    font-size: 20px;
  }

  .growth-chart {
    height: 160px;
    gap: 7px;
    padding: 12px;
  }

  .stat-card,
  .service-card,
  .testimonial-card,
  .mission-card,
  .analytics-panel {
    padding: 18px;
  }

  .mission-card {
    grid-template-columns: 1fr;
  }

  .community-visual {
    min-height: 290px;
  }

  .orbit-a {
    width: 190px;
    height: 190px;
  }

  .orbit-b {
    width: 255px;
    height: 255px;
  }

  .center-node {
    width: 72px;
    height: 72px;
  }

  .node {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 390px) {
  .hero {
    padding-top: 112px;
  }

  .brand span:last-child {
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn {
    min-height: 48px;
    padding: 0 14px;
  }

  .signal-row span,
  .community-tags span,
  .contact-links a {
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
