:root {
  --bg-1: #fff9fc;
  --bg-2: #f7f6ff;
  --bg-3: #eef5ff;
  --text: #493e58;
  --muted: #7e748f;
  --accent: #e9a7c0;
  --accent-deep: #b880b6;
  --blue: #97bde7;
  --line: rgba(160, 146, 182, 0.22);
  --card: rgba(255, 255, 255, 0.62);
  --card-strong: rgba(255, 255, 255, 0.78);
  --shadow: 0 20px 60px rgba(167, 140, 175, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
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(255, 221, 236, 0.75), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(198, 221, 255, 0.7), transparent 26%),
    linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
  overflow-x: hidden;
}

.shell {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  position: relative;
  z-index: 2;
}

.card {
  background: var(--card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  color: var(--accent-deep);
  margin: 0 0 1rem;
}

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 600;
  line-height: 1.06;
}

.hero h1 {
  font-family: "Noto Serif JP", "Cormorant Garamond", Georgia, serif;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
}

.intro, .card p, .music-link span, .small-note, .footer {
  color: var(--muted);
}

.intro {
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.button-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 25px rgba(151, 139, 173, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.music-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(151, 139, 173, 0.18);
}

.button.primary {
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(244, 217, 231, 0.95));
}

.hero-portrait {
  position: relative;
  display: flex;
  justify-content: center;
}

.moon {
  position: absolute;
  inset: auto auto 52% 60%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, #d5e5ff 70%, rgba(213,229,255,0.1) 71%);
  box-shadow: 0 0 30px rgba(214, 227, 255, 0.9);
  opacity: 0.95;
}

.portrait-inner {
  position: relative;
  width: min(320px, 70vw);
  aspect-ratio: 1 / 1.2;
  border-radius: 44% 44% 48% 48% / 28% 28% 58% 58%;
  background:
    radial-gradient(circle at 52% 24%, rgba(255, 245, 252, 0.95), rgba(255, 255, 255, 0.75) 30%, rgba(255,255,255,0.02) 31%),
    linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.2));
  border: 1px solid rgba(255,255,255,0.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 30px 60px rgba(162, 145, 190, 0.18);
  overflow: hidden;
}

.portrait-head {
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translateX(-50%);
  width: 78px;
  height: 98px;
  border-radius: 42% 42% 46% 46% / 38% 38% 50% 50%;
  background: linear-gradient(180deg, #fff6fb, #ffe8f2);
  box-shadow: 0 0 18px rgba(255,255,255,0.4);
}

.portrait-hair {
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
  width: 170px;
  height: 250px;
  background: linear-gradient(180deg, #f1bfd2 0%, #e7a8c4 45%, #d39abf 100%);
  border-radius: 48% 48% 40% 40% / 26% 26% 74% 74%;
  filter: drop-shadow(0 8px 20px rgba(201, 140, 171, 0.22));
  clip-path: polygon(22% 0, 78% 0, 100% 28%, 88% 100%, 64% 100%, 56% 62%, 50% 100%, 44% 62%, 36% 100%, 12% 100%, 0 28%);
}

.portrait-body {
  position: absolute;
  left: 50%;
  bottom: 11%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,249,253,0.75));
  border-radius: 34% 34% 10% 10% / 25% 25% 12% 12%;
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 10px 25px rgba(189, 164, 194, 0.12);
}

.portrait-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 14px rgba(255,255,255,0.9);
}

.spark-1 { top: 24%; left: 25%; }
.spark-2 { top: 34%; right: 21%; }
.spark-3 { bottom: 28%; left: 20%; }

.narrow {
  margin: 1.1rem auto 0;
  padding: 1.2rem 1.4rem;
  width: min(840px, 100%);
  text-align: center;
}

.quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--accent-deep);
  margin: 0;
}

.two-col {
  margin-top: 1.1rem;
  padding: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
}

.tag-list li {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  color: var(--text);
}

.links {
  margin-top: 1.1rem;
  padding: 2rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.music-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--card-strong);
  box-shadow: 0 12px 24px rgba(151, 139, 173, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.music-link strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248, 232, 241, 0.95));
  color: var(--accent-deep);
  border: 1px solid rgba(255,255,255,0.9);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.small-note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.footer {
  text-align: center;
  padding: 1.5rem 0 0;
  font-size: 0.92rem;
}

.glow {
  position: fixed;
  inset: auto;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.glow-left {
  left: -140px;
  top: 15%;
  background: rgba(240, 179, 213, 0.42);
}

.glow-right {
  right: -160px;
  top: 55%;
  background: rgba(175, 210, 255, 0.34);
}

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.86) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 80%, rgba(255,255,255,0.85) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 16%, rgba(255,255,255,0.76) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 42%, rgba(255,255,255,0.82) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 74%, rgba(255,255,255,0.82) 0 1px, transparent 2px),
    radial-gradient(circle at 83% 20%, rgba(255,255,255,0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 52%, rgba(255,255,255,0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 56%, rgba(255,255,255,0.7) 0 1px, transparent 2px);
  opacity: 0.5;
}

@media (max-width: 860px) {
  .hero,
  .two-col,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2rem;
  }

  .hero-portrait {
    order: -1;
  }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 1rem, 100%); padding-top: 1rem; }
  .hero, .two-col, .links { padding: 1.3rem; }
  .button-row { gap: 0.75rem; }
  .button { width: 100%; }
}

.real-portrait {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
}

.noype-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42% 42% 48% 48% / 26% 26% 58% 58%;
  box-shadow: 0 8px 30px rgba(193, 167, 196, 0.2);
}
