:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2d1727;
  background: #fff4fb;
  --pink: #ff4fad;
  --coral: #ff8d8d;
  --mint: #66dfc2;
  --yellow: #ffd75c;
  --ink: #2d1727;
  --muted: #80536e;
  --panel: rgba(255, 255, 255, 0.78);
  --line: rgba(198, 59, 138, 0.18);
  --shadow: 0 22px 55px rgba(255, 79, 173, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 216, 92, 0.5), transparent 16rem),
    radial-gradient(circle at 90% 10%, rgba(102, 223, 194, 0.35), transparent 17rem),
    radial-gradient(circle at 50% 95%, rgba(255, 79, 173, 0.26), transparent 18rem),
    linear-gradient(150deg, #fff6fb, #fff 45%, #ffe8f5);
}

body::before {
  content: "♡ ✦ ♡ ✧ ♡";
  position: fixed;
  top: 1.2rem;
  right: 1rem;
  z-index: 0;
  color: rgba(255, 79, 173, 0.34);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.25rem;
  pointer-events: none;
}

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

.home {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1.2rem, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 2.5rem;
}

.eyebrow,
.badge {
  width: fit-content;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.25rem, 16vw, 5.6rem);
  line-height: 0.82;
  font-weight: 1000;
  color: var(--pink);
  text-shadow: 0 0.08em 0 var(--yellow), 0 0.25em 1.1em rgba(255, 79, 173, 0.24);
}

.intro {
  max-width: 27rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 760;
}

.main-link {
  min-height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 8px;
  padding: 0 1rem;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  box-shadow: var(--shadow);
  font-size: 1.05rem;
  font-weight: 950;
}

.main-link b {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: var(--pink);
  background: white;
  font-size: 1.35rem;
}

.pages {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
}

.page-card {
  min-height: 8.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(128, 83, 110, 0.12);
  backdrop-filter: blur(16px);
}

.page-card > div {
  display: grid;
  gap: 0.45rem;
}

.page-card h2 {
  font-size: 1.35rem;
  line-height: 1;
}

.page-card p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.page-card a {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  color: white;
  background: var(--ink);
  font-weight: 900;
}

.featured {
  border-color: rgba(255, 79, 173, 0.36);
}

.ghost {
  opacity: 0.72;
}

.ghost .badge {
  color: #6d6258;
  background: rgba(255, 216, 92, 0.28);
}

@media (max-width: 360px) {
  .page-card {
    align-items: flex-start;
    flex-direction: column;
  }
}
