:root {
  --bg-start: #230220;
  --bg-mid: #2f0b33;
  --bg-end: #360b2a;
  --accent-primary: #ff4f9a;
  --accent-secondary: #ffb3d6;
  --accent-deep: #b324ff;
  --text-primary: #fdf7ff;
  --text-muted: rgba(253, 247, 255, 0.78);
  --border: rgba(255, 79, 154, 0.28);
  --border-soft: rgba(179, 36, 255, 0.28);
  --shadow-strong: 0 35px 90px -30px rgba(255, 79, 154, 0.55);
  --shadow-soft: 0 25px 80px -40px rgba(179, 36, 255, 0.45);
}

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

html,
body {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at 15% 10%, rgba(179, 36, 255, 0.25), transparent 65%),
    radial-gradient(circle at 80% 0%, rgba(255, 79, 154, 0.22), transparent 70%),
    linear-gradient(140deg, var(--bg-start), var(--bg-mid), var(--bg-end));
  color: var(--text-primary);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

a:hover {
  color: var(--accent-primary);
}

.background-orbs {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  overflow: hidden;
}

.background-orbs .orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.65;
  z-index: -2;
  animation: orbPulse 22s ease-in-out infinite;
}

.orb-one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 79, 154, 0.38), transparent 70%);
  top: -12vw;
  left: -14vw;
}

.orb-two {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(179, 36, 255, 0.28), transparent 75%);
  bottom: -18vw;
  right: -18vw;
  animation-duration: 28s;
}

.orb-three {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 179, 214, 0.28), transparent 75%);
  top: 50vh;
  left: 60vw;
  animation-duration: 24s;
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.35;
  }
}

.hero {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 6rem 0 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 79, 154, 0.3);
  background: rgba(255, 79, 154, 0.12);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255, 179, 214, 0.85);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw + 1rem, 4.2rem);
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  text-shadow: 0 0 35px rgba(255, 79, 154, 0.45);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.button--primary {
  background: linear-gradient(120deg, var(--accent-primary), #ff86c4);
  color: #2d021f;
  border: none;
  box-shadow: 0 25px 40px -22px rgba(255, 79, 154, 0.65);
}

.button--primary:hover {
  transform: translateY(-4px);
}

.button--ghost {
  border: 1px solid rgba(255, 179, 214, 0.4);
  background: rgba(255, 179, 214, 0.12);
  color: var(--text-primary);
}

.button--ghost:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 179, 214, 0.65);
  box-shadow: 0 20px 40px -22px rgba(255, 179, 214, 0.55);
}

.hero__media {
  display: flex;
  justify-content: center;
}

.logo-glow {
  position: relative;
  width: clamp(260px, 28vw, 360px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 214, 0.15), rgba(31, 1, 33, 0.85));
  border: 1px solid rgba(255, 79, 154, 0.25);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.logo-glow::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(255, 79, 154, 0.4), rgba(179, 36, 255, 0.35), rgba(255, 179, 214, 0.4));
  filter: blur(35px);
  animation: rotate 16s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.logo-glow img {
  width: 70%;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}

main {
  width: min(1100px, 92vw);
  margin: 0 auto 4rem;
}

.section {
  margin-top: 3.5rem;
  padding: 3.2rem;
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(20, 1, 28, 0.78), rgba(42, 2, 37, 0.78));
  border: 1px solid rgba(255, 79, 154, 0.2);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 179, 214, 0.18), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section__label {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 79, 154, 0.32);
  background: rgba(255, 79, 154, 0.12);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(255, 179, 214, 0.85);
  margin-bottom: 1.4rem;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 2vw + 1.2rem, 2.6rem);
  margin-bottom: 1.2rem;
}

.section p {
  font-size: 1.03rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.8rem;
  margin-top: 2rem;
  padding-left: 2.6rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 79, 154, 0.6), rgba(179, 36, 255, 0.4));
}

.timeline__item {
  position: relative;
  padding-left: 0.4rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent-primary), var(--accent-deep));
  box-shadow: 0 0 0 4px rgba(255, 79, 154, 0.15);
}

.timeline__point {
  font-weight: 600;
  color: var(--accent-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.timeline__content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.timeline__content p {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.values {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  padding: 0;
}

.values li {
  background: rgba(255, 79, 154, 0.1);
  border: 1px solid rgba(255, 79, 154, 0.24);
  border-radius: 18px;
  padding: 0.9rem 1.1rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.feature-card {
  padding: 1.8rem;
  border-radius: 22px;
  background: rgba(255, 79, 154, 0.08);
  border: 1px solid rgba(255, 79, 154, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 79, 154, 0.6);
}

.feature-card h3 {
  margin-bottom: 0.8rem;
}

.section--dark {
  background: linear-gradient(150deg, rgba(18, 1, 28, 0.85), rgba(46, 2, 38, 0.85));
  border: 1px solid rgba(179, 36, 255, 0.22);
}

.status-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  padding: 0;
}

.status-list li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--text-muted);
}

.status-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent-primary), var(--accent-deep));
}

.roadmap {
  list-style: decimal-leading-zero;
  padding-left: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.roadmap li {
  margin-bottom: 0.8rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.team-card {
  padding: 1.8rem;
  border-radius: 20px;
  background: rgba(179, 36, 255, 0.08);
  border: 1px solid rgba(179, 36, 255, 0.24);
}

.section--contacts {
  text-align: center;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 22px;
  background: rgba(255, 179, 214, 0.08);
  border: 1px solid rgba(255, 179, 214, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 179, 214, 0.6);
  box-shadow: 0 15px 40px -22px rgba(255, 179, 214, 0.55);
}

.contact-icon {
  font-size: 1.6rem;
  color: var(--accent-primary);
}

.contact-title {
  font-weight: 600;
}

.contact-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer {
  width: min(1100px, 92vw);
  margin: 4rem auto 2.5rem;
  padding: 1.8rem 2.2rem;
  border-radius: 22px;
  background: rgba(20, 1, 28, 0.75);
  border: 1px solid rgba(255, 79, 154, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(253, 247, 255, 0.72);
  font-size: 0.95rem;
}

.footer__top {
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-secondary);
}

.footer__top:hover {
  color: var(--accent-primary);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 5rem;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__media {
    order: -1;
  }

  .logo-glow {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .hero {
    text-align: center;
  }

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

  .timeline__point {
    justify-self: center;
  }

  .section {
    padding: 2.6rem;
  }

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

@media (max-width: 520px) {
  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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