:root {
  --bg: #fff3f8;
  --bg-strong: #f4d7e5;
  --surface: rgba(255, 249, 252, 0.84);
  --surface-strong: rgba(255, 245, 250, 0.96);
  --border: rgba(162, 92, 125, 0.15);
  --text: #402531;
  --muted: #8b6173;
  --accent: #d97ba6;
  --accent-strong: #b85c86;
  --accent-soft: #f7dce8;
  --shadow: 0 24px 70px rgba(173, 97, 132, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 30%),
    radial-gradient(circle at bottom right, rgba(228, 163, 195, 0.28), transparent 24%),
    linear-gradient(160deg, #fff7fb 0%, #f8e6ef 48%, #fceff5 100%);
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

.link-shell {
  width: min(100% - 28px, 760px);
  margin: 0 auto;
  padding: 28px 0 48px;
}

.hero-card,
.links-panel,
.feature-strip,
.showcase-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card {
  padding: 30px 22px 24px;
  text-align: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.45;
}

.hero-orb-one {
  top: -48px;
  left: -28px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #fde7f1, #f0b8d1);
}

.hero-orb-two {
  right: -40px;
  bottom: -42px;
  width: 170px;
  height: 170px;
  background: linear-gradient(135deg, #f7dce8, #fff4f8);
}

.brand-mark {
  width: 132px;
  margin: 0 auto 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 250, 252, 0.76);
  border: 1px solid rgba(184, 92, 134, 0.12);
}

.eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.hero-card h1,
.showcase-head h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.95;
}

.hero-card h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
}

.hero-copy {
  max-width: 520px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.chip-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff7fb;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  box-shadow: 0 18px 30px rgba(184, 92, 134, 0.22);
}

.chip-btn:hover,
.chip-btn:focus-visible {
  transform: translateY(-2px);
}

.chip-btn-secondary {
  background: rgba(255, 248, 251, 0.88);
  color: var(--text);
  border: 1px solid rgba(184, 92, 134, 0.14);
  box-shadow: none;
}

.links-panel {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
}

.link-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  background: var(--surface-strong);
  border: 1px solid rgba(184, 92, 134, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(184, 92, 134, 0.22);
}

.link-card.is-primary {
  background: linear-gradient(135deg, rgba(217, 123, 166, 0.18), rgba(255, 246, 250, 0.98));
}

.link-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.link-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.link-copy {
  min-width: 0;
}

.link-copy strong,
.mini-card strong,
.showcase-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.link-copy small,
.mini-card p,
.showcase-card p,
.footer-note {
  color: var(--muted);
  line-height: 1.55;
}

.link-arrow {
  font-size: 1.05rem;
  color: var(--accent-strong);
}

.feature-strip {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
}

.mini-card {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 249, 252, 0.82);
  border: 1px solid rgba(184, 92, 134, 0.1);
}

.mini-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-card p,
.showcase-card p {
  margin: 8px 0 0;
}

.showcase-panel {
  margin-top: 18px;
  padding: 22px 16px 16px;
}

.showcase-head {
  text-align: center;
}

.showcase-head h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.showcase-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.showcase-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 249, 252, 0.9);
  border: 1px solid rgba(184, 92, 134, 0.1);
}

.showcase-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: contain;
  object-position: center top;
  padding: 12px 12px 0;
  background: linear-gradient(180deg, rgba(255, 247, 251, 0.96), rgba(249, 232, 240, 0.9));
}

.showcase-card div {
  padding: 16px;
}

.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 0 4px;
  font-size: 0.92rem;
}

.footer-note p,
.footer-note span {
  margin: 0;
}

@media (min-width: 700px) {
  .link-shell {
    padding-top: 36px;
  }

  .hero-card {
    padding: 40px 34px 30px;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
  }

  .feature-strip,
  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .links-panel {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
