:root {
  --bg: #ffc9ea;
  --bg-soft: #fff7fc;
  --paper: rgba(255, 248, 252, 0.92);
  --paper-strong: #ffffff;
  --ink: #352330;
  --muted: #6e5364;
  --line: rgba(53, 35, 48, 0.12);
  --accent: #ffc9ea;
  --accent-strong: #bf6d9c;
  --shadow: 0 24px 70px rgba(96, 49, 78, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 201, 234, 0.9), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 22%),
    linear-gradient(135deg, var(--bg), var(--bg-soft));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(53, 35, 48, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 35, 48, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black 44%, transparent 94%);
  pointer-events: none;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 72px;
}

.js-motion .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.topbar,
.hero,
.section,
.footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(255, 247, 252, 0.76);
  backdrop-filter: blur(16px);
}

.brand,
.topnav a,
.eyebrow,
.section-tag,
.timeline-year,
.directory-label {
  font-family: "Space Grotesk", sans-serif;
}

.brand {
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(53, 35, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 0.92rem;
}

main {
  margin-top: 22px;
  display: grid;
  gap: 22px;
}

.hero,
.section,
.footer {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  backdrop-filter: blur(10px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(191, 109, 156, 0.34);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 24px;
  width: 90px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-strong), rgba(191, 109, 156, 0.08));
}

.hero-copy,
.hero-aside {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.hero-logo-wrap {
  margin-bottom: 8px;
}

.hero-logo {
  display: block;
  width: min(100%, 680px);
  height: auto;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(53, 35, 48, 0.12);
}

.eyebrow,
.section-tag,
.timeline-year,
.directory-label {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1,
h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(3.3rem, 10vw, 6.6rem);
  letter-spacing: -0.05em;
}

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

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

.hero-subtitle {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-text,
.snapshot-list strong,
.info-card p,
.timeline-body p,
.directory-row a,
.footer p {
  margin: 0;
  line-height: 1.9;
  color: var(--muted);
}

.hero-text {
  max-width: 38rem;
  color: var(--ink);
}

.hero-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.snapshot-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 245, 251, 0.92);
  border: 1px solid rgba(53, 35, 48, 0.08);
}

.snapshot-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.snapshot-list li {
  display: grid;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid rgba(53, 35, 48, 0.08);
}

.snapshot-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.snapshot-list span {
  font-size: 0.8rem;
  color: var(--accent-strong);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(53, 35, 48, 0.08);
  background: rgba(255, 255, 255, 0.74);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
}

.section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 90px),
    var(--paper-strong);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.info-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(53, 35, 48, 0.08);
  background: rgba(255, 247, 252, 0.92);
}

.info-card h3 {
  margin-bottom: 12px;
}

.info-card.large {
  min-height: 240px;
}

.info-card.accent {
  background:
    linear-gradient(145deg, rgba(255, 201, 234, 0.72), rgba(255, 255, 255, 0.98));
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(53, 35, 48, 0.08);
}

.timeline-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline-year {
  padding-top: 5px;
}

.timeline-body h3 {
  margin-bottom: 10px;
}

.directory {
  display: grid;
}

.link-groups {
  display: grid;
  gap: 30px;
}

.link-group {
  display: grid;
  gap: 14px;
}

.group-title {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.directory-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(53, 35, 48, 0.08);
}

.directory-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.directory-label {
  padding-top: 6px;
}

.directory-row a {
  display: block;
  text-decoration: none;
  color: var(--ink);
}

.service-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 72px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(53, 35, 48, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(191, 109, 156, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.service-button:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 109, 156, 0.24);
  background: rgba(255, 255, 255, 0.96);
}

.service-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  flex: 0 0 auto;
}

.service-mark svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.service-copy strong,
.service-copy span {
  display: block;
}

.service-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--ink);
}

.service-copy span {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--muted);
}

.logo-facebook {
  background: #1877f2;
  color: #fff;
}

.logo-x {
  background: #111;
  color: #fff;
}

.logo-youtube {
  background: #ff0033;
  color: #fff;
}

.logo-twitch {
  background: #9146ff;
  color: #fff;
}

.logo-github {
  background: #181717;
  color: #fff;
}

.logo-mixcloud {
  background: #5000ff;
  color: #fff;
}

.logo-soundcloud {
  background: #ff7a00;
  color: #fff;
}

.logo-booth {
  background: #fc4d50;
  color: #fff;
}

.logo-docs {
  background: #4285f4;
  color: #fff;
}

.logo-event {
  background: linear-gradient(135deg, #ff6ea8, #ffc6df);
  color: #fff;
}

.logo-event-alt {
  background: linear-gradient(135deg, #74c7ff, #f2bfdc);
  color: #1e2336;
}

.footer {
  margin-top: 22px;
  padding-top: 24px;
  padding-bottom: 24px;
}

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

  .hero,
  .profile-grid,
  .timeline-item,
  .directory-row {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .directory-row {
    gap: 8px;
  }

  .timeline-year,
  .directory-label {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
  }

  .topnav {
    justify-content: space-between;
  }

  .topnav a {
    flex: 1 1 calc(33.333% - 8px);
    justify-content: center;
  }

  .hero,
  .section,
  .footer {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .hero-logo {
    width: 100%;
    border-radius: 16px;
  }

  h1 {
    font-size: clamp(2.8rem, 20vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .hero::before {
    width: 96px;
    height: 96px;
    top: 16px;
    right: 16px;
  }

  .chip-row span {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .directory-row a {
    font-size: inherit;
  }
}
