/* UA Creator Network Website */
/* Upload this file to GitHub as: style.css */

:root {
  --bg: #030306;
  --panel: rgba(13, 13, 28, 0.82);
  --panel-2: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: #c9c9d6;
  --dim: #9696aa;
  --pink: #ff23c8;
  --blue: #1687ff;
  --cyan: #1ce7ff;
  --purple: #8b4cff;
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 35, 200, 0.22), transparent 28%),
    radial-gradient(circle at 50% 24%, rgba(22, 135, 255, 0.18), transparent 35%),
    radial-gradient(circle at 16% 78%, rgba(139, 76, 255, 0.17), transparent 28%),
    #030306;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.85) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,35,200,0.55) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(28,231,255,0.5) 1px, transparent 1.5px);
  background-size: 120px 120px, 180px 180px, 220px 220px;
  background-position: 0 0, 30px 60px, 100px 40px;
  pointer-events: none;
}

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

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1180px, calc(100% - 38px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 3, 6, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 16px rgba(255, 35, 200, 0.4)) drop-shadow(0 0 16px rgba(22, 135, 255, 0.35));
}

.brand-text {
  display: grid;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.brand-text span:last-child {
  margin-top: 6px;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 19px;
  align-items: center;
  color: #f2f2f8;
  font-size: 0.91rem;
  white-space: nowrap;
}

.nav-links a {
  opacity: 0.9;
  position: relative;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links .active {
  opacity: 1;
  color: #fff;
}

.nav-links .active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  box-shadow: 0 0 18px rgba(255, 35, 200, 0.75);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple) 50%, var(--blue));
  box-shadow: 0 0 28px rgba(255, 35, 200, 0.25), 0 0 32px rgba(22, 135, 255, 0.18);
}

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

.hero {
  min-height: 650px;
  padding: 70px 0 80px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--blue), #765aff 38%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 540px;
  color: #e4e4ee;
  font-size: 1.08rem;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 550px;
  margin-top: 34px;
}

.hero-icon {
  text-align: center;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,0.3);
  color: #d8d8e5;
  font-size: 0.88rem;
}

.hero-icon:last-child {
  border-right: none;
}

.hero-icon strong {
  display: block;
  font-size: 1.6rem;
  color: var(--pink);
  text-shadow: 0 0 18px rgba(255,35,200,0.55);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 40%, rgba(22, 135, 255, 0.3), transparent 34%),
    radial-gradient(circle at 62% 42%, rgba(255, 35, 200, 0.32), transparent 35%);
  filter: blur(20px);
}

.hero-logo {
  position: relative;
  width: min(520px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 34px rgba(22,135,255,0.42)) drop-shadow(0 0 48px rgba(255,35,200,0.4));
  animation: floatLogo 5s ease-in-out infinite;
}

.reflection {
  position: absolute;
  bottom: 22px;
  width: 68%;
  height: 34px;
  background: linear-gradient(90deg, transparent, rgba(22,135,255,0.45), rgba(255,35,200,0.44), transparent);
  filter: blur(16px);
  opacity: 0.8;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

section {
  padding: 54px 0;
}

.page-hero {
  padding: 86px 0 44px;
  text-align: center;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
}

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

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

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

.card {
  min-height: 210px;
  padding: 26px 22px;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(28,231,255,0.55), 0 0 18px rgba(255,35,200,0.35);
}

.card h3 {
  font-size: 1.14rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 0.94rem;
}

.card ul {
  text-align: left;
  margin: 12px 0 0 20px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.panel {
  border-radius: 28px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.panel p {
  color: var(--muted);
  margin-bottom: 14px;
}

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

.step {
  position: relative;
  text-align: center;
  color: var(--muted);
}

.step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -25px;
  top: 41px;
  color: var(--blue);
  font-size: 2.2rem;
  text-shadow: 0 0 15px rgba(22,135,255,0.75);
}

.step-number {
  position: absolute;
  left: 9px;
  top: 7px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: rgba(3,3,6,0.9);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 16px rgba(22,135,255,0.5);
}

.step-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,35,200,0.32), transparent 38%),
    radial-gradient(circle at 70% 65%, rgba(22,135,255,0.32), transparent 42%),
    rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.9rem;
}

.step h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1rem;
}

.form-box {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  min-height: 520px;
}

.form-placeholder {
  min-height: 520px;
  padding: 34px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
}

.form-placeholder strong {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

iframe {
  width: 100%;
  min-height: 850px;
  border: none;
  background: #fff;
  border-radius: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border-radius: 12px;
  background: rgba(255,255,255,0.075);
  border: 1px solid var(--line);
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  color: #f4f4fb;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "⌄";
  opacity: 0.85;
}

details[open] summary::after {
  content: "⌃";
}

details p {
  padding: 0 18px 16px;
  color: var(--muted);
}

.bottom-cta {
  margin: 30px auto 34px;
  padding: 18px 24px;
  border-radius: 18px;
  border: 1px solid rgba(28,231,255,0.55);
  box-shadow: 0 0 0 1px rgba(255,35,200,0.22), 0 0 26px rgba(22,135,255,0.12);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  background: rgba(3,3,6,0.55);
}

.heart {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: var(--pink);
  text-shadow: 0 0 22px rgba(255,35,200,0.8);
}

.bottom-cta span {
  color: var(--muted);
}

.hashtag {
  color: var(--blue) !important;
}

footer {
  padding: 0 0 36px;
  color: var(--dim);
  font-size: 0.82rem;
}

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

.socials,
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #d7d7e2;
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

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

  .hero {
    padding-top: 42px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-logo {
    width: min(390px, 86vw);
  }

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

  .step:nth-child(2)::after {
    display: none;
  }

  .bottom-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .heart {
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .brand-text {
    display: none;
  }

  .nav .btn {
    display: none;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-icons,
  .cards,
  .cards.three,
  .cards.two,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-icon {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    padding: 14px 0;
  }

  .step::after {
    display: none !important;
  }

  .panel {
    padding: 24px;
  }
}
