@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Inter:wght@400;500;700;900&display=swap');

:root {
  --bg: #080712;
  --bg-2: #12091d;
  --text: #f7ecff;
  --muted: #cbb8d9;
  --pink: #ff3dbd;
  --blue: #35d4ff;
  --violet: #8c4dff;
  --gold: #ffd36e;
  --card: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 61, 189, 0.22), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(53, 212, 255, 0.18), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 45%, #05040b);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.hero {
  min-height: 92vh;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  opacity: 0.45;
  pointer-events: none;
}

.hero::after {
  content: "新夢";
  position: absolute;
  right: -20px;
  bottom: -70px;
  font-size: clamp(7rem, 22vw, 21rem);
  color: rgba(255, 255, 255, 0.035);
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.logo {
  font-family: Cinzel, serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--blue); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 20vh auto 0;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1, h2, h3 {
  line-height: 1.05;
  margin: 0 0 18px;
}

h1 {
  font-family: Cinzel, serif;
  font-size: clamp(3.2rem, 10vw, 8.4rem);
  max-width: 1000px;
  text-shadow:
    0 0 18px rgba(255, 61, 189, 0.65),
    0 0 36px rgba(53, 212, 255, 0.25);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
}

h3 { font-size: 1.35rem; }

.tagline {
  max-width: 720px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--muted);
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--border);
}

.primary {
  background: linear-gradient(135deg, var(--pink), var(--violet), var(--blue));
  box-shadow: 0 0 30px rgba(255, 61, 189, 0.35);
}

.secondary {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}

.full { width: 100%; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: center;
}

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

.three { grid-template-columns: repeat(3, 1fr); }
.characters { grid-template-columns: repeat(4, 1fr); }

.card, .character-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
}

.link-card, .cta-card {
  border-color: rgba(255, 211, 110, 0.35);
}

.text-link {
  display: block;
  text-decoration: none;
  margin: 10px 0;
  padding: 10px 0;
  color: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.portrait {
  height: 180px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-family: Cinzel, serif;
  font-size: 1.8rem;
}

.placeholder {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 211, 110, 0.25), transparent 25%),
    linear-gradient(135deg, rgba(255, 61, 189, 0.33), rgba(53, 212, 255, 0.22));
  border: 1px solid rgba(255,255,255,0.18);
}

.micro {
  text-align: center;
  max-width: 900px;
}

blockquote {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  font-family: Cinzel, serif;
  color: #fff;
  text-shadow: 0 0 22px rgba(53, 212, 255, 0.25);
}

.newsletter { text-align: center; }

.fake-form {
  display: flex;
  max-width: 560px;
  margin: 28px auto 0;
  gap: 10px;
}

.fake-form input {
  flex: 1;
  padding: 15px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.09);
  color: var(--text);
}

.fake-form button {
  padding: 15px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  cursor: pointer;
}

footer {
  padding: 36px 28px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer-links a { color: var(--blue); }

@media (max-width: 860px) {
  .nav, .split { display: block; }
  .nav-links { margin-top: 14px; }
  .three, .characters { grid-template-columns: 1fr; }
  .hero-content { margin-top: 14vh; }
  .fake-form { flex-direction: column; }
}
