:root {
  --pink: #e40055;
  --deep: #2a0208;
  --orange: #ff8a00;
  --yellow: #ffd229;
  --green: #23b35b;
  --cream: #fff8ed;
  --soft-pink: #fff0f6;
  --text: #281016;
  --muted: #6d565d;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(42, 2, 8, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(228, 0, 85, 0.12), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(255, 138, 0, 0.16), transparent 34rem),
    linear-gradient(135deg, #fff, var(--cream));
}

body::before,
body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  height: 26px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow));
  z-index: 0;
}

body::before { top: 0; }
body::after { bottom: 0; }

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  border: 1px solid rgba(228, 0, 85, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, rgba(255, 210, 41, 0.22), transparent 24%),
    linear-gradient(295deg, rgba(228, 0, 85, 0.18), transparent 24%);
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.95;
}

.shape-one {
  width: 320px;
  height: 86px;
  left: -70px;
  top: 34px;
  background: var(--pink);
  transform: rotate(-8deg);
}

.shape-two {
  width: 280px;
  height: 72px;
  left: -48px;
  top: 95px;
  background: var(--yellow);
  transform: rotate(5deg);
}

.shape-three {
  width: 340px;
  height: 78px;
  right: -96px;
  top: 44px;
  background: var(--orange);
  transform: rotate(8deg);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 88px 72px;
}

.brand-card {
  text-align: center;
  padding: 28px;
}

.logo {
  width: min(260px, 80%);
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.eyebrow,
.launch-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}

h1 {
  margin: 10px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.95;
  color: var(--deep);
}

.motto {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 20px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 700;
}

.motto span {
  position: relative;
}

.motto span:not(:last-child)::after {
  content: "•";
  margin-left: 18px;
  color: var(--green);
  font-family: Inter, sans-serif;
}

.message-card {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,240,246,0.9));
  border: 1px solid rgba(228, 0, 85, 0.12);
}

h2 {
  margin: 12px 0 18px;
  max-width: 620px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--deep);
}

.intro {
  margin: 0;
  max-width: 580px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--deep);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(228, 0, 85, 0.18);
  box-shadow: 0 10px 24px rgba(42, 2, 8, 0.08);
}

.button.primary {
  background: var(--pink);
  color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 0, 85, 0.09);
  box-shadow: 0 18px 44px rgba(42, 2, 8, 0.08);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: var(--soft-pink);
  color: var(--pink);
  font-weight: 800;
}

.info-card h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 1rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

a { color: inherit; }

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 72px 28px 34px;
  }

  .brand-card { padding: 10px; }
  .message-card { text-align: center; }
  .actions { justify-content: center; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  body::before,
  body::after { height: 16px; }

  .page-shell {
    width: min(100% - 22px, 1120px);
    padding: 42px 0 34px;
  }

  .hero { border-radius: 28px; }

  .shape-one { width: 230px; left: -90px; top: 24px; }
  .shape-two { width: 210px; left: -94px; top: 76px; }
  .shape-three { width: 240px; right: -118px; top: 22px; }

  .hero-content { padding: 68px 18px 22px; }
  .message-card { padding: 28px 18px; }
  .button { width: 100%; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card { min-height: auto; }
}
