:root {
  --bg-main: #4b1127;
  --bg-second: #6f1d3c;
  --card-bg: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #fff9f7;
  --text-soft: rgba(255, 249, 247, 0.85);
  --accent: #f3e6df;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #7f2347 0%, transparent 35%),
    radial-gradient(circle at bottom right, #5f1734 0%, transparent 30%),
    linear-gradient(135deg, var(--bg-main), #3d0d1f 55%, #2f0817 100%);
  overflow-x: hidden;
  position: relative;
}

.background-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.shape-1 {
  width: 340px;
  height: 340px;
  background: #b55b81;
  top: -80px;
  left: -80px;
}

.shape-2 {
  width: 420px;
  height: 420px;
  background: #8a274c;
  bottom: -120px;
  right: -120px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.card {
  width: 100%;
  max-width: var(--max-width);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 50px 40px;
  text-align: center;
}

.logo-wrapper {
  margin-bottom: 24px;
}

.logo {
  width: min(280px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.18));
}

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

h1 span {
  color: var(--accent);
}

.intro {
  max-width: 820px;
  margin: 0 auto 38px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.message-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.message-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
}

.message-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.message-box h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.message-box p {
  line-height: 1.7;
  color: var(--text-soft);
  font-size: 1rem;
}

.quote {
  max-width: 880px;
  margin: 40px auto 0;
  padding: 24px 28px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--accent);
  font-style: italic;
}

.signature {
  margin-top: 16px;
}

.signature p {
  color: var(--text-soft);
  margin-bottom: 8px;
  font-size: 1rem;
}

.signature h3 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
}

.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px 35px;
}

.footer p {
  color: rgba(255, 249, 247, 0.72);
  font-size: 0.95rem;
}

/* Animation reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* Responsive */
@media (max-width: 900px) {
  .message-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 38px 24px;
  }

  .intro {
    font-size: 1rem;
  }

  .quote {
    font-size: 1.05rem;
    padding: 20px 12px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 20px 14px;
  }

  .card {
    padding: 30px 18px;
    border-radius: 22px;
  }

  .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }

  .message-box {
    padding: 22px 18px;
  }

  .message-box p {
    font-size: 0.95rem;
  }

  .footer {
    padding-bottom: 22px;
  }
}