@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #09070a;
  --surface: #151016;
  --surface-2: #201620;
  --text: #fff8fc;
  --muted: #bbaeb6;
  --pink: #ff4fa3;
  --pink-soft: #ff91c4;
  --line: rgba(255,255,255,.12);
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 8%, rgba(255,79,163,.24), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  z-index: 10;
}

.header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--pink);
  color: #190511;
  font-size: 20px;
}

.header-link {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.header-link:hover {
  border-color: var(--pink);
  color: var(--pink-soft);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  min-height: calc(100svh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--pink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

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

h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-size: clamp(54px, 10.8vw, 136px);
  line-height: .86;
  letter-spacing: -.075em;
  font-weight: 900;
}

h1 span {
  color: var(--pink);
  text-shadow: 0 0 70px rgba(255,79,163,.24);
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-primary {
  background: var(--pink);
  color: #1d0713;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.button-light {
  background: var(--text);
  color: #210714;
}

.hero-card {
  margin-top: 60px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(14px);
}

.hero-card-star {
  font-size: 30px;
  color: var(--pink);
}

.hero-card div:last-child {
  display: flex;
  flex-direction: column;
}

.hero-card strong { font-size: 14px; }
.hero-card span { color: var(--muted); font-size: 12px; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.06em;
}

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

.card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,79,163,.65);
}

.number {
  margin-bottom: auto;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 30px;
  letter-spacing: -.04em;
}

.card p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
}

.about > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.join {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin-top: 70px;
  margin-bottom: 70px;
  padding: 68px;
  border-radius: 36px;
  background: var(--pink);
  color: #200713;
}

.join-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.join .eyebrow { color: rgba(32,7,19,.65); }
.join h2 { margin-bottom: 22px; }
.join p:not(.eyebrow) { font-size: 18px; }

.giant-star {
  position: absolute;
  right: -30px;
  bottom: -190px;
  font-size: 440px;
  line-height: 1;
  color: rgba(32,7,19,.12);
  transform: rotate(12deg);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.footer p { margin: 0; }
.footer p:last-child { text-align: right; }

@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .hero { min-height: auto; padding-top: 74px; }
  h1 { font-size: clamp(54px, 17vw, 82px); }
  .lead { font-size: 16px; }
  .actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-card { width: 100%; margin-top: 38px; }
  .grid { grid-template-columns: 1fr; }
  .card { min-height: 230px; }
  .about { grid-template-columns: 1fr; gap: 30px; }
  .join { width: calc(100% - 24px); padding: 38px 24px; min-height: 500px; }
  .giant-star { font-size: 300px; bottom: -130px; }
  .footer { grid-template-columns: 1fr; }
  .footer p:last-child { text-align: left; }
}
