* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f0e8;
  --bg-deep: #eadcc7;
  --card: rgba(255, 252, 247, 0.78);
  --text: #2b2018;
  --muted: #6b5648;
  --accent: #2f8f58;
  --accent-dark: #1d5b39;
  --line: rgba(60, 35, 20, 0.09);
  --shadow: 0 24px 80px rgba(72, 45, 20, 0.12);
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Noto Sans TC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(110, 177, 106, 0.16), transparent 32%),
    radial-gradient(circle at right, rgba(255, 112, 67, 0.18), transparent 30%),
    linear-gradient(160deg, var(--bg) 0%, #f9f5ef 45%, var(--bg-deep) 100%);
}

.bg-orb {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.45;
}

.orb-a {
  top: -60px;
  left: -20px;
  width: 220px;
  height: 220px;
  background: rgba(61, 165, 94, 0.35);
}

.orb-b {
  right: -40px;
  bottom: 60px;
  width: 280px;
  height: 280px;
  background: rgba(255, 132, 70, 0.24);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
}

.brand-avatar,
.profile-avatar {
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
}

.brand-avatar {
  width: 42px;
  height: 42px;
}

.brand-name,
h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero {
  display: grid;
  gap: 22px;
}

.intro-card,
.coming-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--card);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

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

.profile-avatar {
  width: 136px;
  height: 136px;
  box-shadow: 0 12px 28px rgba(47, 143, 88, 0.2);
}

.eyebrow,
.section-tag {
  margin: 18px 0 10px;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.95;
}

.intro {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  line-height: 1.85;
}

.coming-card {
  margin-top: 24px;
  padding: 28px;
}

h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.coming-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1040px);
    padding-top: 20px;
  }

  .intro-card,
  .coming-card {
    border-radius: 24px;
  }

  .intro-card {
    padding: 36px 20px;
  }

  .profile-avatar {
    width: 104px;
    height: 104px;
  }
}
