* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff3d6;
  background:
    radial-gradient(circle at top right, rgba(241, 91, 181, 0.25), transparent 35%),
    radial-gradient(circle at top left, rgba(6, 214, 160, 0.18), transparent 30%),
    #07111f;
}

.page {
  min-height: 100vh;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
}

.logo {
  width: min(420px, 90vw);
  margin-bottom: 28px;
  filter: drop-shadow(0 0 28px rgba(241, 91, 181, 0.35));
}

.eyebrow {
  color: #06d6a0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.85rem;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  margin: 16px 0;
  color: #ffd166;
  text-shadow: 0 0 30px rgba(247, 127, 0, 0.25);
}

.intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 243, 214, 0.86);
}

.buttons {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.primary {
  color: #07111f;
  background: linear-gradient(90deg, #f77f00, #f15bb5);
}

.secondary {
  color: #fff3d6;
  border: 1px solid rgba(255, 243, 214, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #06d6a0;
  margin-bottom: 18px;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 243, 214, 0.84);
}

.grid-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 243, 214, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.card h3 {
  color: #f15bb5;
  margin-top: 0;
  font-size: 1.4rem;
}

.card p {
  color: rgba(255, 243, 214, 0.8);
  line-height: 1.6;
}

footer {
  padding: 32px 20px;
  text-align: center;
  color: rgba(255, 243, 214, 0.55);
}

@media (max-width: 900px) {
  .grid-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .grid-section {
    grid-template-columns: 1fr;
  }
}