/* ===== MCP Landing Page Styles =====
   Generated: styles-flat.css + sections-flat-hero.css + mynavi-footer.css
   DO NOT EDIT — edit source files in claude/mock-1/ then rebuild
===== */

/* ====== MCP Landing Page — Core Styles ====== */
:root {
  --bg-0: #05031a;
  --bg-1: #0b0725;
  --bg-2: #120a34;
  --bg-soft: #1a1040;
  --ink: #ffffff;
  --ink-dim: #b8b3d6;
  --ink-mute: #6e688f;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);

  --pink: #ff3ea5;
  --magenta: #c040ff;
  --purple: #7b3dff;
  --cyan: #22e3ff;
  --mint: #38f0c0;
  --yellow: #ffd84d;
  --orange: #ff8a3d;

  --grad-main: linear-gradient(90deg, #ff3ea5 0%, #c040ff 45%, #22e3ff 100%);
  --grad-warm: linear-gradient(90deg, #ff8a3d 0%, #ff3ea5 100%);
  --grad-cool: linear-gradient(90deg, #7b3dff 0%, #22e3ff 100%);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-display: "Noto Sans",  sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  background: var(--bg-0);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Backdrop dot grid ===== */
.dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}

/* ===== Glow orbs ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
  animation: floaty 9s ease-in-out infinite;
}
.orb.pink { background: #ff3ea5; }
.orb.purple { background: #7b3dff; }
.orb.cyan { background: #22e3ff; }

@keyframes floaty {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -24px) scale(1.08); }
}

/* ===== Kicker / eyebrow ===== */
.kicker {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--grad-main);
}
.kicker.no-line::before { display: none; }

/* ===== Section heading ===== */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.section-title.jp {
  font-family: var(--font-jp);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.15;
}

.grad-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text.cool {
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Pill button ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.3s ease, opacity 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(255, 62, 165, 0.6);
}
.btn-primary:hover {
  box-shadow: 0 18px 40px -10px rgba(192, 64, 255, 0.7);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); }
.btn-lg { padding: 20px 36px; font-size: 16px; }
.btn .arr {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arr { transform: translateX(4px); }

/* ===== Pill label ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad-main);
  box-shadow: 0 0 10px rgba(255, 62, 165, 0.8);
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
  .orb { animation: none; }
}

/* ===== Sections ===== */
section { position: relative; }
.section-pad {
  padding: 140px 0;
}
@media (max-width: 900px) {
  .section-pad { padding: 90px 0; }
  .container { padding: 0 22px; }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 5, 28, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom-color: var(--line);
}
.nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.nav-logo-image {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}
.nav-logo .logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-main);
  display: grid; place-items: center;
  color: #fff; font-size: 14px; font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 8px 20px -8px rgba(255, 62, 165, 0.6);
}
.nav-links {
  display: flex; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad-main);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ===== Footer ===== */
.footer {
  background: #05031a;
  padding: 100px 0 40px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.footer-brand p {
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.8;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--ink-dim);
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ===== Pop Theme Overrides ===== */
:root {
  --bg-0: #fff8f4;
  --bg-1: #fff2fb;
  --bg-2: #eff8ff;
  --bg-soft: #ffffff;
  --ink: #201533;
  --ink-dim: #5f5577;
  --ink-mute: #9b92b3;
  --line: rgba(133, 92, 168, 0.12);
  --line-strong: rgba(133, 92, 168, 0.2);

  --pink: #ff5db1;
  --magenta: #d55cff;
  --purple: #7d68ff;
  --cyan: #5cc9ff;
  --mint: #58e8bc;
  --yellow: #ffd86b;
  --orange: #ff9a55;

  --grad-main: linear-gradient(90deg, #ff6eb7 0%, #a861ff 55%, #56ccff 100%);
  --grad-warm: linear-gradient(90deg, #ffb36b 0%, #ff6eb7 100%);
  --grad-cool: linear-gradient(90deg, #7d68ff 0%, #56ccff 100%);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 182, 214, 0.85), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(136, 198, 255, 0.65), transparent 24%),
    radial-gradient(circle at 20% 84%, rgba(255, 219, 125, 0.4), transparent 18%),
    linear-gradient(180deg, #fff8f4 0%, #fff4fb 38%, #f7fbff 100%);
  color: var(--ink);
}

.container {
  max-width: 1240px;
}

.dot-grid {
  background-image: radial-gradient(rgba(134, 96, 168, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.65;
  mask-image: none;
  -webkit-mask-image: none;
}

.orb {
  filter: blur(100px);
  opacity: 0.4;
}

.kicker {
  color: #7d7197;
}

.section-title,
.section-title.jp,
.nav-logo,
.hero-headline,
.lineup-sub,
.cc-title {
  color: var(--ink);
}

.grad-text {
  background: linear-gradient(90deg, #ff4ea1 0%, #9169ff 55%, #35bfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.btn {
  border-radius: 999px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff78bb 0%, #9c6bff 52%, #58cfff 100%);
  box-shadow: 0 18px 36px -18px rgba(143, 99, 255, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border: 1px solid rgba(148, 114, 181, 0.2);
  box-shadow: 0 12px 28px -24px rgba(84, 53, 119, 0.45);
  backdrop-filter: blur(18px);
}

.pill {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(148, 114, 181, 0.18);
  box-shadow: 0 14px 40px -30px rgba(104, 74, 143, 0.45);
}

.pill .dot {
  background: #ff67b7;
  box-shadow: 0 0 14px rgba(255, 103, 183, 0.6);
}

.nav {
  padding: 20px 0;
}

.nav.scrolled {
  background: rgba(255, 250, 252, 0.82);
  backdrop-filter: blur(22px);
  border-bottom-color: rgba(151, 119, 187, 0.12);
}

.nav-logo .logo-mark {
  border-radius: 12px;
  box-shadow: 0 16px 26px -18px rgba(147, 95, 255, 0.7);
}

.nav-links a {
  color: #635879;
}

.nav-links a:hover {
  color: var(--ink);
}

.footer {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 191, 220, 0.45), transparent 22%),
    linear-gradient(180deg, #f9effa 0%, #f4f7ff 100%);
  border-top: 1px solid rgba(151, 119, 187, 0.12);
}

.footer-brand p,
.footer-col a,
.footer-bottom {
  color: #655b7f;
}

.footer-col h4 {
  color: #998fb3;
}

/* ===== Creator Theme Overrides ===== */
:root {
  --bg-0: #fffaf5;
  --bg-1: #fff4f7;
  --bg-2: #f3fbff;
  --bg-soft: #ffffff;
  --ink: #1f1531;
  --ink-dim: #665a7d;
  --ink-mute: #9f93b8;
  --line: rgba(114, 85, 154, 0.14);
  --line-strong: rgba(114, 85, 154, 0.22);

  --pink: #ff6aa9;
  --magenta: #bf6aff;
  --purple: #7b6fff;
  --cyan: #45c9ff;
  --mint: #67e7c1;
  --yellow: #ffcf67;
  --orange: #ff9f62;

  --grad-main: linear-gradient(135deg, #ff7db8 0%, #a673ff 42%, #49c7ff 100%);
  --grad-warm: linear-gradient(135deg, #ffb86d 0%, #ff77b6 100%);
  --grad-cool: linear-gradient(135deg, #8672ff 0%, #48cbff 100%);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
}

body {
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 184, 214, 0.8), transparent 20%),
    radial-gradient(circle at 92% 12%, rgba(145, 214, 255, 0.7), transparent 18%),
    radial-gradient(circle at 18% 80%, rgba(255, 214, 122, 0.35), transparent 14%),
    linear-gradient(180deg, #fffaf5 0%, #fff8fb 36%, #f7fcff 100%);
  color: var(--ink);
}

.dot-grid {
  background-image:
    radial-gradient(rgba(123, 111, 167, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 22px 22px, 110px 110px;
  opacity: 0.8;
}

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #7f7399;
}

.section-title {
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.92;
}

.section-title.jp {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
}

.btn {
  gap: 12px;
  padding: 17px 28px;
  font-size: 14px;
  border-radius: 999px;
}

.btn-primary {
  background:
    linear-gradient(135deg, #ff8cbc 0%, #b27aff 44%, #54ccff 100%);
  color: #fff;
  box-shadow:
    0 14px 0 rgba(177, 124, 255, 0.12),
    0 24px 0 -10px rgba(255, 138, 194, 0.18),
    0 22px 28px -18px rgba(110, 90, 187, 0.35);
}

.btn-primary:hover {
  box-shadow:
    0 16px 0 rgba(177, 124, 255, 0.14),
    0 26px 0 -10px rgba(255, 138, 194, 0.24),
    0 28px 34px -18px rgba(110, 90, 187, 0.45);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(114, 85, 154, 0.16);
  box-shadow: 0 16px 30px -24px rgba(91, 70, 126, 0.28);
}

.pill {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(126, 96, 166, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 32px -26px rgba(99, 72, 140, 0.28);
}

.pill .dot {
  width: 8px;
  height: 8px;
  background: #ff73b3;
  box-shadow: 0 0 0 5px rgba(255, 115, 179, 0.12);
}

.nav.scrolled {
  background: rgba(255, 250, 248, 0.9);
  border-bottom-color: rgba(114, 85, 154, 0.12);
}

.nav-logo .logo-mark {
  border-radius: 8px;
  box-shadow: 0 12px 24px -18px rgba(110, 90, 187, 0.55);
}

.nav-links a {
  color: #5f5476;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a::after {
  height: 3px;
  border-radius: 999px;
}

.footer {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 198, 226, 0.5), transparent 18%),
    linear-gradient(180deg, #fdf2f7 0%, #f4f7ff 100%);
}

/* ===== Creator Split Theme Overrides ===== */
body {
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 50vw;
  pointer-events: none;
  z-index: -2;
}

body::before {
  left: 0;
  background:
    linear-gradient(180deg, rgba(255, 244, 247, 0.94), rgba(255, 249, 242, 0.72)),
    linear-gradient(90deg, rgba(255, 126, 180, 0.08), transparent 72%);
}

body::after {
  right: 0;
  background:
    linear-gradient(180deg, rgba(244, 252, 255, 0.94), rgba(246, 248, 255, 0.72)),
    linear-gradient(270deg, rgba(79, 203, 255, 0.08), transparent 72%);
}

.btn-primary {
  background: linear-gradient(135deg, #e63d7b 0%, #ff6a47 100%);
  border: 1px solid rgba(121, 38, 73, 0.28);
  box-shadow:
    0 5px 0 rgba(121, 38, 73, 0.28),
    0 20px 36px -18px rgba(230, 61, 123, 0.58);
}

.btn-primary:hover {
  box-shadow:
    0 6px 0 rgba(121, 38, 73, 0.32),
    0 24px 40px -18px rgba(230, 61, 123, 0.68);
}

.btn-ghost {
  border-color: rgba(74, 54, 107, 0.38);
}

.pill,
.nav.scrolled {
  border-color: rgba(74, 54, 107, 0.32);
}

.footer {
  border-top-color: rgba(74, 54, 107, 0.28);
}

/* ===== Flat Theme Overrides ===== */
:root {
  --bg-0: #ffffff;
  --bg-1: #f8f4f7;
  --bg-2: #f3f7fb;
  --bg-soft: #ffffff;
  --ink: #1f1630;
  --ink-dim: #574d68;
  --ink-mute: #8f86a3;
  --line: rgba(71, 54, 103, 0.12);
  --line-strong: rgba(71, 54, 103, 0.22);
  --grad-main: linear-gradient(90deg, #eb5b88 0%, #2ea6e8 100%);
  --grad-cool: linear-gradient(90deg, #647dff 0%, #25b5ee 100%);
}

body {
  background: #f7f5f8;
  color: var(--ink);
}

body::before,
body::after,
.dot-grid,
.orb {
  display: none;
}

.kicker,
.footer-col h4 {
  color: #7a6f90;
}

.grad-text {
  background: linear-gradient(90deg, #eb5b88 0%, #2ea6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.btn-primary {
  background: #ea5d89;
  border: 1px solid #d74a78;
  box-shadow: 0 14px 26px -18px rgba(215, 74, 120, 0.42);
}

.btn-primary:hover {
  box-shadow: 0 18px 30px -18px rgba(215, 74, 120, 0.52);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: rgba(71, 54, 103, 0.18);
  box-shadow: none;
}

.pill {
  background: #fff;
  border-color: rgba(71, 54, 103, 0.14);
  box-shadow: none;
}

.pill .dot {
  background: #ea5d89;
  box-shadow: none;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(71, 54, 103, 0.1);
}

.footer {
  background: #f4f1f5;
  border-top-color: rgba(71, 54, 103, 0.16);
}

.footer-brand p,
.footer-col a,
.footer-bottom {
  color: #605572;
}

/* ===== sections-flat-hero.css ===== */

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-0);
  padding-top: 100px;
}
.hero .dot-grid { opacity: 0.7; }

.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: calc(100vh - 100px);
  align-items: center;
  gap: 60px;
}

.hero-diagonal {
  position: absolute;
  top: 0; bottom: 0;
  left: 47%;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255, 62, 165, 0.0) 8%,
    rgba(255, 62, 165, 0.8) 30%,
    rgba(123, 61, 255, 0.8) 50%,
    rgba(34, 227, 255, 0.8) 70%,
    transparent 100%);
  transform: rotate(14deg);
  transform-origin: center;
  opacity: 0.9;
  box-shadow: 0 0 40px rgba(192, 64, 255, 0.4);
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-diagonal { display: none; }
  .hero-split { grid-template-columns: 1fr; padding-top: 30px; min-height: auto; padding-bottom: 60px; }
}

/* Logo placeholder */
.hero-logo {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 62, 165, 0.12), rgba(34, 227, 255, 0.12)),
    rgba(255,255,255,0.02);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-logo::before {
  display: none;
}
.hero-logo::after {
  display: none;
}
.hero-logo-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-logo-image-wrap {
  position: relative;
  z-index: 2;
  width: min(88%, 340px);
  margin: 0 auto;
  padding: 70px;
}
.hero-logo-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.hero-logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(60px, 9vw, 120px);
  line-height: 1;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}
.hero-logo-sub {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ink-dim);
  margin-top: 14px;
}
.hero-logo-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.5);
  border: 1px dashed rgba(255,255,255,0.3);
  color: var(--ink-mute);
  z-index: 3;
}

/* Right copy */
.hero-copy { position: relative; z-index: 2; }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 24px 0 26px;
}
.hero-headline .line { display: block; }
.hero-headline .emph {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.hero-headline .emph::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.05em;
  width: 100%; height: 6px;
  background: var(--grad-main);
  opacity: 0.35;
  border-radius: 3px;
  filter: blur(2px);
}

.hero-lead {
  max-width: 520px;
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 540px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.hero-stat .lbl {
  font-size: 12px;
  color: var(--ink-dim);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 5;
}
br.pc { display: none; }
@media (min-width: 901px) { br.pc { display: block; } }
.scroll-ind .bar {
  width: 2px; height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ============ WORKS ============ */
.works { background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%); }

.works-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 90px;
}
@media (max-width: 900px) {
  .works-head { grid-template-columns: 1fr; gap: 32px; align-items: start; }
}
.works-caption {
  color: var(--ink-dim);
  font-size: 15px;
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.lineup-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.lineup-sub {
  font-family: var(--font-jp);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.lineup-sub em {
  font-style: normal;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .lineup-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .lineup-grid { grid-template-columns: repeat(2, 1fr); } }

.svc-card {
  position: relative;
  padding: 30px 22px 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.04);
}
.svc-card .svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  position: relative;
}
.svc-card .svc-icon svg { width: 26px; height: 26px; }
.svc-card .svc-label {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.svc-card .svc-en {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
}
.svc-card .svc-num {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--svc-grad);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.svc-card:hover::before { opacity: 0.15; }

/* ============ ABOUT ============ */
.about { background: var(--bg-1); }

.about-lead {
  max-width: 640px;
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.9;
  margin-top: 20px;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  justify-content: center;
  gap: 18px;
  margin-top: 70px;
}
.masonry .tile {
  grid-column: span 1;
  min-height: 250px;
}
@media (max-width: 900px) {
  .masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .masonry .tile { grid-column: span 1; min-height: 240px; }
}
@media (max-width: 640px) {
  .masonry {
    grid-template-columns: 1fr;
  }
  .masonry .tile { grid-column: auto; min-height: 240px; }
}

.masonry .tile .tile-title {
  color: #fff;
}

.tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.tile:hover { transform: scale(1.01); }
.tile-top {
  padding: 14px 16px;
  background: var(--tile-grad);
}
.tile-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.45);
}
.tile-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
}
.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tile-photo-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.04);
}
.tile-photo-icon svg { width: 60px; height: 60px; stroke: #fff; stroke-width: 1.2; fill: none; opacity: 0.3; }
.tile-body {
  padding: 14px 16px 18px;
  background: rgba(7, 5, 20, 0.82);
}
.tile-title {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: #fff;
  line-height: 1.4;
}

/* needs card */
.needs-card {
  margin-top: 90px;
  background: linear-gradient(135deg, #0f0a2e 0%, #1a0f4a 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}
.needs-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 62, 165, 0.35), transparent 70%);
  pointer-events: none;
}
.needs-card::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34, 227, 255, 0.25), transparent 70%);
  pointer-events: none;
}
.needs-card h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.needs-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 700px) { .needs-list { grid-template-columns: 1fr; } }
.needs-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.needs-item:hover { border-color: rgba(255, 62, 165, 0.4); background: rgba(255,255,255,0.08); transform: translateX(4px); }
.needs-badge {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-main);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.needs-item p { font-weight: 700; font-size: 15px; }

/* Triangle diagram */
.triangle {
  margin-top: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .triangle { grid-template-columns: 1fr; gap: 30px; }
  .triangle .hub-wrap { order: -1; }
}
.tri-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(255, 62, 165, 0.8) 0%,
    rgba(192, 64, 255, 0.4) 50%,
    rgba(34, 227, 255, 0.8) 100%);
  filter: blur(1px);
  transform: translateY(-50%);
  z-index: 1;
  box-shadow: 0 0 30px rgba(192, 64, 255, 0.5);
}
@media (max-width: 900px) { .tri-line { display: none; } }

.tri-node {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}
.tri-node.creator {
  background: linear-gradient(135deg, rgba(255, 62, 165, 0.15), rgba(192, 64, 255, 0.08));
  border-color: rgba(255, 62, 165, 0.3);
}
.tri-node.brand {
  background: linear-gradient(135deg, rgba(34, 227, 255, 0.15), rgba(56, 240, 192, 0.08));
  border-color: rgba(34, 227, 255, 0.3);
}
.tri-node h4 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 18px;
}
.tri-node .tri-sub {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.tri-group { margin-bottom: 18px; }
.tri-group:last-child { margin-bottom: 0; }
.tri-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tri-tag {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
}

.hub-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
}
.hub {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #ff3ea5 25%, #7b3dff 60%, #120a34 100%);
  display: grid; place-items: center;
  position: relative;
  box-shadow:
    0 0 60px rgba(192, 64, 255, 0.6),
    0 0 120px rgba(34, 227, 255, 0.3);
  animation: pulse 3s ease-in-out infinite;
}
.hub::before, .hub::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: expand 3s ease-out infinite;
}
.hub::after { animation-delay: 1.5s; }
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(192, 64, 255, 0.6), 0 0 120px rgba(34, 227, 255, 0.3); }
  50% { transform: scale(1.04); box-shadow: 0 0 80px rgba(192, 64, 255, 0.8), 0 0 160px rgba(34, 227, 255, 0.5); }
}
@keyframes expand {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}
.hub-inner {
  text-align: center;
  position: relative; z-index: 2;
}
.hub-inner .mcp {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hub-inner .sub {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}
.hub-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-mute);
  margin-top: 16px;
}

/* ============ KEY NUMBERS ============ */
.keynum { background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%); }

.keynum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 70px;
}
@media (max-width: 900px) { .keynum-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .keynum-grid { grid-template-columns: 1fr; } }

.knum-card {
  position: relative;
  padding: 36px 30px 30px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  min-height: 250px;
}
.knum-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.knum-card::before {
  content: "";
  position: absolute;
  bottom: -40%; right: -20%;
  width: 280px; height: 280px;
  background: var(--knum-glow);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}
.knum-kicker {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--knum-color, var(--ink-dim));
  margin-bottom: 8px;
}
.knum-title {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.knum-big {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.knum-big .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--knum-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.knum-big .unit {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-dim);
  font-weight: 600;
}
.knum-detail {
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.7;
  position: relative; z-index: 2;
}

/* ============ CLIENTS ============ */
.clients { background: var(--bg-0); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

.client {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 22px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  transition: background 0.2s ease;
  position: relative;
}
.client:hover { background: rgba(255,255,255,0.025); }
.client-logo {
  height: 44px;
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.client-logo-img {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.client-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-dim);
  line-height: 1.4;
}
.clients-note {
  margin-top: 20px;
  font-size: 11px;
  color: var(--ink-mute);
  text-align: right;
  opacity: 0.6;
}

/* ============ CONTACT ============ */
.contact {
  background: linear-gradient(180deg, var(--bg-0) 0%, #0a0628 100%);
  position: relative;
  overflow: hidden;
}
.contact-head { text-align: center; margin-bottom: 70px; }
.contact-head .kicker { justify-content: center; }
.contact-head .section-title { margin-top: 20px; }
.contact-lead {
  color: var(--ink-dim);
  font-size: 16px;
  max-width: 540px;
  margin: 20px auto 0;
}

.contact-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; }
}

.cc-card {
  padding: 56px 48px;
  position: relative;
  min-height: 580px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.cc-card.creator {
  background: linear-gradient(155deg, rgba(255, 62, 165, 0.18) 0%, rgba(192, 64, 255, 0.08) 70%, transparent 100%), #0f0827;
}
.cc-card.brand {
  background: linear-gradient(205deg, rgba(34, 227, 255, 0.15) 0%, rgba(56, 240, 192, 0.06) 70%, transparent 100%), #06142a;
}

/* Diagonal divider */
.cc-divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-50%) skewX(-8deg);
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 900px) { .cc-divider { display: none; } }

.cc-card::after {
  content: "";
  position: absolute;
  top: 40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}
.cc-card.creator::after { background: var(--pink); right: auto; left: -40px; }
.cc-card.brand::after { background: var(--cyan); }

.cc-kicker { margin-bottom: 16px; }
.cc-kicker.creator { color: var(--pink); }
.cc-kicker.brand { color: var(--cyan); }

.cc-title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.cc-target {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  margin-bottom: 30px;
}
.cc-check-list {
  list-style: none;
  margin-bottom: 36px;
}
.cc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}
.cc-check-list li:last-child { border-bottom: none; }
.cc-check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-top: 1px;
}
.cc-check-icon.creator { background: var(--grad-main); }
.cc-check-icon.brand { background: var(--grad-cool); }
.cc-check-icon svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 3; fill: none; }

.cc-btn {
  width: 100%;
  justify-content: center;
}
.cc-btn.creator { background: var(--grad-main); color: #fff; }
.cc-btn.brand { background: var(--grad-cool); color: #fff; }

/* ============ Pop Theme Overrides ============ */
.hero,
.works,
.about,
.keynum,
.clients,
.contact {
  background: transparent;
}

.hero {
  min-height: 100vh;
  padding-top: 112px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
    linear-gradient(135deg, rgba(255, 120, 187, 0.08), rgba(88, 207, 255, 0.08));
  border: 1px solid rgba(148, 114, 181, 0.14);
  box-shadow: 0 40px 80px -60px rgba(91, 56, 131, 0.45);
}

.hero .container,
.works .container,
.about .container,
.keynum .container,
.clients .container,
.contact .container {
  position: relative;
  z-index: 2;
}

.hero-diagonal {
  left: 48%;
  width: 4px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 95, 166, 0.55) 28%, rgba(93, 199, 255, 0.72) 72%, transparent 100%);
  box-shadow: 0 0 26px rgba(125, 104, 255, 0.2);
  opacity: 0.75;
}

.hero-logo {
  max-width: 440px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 191, 221, 0.9), transparent 30%),
    radial-gradient(circle at 80% 22%, rgba(152, 214, 255, 0.8), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(145, 111, 180, 0.14);
  box-shadow: 0 36px 80px -56px rgba(90, 59, 127, 0.55);
}

.hero-logo::before {
  background-image:
    linear-gradient(rgba(134, 96, 168, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 96, 168, 0.08) 1px, transparent 1px);
}

.hero-logo::after {
  height: 3px;
  opacity: 0.45;
}

.hero-logo-sub,
.hero-stat .lbl,
.works-caption,
.about-lead,
.contact-lead,
.knum-detail,
.client-name,
.cc-target {
  color: #675d80;
}

.hero-logo-badge,
.tile-tag,
.tile-photo-badge {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(144, 108, 179, 0.22);
  color: #7c7195;
}

.hero-headline .emph::after {
  height: 10px;
  opacity: 0.22;
  filter: blur(4px);
}

.hero-stats {
  border-top-color: rgba(145, 111, 180, 0.16);
}

.hero-stat .num {
  text-shadow: none;
}

.scroll-ind {
  color: #948aaf;
}

.scroll-ind .bar {
  background: linear-gradient(180deg, #bd8fe3, transparent);
}

.works-head,
.lineup-header,
.needs-card,
.triangle,
.contact-split,
.footer-grid {
  position: relative;
  z-index: 2;
}

.svc-card,
.knum-card,
.client,
.tri-node,
.cc-card,
.needs-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 114, 181, 0.14);
  box-shadow: 0 24px 48px -40px rgba(83, 49, 120, 0.35);
}

.svc-card:hover,
.knum-card:hover {
  border-color: rgba(255, 110, 183, 0.28);
  background: rgba(255, 255, 255, 0.9);
}

.svc-card .svc-en,
.svc-card .svc-num,
.knum-kicker,
.hub-label,
.tri-node .tri-sub {
  color: #8e84a8;
}

.svc-card .svc-label,
.tile-title,
.knum-title,
.client-name,
.needs-item p,
.tri-node h4 {
  color: var(--ink);
}

.svc-card::before {
  mix-blend-mode: normal;
}

.about-lead,
.works-caption {
  max-width: 620px;
}

.tile {
  border-radius: 28px;
  border: none;
  box-shadow: 0 28px 54px -42px rgba(77, 53, 116, 0.5);
}

.tile::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(29, 16, 49, 0.2));
}

.tile-num {
  color: rgba(255, 255, 255, 0.8);
}

.tile-photo-icon {
  opacity: 0.18;
}

.needs-card {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 200, 225, 0.9), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(158, 214, 255, 0.72), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(148, 114, 181, 0.14);
  box-shadow: 0 40px 80px -56px rgba(91, 56, 131, 0.45);
}

.needs-card::before,
.needs-card::after {
  display: none;
}

.needs-item:hover {
  border-color: rgba(255, 110, 183, 0.26);
  background: rgba(255, 255, 255, 0.96);
  transform: translateX(6px);
}

.needs-badge {
  border-radius: 14px;
  box-shadow: 0 18px 34px -26px rgba(155, 96, 255, 0.6);
}

.tri-line {
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 116, 186, 0.75), rgba(165, 109, 255, 0.45), rgba(86, 207, 255, 0.75));
  box-shadow: 0 0 24px rgba(149, 105, 255, 0.14);
}

.tri-node.creator {
  background: linear-gradient(135deg, rgba(255, 240, 248, 0.95), rgba(255, 255, 255, 0.82));
  border-color: rgba(255, 110, 183, 0.18);
}

.tri-node.brand {
  background: linear-gradient(135deg, rgba(239, 250, 255, 0.95), rgba(255, 255, 255, 0.82));
  border-color: rgba(86, 207, 255, 0.2);
}

.tri-tag {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(148, 114, 181, 0.12);
  color: #5f5577;
}

.hub {
  background: radial-gradient(circle at 28% 30%, #ffffff 0%, #ff89c7 22%, #8b70ff 58%, #5cc9ff 100%);
  box-shadow: 0 32px 68px -30px rgba(137, 108, 255, 0.48);
}

.hub::before,
.hub::after {
  border-color: rgba(146, 111, 181, 0.22);
}

.keynum-grid,
.clients-grid {
  margin-top: 64px;
}

.knum-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
}

.knum-card::before {
  opacity: 0.2;
}

.clients-grid {
  border-top: 1px solid rgba(148, 114, 181, 0.14);
  border-left: 1px solid rgba(148, 114, 181, 0.14);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 48px -40px rgba(83, 49, 120, 0.3);
}

.client {
  min-height: 136px;
  border-right: 1px solid rgba(148, 114, 181, 0.14);
  border-bottom: 1px solid rgba(148, 114, 181, 0.14);
  box-shadow: none;
}

.client:hover {
  background: rgba(255, 255, 255, 0.92);
}

.client-logo {
  background: none;
  border: none;
}

.contact {
  overflow: visible;
}

.contact-split {
  box-shadow: none;
}

.cc-card {
  min-height: 560px;
}

.cc-card.creator {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 197, 225, 0.86), transparent 28%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 249, 0.82));
}

.cc-card.brand {
  background:
    radial-gradient(circle at 84% 16%, rgba(168, 227, 255, 0.82), transparent 28%),
    linear-gradient(205deg, rgba(255, 255, 255, 0.94), rgba(241, 251, 255, 0.82));
}

.cc-divider {
  background: linear-gradient(180deg, transparent, rgba(148, 114, 181, 0.2), transparent);
}

.cc-card::after {
  opacity: 0.26;
}

.cc-check-list li {
  border-bottom-color: rgba(148, 114, 181, 0.14);
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero::before {
    inset: 12px;
    border-radius: 28px;
  }

  .hero {
    padding-top: 98px;
  }

  .hero-logo {
    max-width: 360px;
  }

  .clients-grid {
    border-radius: 22px;
  }

.cc-card {
  min-height: auto;
  padding: 42px 28px;
  }
}

/* ============ Creator Theme Overrides ============ */
.hero,
.works,
.about,
.keynum,
.clients,
.contact {
  background: transparent;
}

.hero {
  padding-top: 108px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px 18px 0;
  border-radius: 30px 30px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    repeating-linear-gradient(90deg, rgba(129, 110, 170, 0.05) 0 1px, transparent 1px 96px);
  border: 1px solid rgba(126, 96, 166, 0.14);
  box-shadow: 0 36px 70px -56px rgba(74, 49, 108, 0.42);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 11% 18%, rgba(255, 186, 217, 0.6) 0 0, transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(146, 217, 255, 0.52) 0 0, transparent 18%),
    radial-gradient(circle at 74% 82%, rgba(255, 214, 122, 0.22) 0 0, transparent 14%);
  pointer-events: none;
}

.hero-split {
  gap: 72px;
}

.hero-diagonal {
  left: 49%;
  width: 6px;
  opacity: 0.6;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 130, 189, 0.9) 0 18px,
      rgba(130, 112, 255, 0.9) 18px 36px,
      rgba(72, 203, 255, 0.9) 36px 54px
    );
  box-shadow: 0 0 20px rgba(141, 105, 255, 0.18);
}

.hero-logo {
  border-radius: 22px;
  max-width: 430px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 250, 0.86)),
    radial-gradient(circle at 24% 22%, rgba(255, 191, 221, 0.94), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(157, 220, 255, 0.84), transparent 25%);
  border: 2px solid rgba(126, 96, 166, 0.1);
  box-shadow:
    0 26px 54px -42px rgba(74, 49, 108, 0.42),
    12px 12px 0 -6px rgba(255, 138, 194, 0.18);
}

.hero-logo::before {
  background-image:
    linear-gradient(rgba(126, 96, 166, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 96, 166, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

.hero-logo::after {
  width: 150%;
  height: 4px;
  opacity: 0.5;
}

.hero-logo-mark {
  font-size: clamp(68px, 10vw, 126px);
}

.hero-logo-sub {
  font-size: 10px;
  letter-spacing: 0.38em;
  color: #7a7093;
}

.hero-logo-badge {
  border-radius: 999px;
  padding: 7px 12px;
}

.hero-copy {
  position: relative;
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-copy::before {
  top: -34px;
  right: 10px;
  width: 110px;
  height: 110px;
  background:
    radial-gradient(circle, rgba(255, 117, 180, 0.38) 0 2px, transparent 2px 100%);
  background-size: 18px 18px;
  opacity: 0.75;
}

.hero-copy::after {
  left: -24px;
  bottom: 34px;
  width: 54px;
  height: 54px;
  border: 3px solid rgba(255, 147, 191, 0.32);
  border-radius: 8px;
  transform: rotate(12deg);
}

.hero-headline {
  font-size: clamp(58px, 8vw, 92px);
  line-height: 0.9;
  margin: 20px 0 24px;
}

.hero-headline .line:last-child {
  margin-left: 0;
  white-space: nowrap;
}

.hero-headline .emph {
  font-weight: 700;
}

.hero-headline .emph::after {
  height: 12px;
  bottom: 0.03em;
  opacity: 0.18;
  filter: none;
  border-radius: 0;
}

.hero-lead {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  gap: 16px;
  margin-bottom: 42px;
}

.hero-actions .btn-primary,
.works-head .btn-primary,
.cc-btn {
  position: relative;
  overflow: hidden;
}

.hero-actions .btn-primary::before,
.works-head .btn-primary::before,
.cc-btn::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-actions .btn-primary::after,
.works-head .btn-primary::after,
.cc-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-stats {
  max-width: 620px;
  gap: 14px;
  padding-top: 22px;
  border-top: 2px solid rgba(126, 96, 166, 0.12);
}

.hero-stat {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(126, 96, 166, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
}

.hero-stat .num {
  font-size: 30px;
}

.works-head {
  margin-bottom: 76px;
}

.works-caption,
.about-lead,
.contact-lead {
  font-size: 16px;
}

.lineup-sub {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.2;
}

.svc-card,
.knum-card,
.client,
.tri-node,
.needs-item,
.cc-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(126, 96, 166, 0.12);
  box-shadow: 0 20px 36px -30px rgba(74, 49, 108, 0.24);
}

.svc-card {
  min-height: 228px;
  padding: 26px 20px 22px;
}

.svc-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(126, 96, 166, 0.12);
  border-radius: 12px;
  pointer-events: none;
}

.svc-card .svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  box-shadow: 0 14px 22px -16px rgba(96, 77, 161, 0.44);
}

.svc-card .svc-label {
  font-size: 16px;
}

.svc-card .svc-en,
.svc-card .svc-num {
  color: #8f83aa;
}

.tile {
  border-radius: 22px;
  box-shadow: 0 26px 44px -36px rgba(74, 49, 108, 0.42);
}

.tile-top {
  align-items: center;
}

.tile-tag {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.82);
}

.tile-title {
  font-size: 14px;
  line-height: 1.3;
}

.needs-card {
  border-radius: 24px;
  padding: 56px 48px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 252, 0.88)),
    radial-gradient(circle at 16% 20%, rgba(255, 190, 220, 0.7), transparent 24%),
    radial-gradient(circle at 88% 24%, rgba(157, 220, 255, 0.58), transparent 20%);
  box-shadow: 0 34px 64px -48px rgba(74, 49, 108, 0.42);
}

.needs-card h3 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.needs-item {
  position: relative;
  padding: 20px 22px;
}

.needs-item::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(126, 96, 166, 0.2);
  border-right: 2px solid rgba(126, 96, 166, 0.2);
}

.needs-badge {
  border-radius: 10px;
  box-shadow: none;
  position: relative;
}

.needs-badge::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(166, 116, 255, 0.24);
  border-radius: 14px;
}

.triangle {
  margin-top: 96px;
}

.tri-line {
  height: 4px;
  filter: none;
  box-shadow: none;
}

.tri-tag {
  border-radius: 999px;
  font-weight: 700;
}

.hub {
  width: 168px;
  height: 168px;
  box-shadow:
    0 24px 46px -22px rgba(137, 108, 255, 0.34),
    inset 0 0 0 10px rgba(255,255,255,0.18);
}

.hub-label {
  font-size: 11px;
  letter-spacing: 0.24em;
}

.knum-card {
  min-height: 264px;
}

.knum-title {
  font-size: 24px;
  margin-bottom: 24px;
}

.knum-big .val {
  font-size: 78px;
}

.clients-grid {
  border-radius: 24px;
}

.client {
  min-height: 142px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.78));
}

.client-logo {
  height: 44px;
  box-shadow: none;
  background: none;
  border: none;
}

.contact-head {
  margin-bottom: 58px;
}

.cc-card {
  border-radius: 24px;
}

.cc-card {
  padding: 52px 42px;
}

.cc-title {
  font-size: clamp(30px, 3.6vw, 46px);
}

.cc-check-list li {
  font-size: 15px;
  font-weight: 700;
}

.cc-check-icon {
  width: 24px;
  height: 24px;
}

.cc-btn {
  padding-top: 18px;
  padding-bottom: 18px;
}

@media (max-width: 900px) {
  .hero::before {
    inset: 10px 10px 0;
    border-radius: 24px 24px 0 0;
  }

  .hero-split {
    gap: 40px;
  }

  .hero-headline {
    font-size: clamp(48px, 16vw, 76px);
  }

  .hero-headline .line:last-child {
    margin-left: 0;
    white-space: nowrap;
  }

  .hero-copy::before,
  .hero-copy::after,
  .svc-card::after,
  .needs-item::after,
  .needs-badge::after {
    display: none;
  }

  .needs-card,
  .cc-card {
    padding: 38px 26px;
  }
}

/* ============ Creator Split Theme Overrides ============ */
.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 244, 247, 0.97) 0 49.6%, rgba(239, 249, 255, 0.97) 50.4% 100%),
    repeating-linear-gradient(90deg, rgba(129, 110, 170, 0.05) 0 1px, transparent 1px 96px);
  border: none;
  box-shadow: none;
}

.works {
  background:
    linear-gradient(180deg, rgba(255, 249, 244, 0.72) 0%, rgba(255, 245, 248, 0.82) 100%);
}

.about {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 196, 223, 0.4), transparent 22%),
    linear-gradient(180deg, rgba(255, 236, 245, 0.98) 0%, rgba(255, 245, 239, 0.9) 100%);
}

.keynum {
  background:
    linear-gradient(180deg, rgba(243, 249, 255, 0.9) 0%, rgba(249, 244, 255, 0.78) 100%);
}

.clients {
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.88) 0%, rgba(243, 250, 255, 0.82) 100%);
}

.contact {
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 190, 220, 0.42), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(147, 216, 255, 0.34), transparent 24%),
    linear-gradient(180deg, rgba(251, 240, 246, 0.98) 0%, rgba(237, 246, 255, 0.96) 100%);
}

.works,
.about,
.keynum,
.clients,
.contact {
  border-top: 1px solid rgba(74, 54, 107, 0.08);
}

.about {
  border-top-color: rgba(230, 61, 123, 0.12);
}

.contact {
  border-top-color: rgba(74, 54, 107, 0.14);
}

.hero::after {
  background:
    radial-gradient(circle at 13% 18%, rgba(255, 164, 205, 0.78) 0 0, transparent 20%),
    radial-gradient(circle at 86% 18%, rgba(120, 216, 255, 0.68) 0 0, transparent 20%),
    radial-gradient(circle at 74% 82%, rgba(255, 214, 122, 0.22) 0 0, transparent 14%);
}

.hero .container {
  padding-bottom: 120px;
}

.hero-logo {
  margin-top: -250px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 247, 0.9)),
    radial-gradient(circle at 24% 22%, rgba(255, 191, 221, 0.94), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(255, 206, 152, 0.58), transparent 25%);
  border-color: rgba(255, 137, 189, 0.16);
  box-shadow:
    0 26px 54px -42px rgba(126, 63, 102, 0.38),
    12px 12px 0 -6px rgba(255, 138, 194, 0.18);
}

.hero-logo-sub,
.hero-stat .lbl,
.works-caption,
.about-lead,
.contact-lead,
.knum-detail,
.client-name,
.cc-target,
.svc-card .svc-en,
.svc-card .svc-num,
.knum-kicker,
.hub-label,
.tri-node .tri-sub,
.hero-logo-badge,
.tile-tag,
.tile-photo-badge,
.scroll-ind {
  color: #4f4466;
}

.tri-tag,
.footer-brand p,
.footer-col a,
.footer-bottom {
  color: #413653;
}

.hero-copy::before {
  background:
    radial-gradient(circle, rgba(97, 202, 255, 0.42) 0 2px, transparent 2px 100%);
  background-size: 18px 18px;
}

.hero-copy::after {
  display: none;
}

.hero-actions .btn-ghost {
  background: linear-gradient(90deg, rgba(255, 245, 248, 0.96) 0 50%, rgba(241, 250, 255, 0.96) 50% 100%);
  border-color: rgba(126, 96, 166, 0.18);
  color: #2e2440;
}

.hero-stat:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 243, 247, 0.98), rgba(255, 250, 244, 0.88));
  border-color: rgba(255, 140, 185, 0.18);
}

.hero-stat:nth-child(2) {
  background: linear-gradient(135deg, rgba(241, 250, 255, 0.98), rgba(245, 246, 255, 0.88));
  border-color: rgba(79, 202, 255, 0.2);
}

.hero-stat:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 248, 241, 0.98), rgba(242, 248, 255, 0.9));
}

.lineup-grid .svc-card:nth-child(odd) {
  background: linear-gradient(180deg, rgba(255, 247, 249, 0.94), rgba(255, 255, 255, 0.84));
  border-color: rgba(255, 136, 185, 0.16);
}

.lineup-grid .svc-card:nth-child(even) {
  background: linear-gradient(180deg, rgba(241, 250, 255, 0.94), rgba(255, 255, 255, 0.84));
  border-color: rgba(79, 202, 255, 0.16);
}

.lineup-grid .svc-card:nth-child(odd) .svc-icon {
  box-shadow: 0 14px 22px -16px rgba(255, 132, 187, 0.45);
}

.lineup-grid .svc-card:nth-child(even) .svc-icon {
  box-shadow: 0 14px 22px -16px rgba(75, 191, 255, 0.42);
}

.needs-item:nth-child(1),
.needs-item:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 245, 248, 0.98), rgba(255, 255, 255, 0.9));
  border-color: rgba(255, 137, 189, 0.16);
}

.needs-item:nth-child(3),
.needs-item:nth-child(4) {
  background: linear-gradient(135deg, rgba(241, 250, 255, 0.98), rgba(255, 255, 255, 0.9));
  border-color: rgba(79, 202, 255, 0.16);
}

.needs-item:nth-child(1) .needs-badge,
.needs-item:nth-child(2) .needs-badge {
  background: linear-gradient(135deg, #ff88be 0%, #ffb47d 100%);
}

.needs-item:nth-child(3) .needs-badge,
.needs-item:nth-child(4) .needs-badge {
  background: linear-gradient(135deg, #7e79ff 0%, #49caff 100%);
}

.needs-badge::after {
  border-color: rgba(166, 116, 255, 0.2);
}

.tri-node.creator {
  background: linear-gradient(135deg, rgba(255, 238, 246, 0.98), rgba(255, 252, 246, 0.86));
  border-color: rgba(255, 110, 183, 0.24);
}

.tri-node.brand {
  background: linear-gradient(135deg, rgba(237, 250, 255, 0.98), rgba(246, 248, 255, 0.86));
  border-color: rgba(86, 207, 255, 0.24);
}

.keynum-grid .knum-card:nth-child(1),
.keynum-grid .knum-card:nth-child(2),
.keynum-grid .knum-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 246, 249, 0.96), rgba(255, 255, 255, 0.82));
  border-color: rgba(255, 137, 189, 0.16);
}

.keynum-grid .knum-card:nth-child(4),
.keynum-grid .knum-card:nth-child(5),
.keynum-grid .knum-card:nth-child(6) {
  background: linear-gradient(180deg, rgba(242, 251, 255, 0.96), rgba(255, 255, 255, 0.82));
  border-color: rgba(79, 202, 255, 0.16);
}

.clients-grid .client:nth-child(odd) .client-logo,
.clients-grid .client:nth-child(even) .client-logo {
  background: none;
  border: none;
}

.cc-card.creator {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 182, 217, 0.9), transparent 30%),
    linear-gradient(155deg, rgba(255, 247, 250, 0.98), rgba(255, 241, 245, 0.88));
}

.cc-card.brand {
  background:
    radial-gradient(circle at 84% 16%, rgba(129, 219, 255, 0.9), transparent 30%),
    linear-gradient(205deg, rgba(246, 252, 255, 0.98), rgba(238, 249, 255, 0.88));
}

.cc-btn.creator {
  background: linear-gradient(135deg, #e63d7b 0%, #ff6a47 100%);
}

.cc-check-icon.creator {
  background: linear-gradient(135deg, #e63d7b 0%, #ff6a47 100%);
}

.cc-btn.brand {
  background: linear-gradient(135deg, #2f55ff 0%, #0095f2 100%);
}

.cc-btn.creator,
.cc-btn.brand {
  box-shadow: 0 20px 36px -18px rgba(37, 23, 68, 0.42);
}

.cc-btn.creator:hover,
.cc-btn.brand:hover {
  box-shadow: 0 24px 40px -18px rgba(37, 23, 68, 0.5);
}

.hero::before {
  border-color: rgba(74, 54, 107, 0.32);
}

.hero-logo {
  border-color: rgba(230, 61, 123, 0.34);
}

.hero-actions .btn-ghost,
.hero-stat,
.svc-card,
.needs-card,
.needs-item,
.tri-tag,
.contact-split,
.cc-check-list li {
  border-color: rgba(74, 54, 107, 0.3);
}

.hero-stats {
  border-top-color: rgba(74, 54, 107, 0.28);
}

.lineup-grid .svc-card:nth-child(odd),
.needs-item:nth-child(1),
.needs-item:nth-child(2),
.keynum-grid .knum-card:nth-child(1),
.keynum-grid .knum-card:nth-child(2),
.keynum-grid .knum-card:nth-child(3),
.tri-node.creator {
  border-color: rgba(230, 61, 123, 0.34);
}

.lineup-grid .svc-card:nth-child(even),
.needs-item:nth-child(3),
.needs-item:nth-child(4),
.keynum-grid .knum-card:nth-child(4),
.keynum-grid .knum-card:nth-child(5),
.keynum-grid .knum-card:nth-child(6),
.tri-node.brand {
  border-color: rgba(0, 149, 242, 0.36);
}

.clients-grid {
  border-top-color: rgba(74, 54, 107, 0.3);
  border-left-color: rgba(74, 54, 107, 0.3);
}

.client {
  border-right-color: rgba(74, 54, 107, 0.3);
  border-bottom-color: rgba(74, 54, 107, 0.3);
}

.cc-divider {
  background: linear-gradient(180deg, transparent, rgba(74, 54, 107, 0.38), transparent);
}

@media (max-width: 900px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 244, 247, 0.97) 0 50%, rgba(239, 249, 255, 0.97) 50% 100%),
      repeating-linear-gradient(90deg, rgba(129, 110, 170, 0.05) 0 1px, transparent 1px 96px);
  }

  .hero-logo {
    margin-top: 0;
  }

  body::before,
  body::after {
    width: 100vw;
    height: 50vh;
  }

  body::before {
    bottom: auto;
  }

  body::after {
    top: auto;
  }
}

/* ============ Creator Diagram Refresh ============ */
.diagram-intro {
  margin-top: 110px;
  margin-bottom: 28px;
  text-align: center;
}

.diagram-intro-kicker {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #8d6a99;
  margin-bottom: 14px;
  font-weight: 700;
}

.diagram-intro-title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
  font-weight: 900;
  color: #2c1f42;
  letter-spacing: -0.01em;
}

.diagram-panel {
  margin-top: 0;
  position: relative;
  padding: 60px 20px 40px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 191, 223, 0.34), transparent 22%),
    radial-gradient(circle at 84% 20%, rgba(148, 217, 255, 0.26), transparent 24%),
    linear-gradient(180deg, rgba(255, 247, 251, 0.92) 0%, rgba(243, 249, 255, 0.9) 100%);
  border: 1px solid rgba(115, 88, 154, 0.16);
  box-shadow: 0 26px 60px -44px rgba(76, 47, 118, 0.28);
  overflow: hidden;
}

.diagram-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.triangle-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.tri-card {
  position: relative;
  padding: 32px;
  border-radius: 24px;
  color: #fff;
  border: 1.5px solid;
  box-shadow: 0 0 30px, inset 0 0 20px;
}

.tri-card.creator {
  background: linear-gradient(135deg, rgba(230, 61, 123, 0.94), rgba(255, 106, 71, 0.9));
  border-color: rgba(230, 61, 123, 0.38);
  box-shadow: 0 0 30px rgba(230, 61, 123, 0.22), inset 0 0 20px rgba(255, 255, 255, 0.04);
}

.tri-card.brand {
  background: linear-gradient(135deg, rgba(0, 131, 198, 0.9), rgba(39, 87, 214, 0.86));
  border-color: rgba(0, 229, 255, 0.34);
  box-shadow: 0 0 30px rgba(0, 131, 198, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.04);
}

.tri-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.tri-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.tri-card.creator .tri-card-icon {
  background: linear-gradient(135deg, #e63d7b, #ff6a47);
  box-shadow: 0 0 20px rgba(230, 61, 123, 0.4);
}

.tri-card.brand .tri-card-icon {
  background: linear-gradient(135deg, #00e5ff, #3b82f6);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.tri-card-icon svg {
  width: 22px;
  height: 22px;
}

.tri-card-kicker {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 2px;
}

.tri-card.creator .tri-card-kicker { color: #ffd2de; }
.tri-card.brand .tri-card-kicker { color: #00e5ff; }

.tri-card h4 {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.tri-card-target {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
  line-height: 1.6;
}

.tri-feature-list {
  display: grid;
  gap: 10px;
}

.tri-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tri-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin-top: 6px;
  flex-shrink: 0;
}

.tri-card.creator .tri-feature-dot {
  background: #ffd0b8;
  box-shadow: 0 0 8px rgba(255, 208, 184, 0.8);
}

.tri-card.brand .tri-feature-dot {
  background: #00e5ff;
  box-shadow: 0 0 8px #00e5ff;
}

.tri-feature-title {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}

.tri-feature-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.hub-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 220px;
  min-width: 220px;
  z-index: 2;
}

.tri-line {
  position: absolute;
  left: -40px;
  right: -40px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(230, 61, 123, 0.55), rgba(255, 140, 87, 0.72) 28%, rgba(119, 155, 233, 0.68) 68%, rgba(0, 229, 255, 0.52));
  filter: blur(1px);
  transform: translateY(-1px);
  z-index: 0;
  pointer-events: none;
}

.hub-wrap::before {
  display: none;
}

.hub {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.18) 70%, rgba(255, 255, 255, 0.06) 100%);
  border: 2px solid rgba(120, 153, 228, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 36px rgba(230, 61, 123, 0.1),
    0 0 56px rgba(0, 216, 255, 0.1);
}

.hub::before,
.hub::after {
  display: none;
}

.hub-inner {
  text-align: center;
  color: #fff;
}

.hub-logo-image {
  display: block;
  width: 96px;
  max-width: 70%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.hub-inner .mcp {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -1px;
}

.hub-inner .sub {
  font-size: 9px;
  letter-spacing: 2px;
  opacity: 0.9;
  margin-top: 4px;
  color: #fff;
}

.hub-label {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 3px;
  color: #00e5ff;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hub-copy {
  font-size: 14px;
  color: #1f365a;
  margin-top: 4px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.18);
}

@media (max-width: 1100px) {
  .triangle-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hub-wrap {
    width: auto;
    min-width: 0;
    flex-direction: column;
  }

  .tri-line {
    display: none;
  }
}

@media (max-width: 700px) {
  .diagram-intro {
    margin-top: 80px;
    margin-bottom: 22px;
  }

  .diagram-panel {
    padding: 32px 16px 24px;
    border-radius: 24px;
  }

  .tri-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .hub {
    width: 132px;
    height: 132px;
  }

  .hub-inner .mcp {
    font-size: 24px;
  }

  .hub-logo-image {
    width: 78px;
  }
}

/* ============ Flat Theme Overrides ============ */
.hero {
  background: #ffffff;
  padding-top: 104px;
}

.hero::before {
  background: #ffffff;
  border: none;
  box-shadow: none;
}

.hero::after,
.hero-copy::before,
.hero-copy::after,
.hero-diagonal {
  display: none;
}

.hero .container {
  padding-bottom: 96px;
}

.hero-split {
  align-items: start;
  gap: 56px;
}

.hero-logo {
  margin-top: -24px;
  background: #ffffff;
  border: 1px solid rgba(71, 54, 103, 0.14);
  box-shadow: 0 24px 48px -36px rgba(71, 54, 103, 0.16);
}

.hero-logo::before,
.hero-logo::after {
  display: none;
}

.hero-headline .emph::after {
  display: none;
}

.hero-stat {
  background: #ffffff;
  border: 1px solid rgba(71, 54, 103, 0.12);
}

.hero-stat:nth-child(1) {
  border-color: rgba(235, 91, 136, 0.24);
}

.hero-stat:nth-child(2) {
  border-color: rgba(46, 166, 232, 0.24);
}

.hero-stat:nth-child(3) {
  border-color: rgba(71, 54, 103, 0.18);
}

.works {
  background: #fbf8fa;
}

.about {
  background: #f6eef3;
}

.keynum {
  background: #f5f8fb;
}

.clients {
  background: #fbf9fb;
}

.contact {
  background: #f3eef4;
}

.works,
.about,
.keynum,
.clients,
.contact {
  border-top: 1px solid rgba(71, 54, 103, 0.08);
}

.svc-card,
.knum-card,
.client,
.needs-item,
.cc-card,
.tri-card {
  background: #ffffff;
  box-shadow: 0 18px 36px -30px rgba(71, 54, 103, 0.12);
}

.lineup-grid .svc-card:nth-child(odd),
.needs-item:nth-child(1),
.needs-item:nth-child(2),
.tri-card.creator,
.cc-card.creator {
  background: #fff7fa;
  border-color: rgba(235, 91, 136, 0.24);
}

.lineup-grid .svc-card:nth-child(even),
.needs-item:nth-child(3),
.needs-item:nth-child(4),
.tri-card.brand,
.cc-card.brand {
  background: #f4fbff;
  border-color: rgba(46, 166, 232, 0.24);
}

.tile {
  box-shadow: 0 20px 36px -28px rgba(71, 54, 103, 0.16);
}

.diagram-intro-title,
.tri-card h4,
.tri-feature-title,
.hub-copy,
.tile-title {
  color: #231a34;
}

.tri-card-target,
.tri-feature-text {
  color: #64597a;
}

.tri-card.creator .tri-card-kicker {
  color: #eb5b88;
}

.tri-card.brand .tri-card-kicker,
.hub-label {
  color: #2ea6e8;
}

.tri-card.creator .tri-card-icon,
.cc-btn.creator,
.cc-check-icon.creator {
  background: #ea5d89;
}

.tri-card.brand .tri-card-icon,
.cc-btn.brand,
.cc-check-icon.brand {
  background: #2ea6e8;
}

.tri-card.creator .tri-feature-dot {
  background: #ea5d89;
  box-shadow: none;
}

.tri-card.brand .tri-feature-dot {
  background: #2ea6e8;
  box-shadow: none;
}

.tri-line {
  background: linear-gradient(90deg, rgba(234, 93, 137, 0.32), rgba(119, 155, 233, 0.32), rgba(46, 166, 232, 0.32));
}

.hub {
  background: radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 44%, rgba(255, 255, 255, 0.78) 100%);
  border: 2px solid rgba(119, 155, 233, 0.28);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.65), 0 18px 30px -22px rgba(71, 54, 103, 0.16);
}

.hub-wrap::before,
.hub::before,
.hub::after {
  display: none;
}

.contact-split,
.clients-grid {
  box-shadow: 0 18px 36px -30px rgba(71, 54, 103, 0.12);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 96px;
  }

  .hero .container {
    padding-bottom: 72px;
  }

  .hero-logo {
    margin-top: 0;
  }
}

/* ============ Flat Hero Variant ============ */
.nav {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(71, 54, 103, 0.08);
}

.hero .btn-primary {
  background: #ea5d89;
  color: #fff;
  border: 1px solid #d74a78;
  box-shadow: 0 12px 24px -20px rgba(215, 74, 120, 0.28);
}

.hero .btn-primary::before,
.hero .btn-primary::after {
  display: none;
}

.hero .btn-primary:hover {
  box-shadow: 0 16px 28px -20px rgba(215, 74, 120, 0.36);
}

.hero-split {
  grid-template-columns: minmax(0, 720px);
  justify-content: end;
  gap: 0;
  align-items: center;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
  linear-gradient(

  135deg,

  rgba(255, 255, 255, 0.04) 0%,

  rgba(255, 255, 255, 0.18) 20%,

  rgba(255, 255, 255, 0.8) 38%,

  rgba(255, 255, 255, 0.84) 54%,

  rgba(255, 255, 255, 0.97) 68%,

  rgba(255, 255, 255, 0) 80%,

  rgba(255, 255, 255, 0) 100%

);
  /* linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.18) 20%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.84) 54%, rgba(255, 255, 255, 0.97) 68%, rgba(255, 255, 255, 0.3) 100%); */
    /* linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.18) 20%, rgba(255, 255, 255, 0.52) 38%, rgba(255, 255, 255, 0.84) 54%, rgba(255, 255, 255, 0.97) 68%, rgba(255, 255, 255, 1) 100%); */
  pointer-events: none;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  display: block;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding-top: 8px;
  max-width: 720px;
  margin-top: 32px;
}

/* 横スクロール防止 */
body {
  overflow-x: hidden;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-width: 0; /* グリッドトラックがコンテンツ幅で広がるのを防ぐ */
  }

  .hero-copy {
    min-width: 0;
    width: 100%;
  }

  .hero-headline {
    font-size: clamp(32px, 10vw, 56px); /* スマホに適切なサイズに縮小 */
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero-headline .line:last-child {
    white-space: normal; /* nowrap を解除して折り返しを許可 */
  }

  /* SP: 背景画像を少し透過してテキストを読みやすく */
  .hero-bg-image {
    opacity: 0.7;
  }

  /* SP: 水平に近い角度で h1 付近にグラデーションを当てる（より上に） */
  .hero-bg-media::after {
    background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0)    0%,
      rgba(255, 255, 255, 0.15) 10%,
      rgba(255, 255, 255, 0.82) 20%,
      rgba(255, 255, 255, 0.94) 36%,
      rgba(255, 255, 255, 0.4)  50%,
      rgba(255, 255, 255, 0)    64%
    );
  }

  /* SP: scroll-ind を半透明ピルで見えやすく */
  .scroll-ind {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 8px 14px 6px;
  }

  .scroll-ind .bar {
    background: linear-gradient(180deg, rgba(79, 68, 102, 0.75), transparent);
  }
}

/* SP nav はみ出し対策 */
@media (max-width: 640px) {
  .nav .inner {
    gap: 12px;
  }

  .nav-logo-image {
    height: 28px; /* ロゴを縮小して横幅を確保 */
  }

  .nav .btn {
    padding: 9px 14px !important; /* インラインスタイルを上書き */
    font-size: 12px !important;
  }
}

/* ===== Mynavi Footer ===== */

@charset "UTF-8";

/*---------------------*/
/*	clearfix
/*---------------------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

/*=====================*/
/*	フッター
/*=====================*/

#GlobalFooter {
	width:80%;
	margin:15px auto 10px;
	padding-top:8px;
	border-top:solid 3px #2798e3;
	font-size: 75%;
	line-height: 1.5;
}

#FooterLogo {
	width: 10%;
	float: left;
	padding-top: 30px;
	text-align: center;
}

@media screen and (max-width:1000px) {
	#FooterLogo {
		display: none;
	}
}

#FooterService {
	width: 85%;
	float: left;
	margin-left: 10px;
	display: inline; /* dobble margin bugfix for ie6 */
}

#FooterServiceHead {
	margin-bottom: 8px;
}

#GlobalFooter .FooterTitle {
	width: 80%;
	float: left;
	font-size: 117%;
	font-weight: bold;
	color: #333;
}

#GlobalFooter #FooterServiceHead p.FooterHeadLink {
	text-align: right;
}

#GlobalFooter #FooterServiceHead p.FooterHeadLink a {
	float: right;
	padding-right: 20px;
	color: #09F !important;
}

#GlobalFooter #FooterServiceHead p.FooterHeadLink img {
	vertical-align: text-top;
}

#FooterServiceCont dl {
	padding: 1px 0 0;
	background: url(../images/mcp/footer/cmn/fline_blue.gif) repeat-y 100px;
}

#FooterServiceCont dl dt {
	width: 100px;
	float: left;
	padding-bottom: 5px;
	margin-right: 15px;
	color: #2798e3;
}

#FooterServiceCont dl dt.pl {
	padding-bottom: 10px;
}

#FooterServiceCont dl dd {
	float: left;
	margin: 0 10px 3px 0;
	padding: 0 9px 0 0;
	border-right: 1px solid #999;
	white-space: nowrap;
}

#FooterServiceCont dl dt.pl::after {
	clear: both;
	content: ".";
	display: block;
	opacity: 0;
}

#FooterServiceCont dl dd a:hover {
	text-decoration: underline;
}

#FooterServiceCont dl dd.last {
	border-right: none;
}

#FooterCorp {
	clear: both;
}

#FooterCorpInfo {
	float: left;
	width: 90%;
	margin: 10px 0 0 0;
	padding-top: 5px;
	border-top: 1px solid #2798e3;
	display: inline; /* dobble margin bugfix for ie6 */
}

@media screen and (max-width:1440px) {
	#FooterCorpInfo {
		width: 80%;
	}
}

#FooterCorpId {
	width: 300px;
	float: left;
}

#FooterCorpName {
	width: 100px;
	float: left;
	margin-top: 2px;
}

#copyright {
	width: 190px;
	float: left;
	margin: 3px 0 0 10px;
	font-size:81.6%;
	color: #333;
	line-height: 1.2;
}

#FooterCorpLink {
	float: left;
}

#FooterCorpLink ul li {
	float: left;
	margin: 0px 10px 7px 0;
	padding: 3px 9px 0px 0;
	border-right: 1px solid #999;
	font-size: 93.3%;
	line-height: 1.2;
}

#FooterCorpLink ul li.last {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}

#privacy {
	float: left;
	margin: -15px 0 10px 10px;
	display: inline; /* dobble margin bugfix for ie6 */
}

@media screen and (max-width:767px) {
	#privacy {
		margin: 0;
	}
}

/*=====================*/
/*	フォント
/*=====================*/

#GlobalFooter a {
	color: #666666;
	text-decoration: none;
}

#GlobalFooter a:hover {
	color: #666666;
	text-decoration: underline;
}

#GlobalFooter dt {
	width: 30%;
	box-sizing: border-box;
}

#GlobalFooter dd {
	padding: 10px;
	margin: 0;
	box-sizing: border-box;
}

#GlobalFooter .flex {
	display:flex;
	flex-wrap: wrap;
}

/* ============================================================
   MCP CONTACT PAGES  (creator / brand)
   ============================================================ */

.mcp-contact-page {
  min-height: 100vh;
  background: var(--bg-0);
}

/* --- Hero banner --- */
.mcp-contact-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.mcp-contact--creator .mcp-contact-hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255,62,165,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(192,64,255,0.16) 0%, transparent 55%),
    var(--bg-0);
}

.mcp-contact--brand .mcp-contact-hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(34,227,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(56,240,192,0.12) 0%, transparent 55%),
    var(--bg-0);
}

.mcp-contact-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  margin: 20px 0 18px;
}
.mcp-contact--brand .mcp-contact-hero__title {
  background: linear-gradient(to right, #2ea6e8, #8fd4f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mcp-contact--creator .mcp-contact-hero__title {
  background: linear-gradient(to right, #ea5d89, #f5a0be);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-text-brand {
  background: linear-gradient(135deg, #0095d5, #22e3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mcp-contact-hero__lead {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 28px;
}

.mcp-contact-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mcp-contact-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
}
.mcp-contact--brand .mcp-contact-badge {
  border: 1px solid #2ea6e8;
  background-color: #2ea6e8;
}

.mcp-contact--creator .mcp-contact-badge {
  border: 1px solid #ea5d89;
  background-color: #ea5d89;
}

/* --- Form body --- */
.mcp-contact-body {
  padding: 72px 0 120px;
}

.mcp-contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* dl / dt / dd 構造 */
.mcp-contact-body .wpcf7-form .wpcf7-spinner {
  display: none;
}
.mcp-contact-body .wpcf7-form dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  align-items: start;
  gap: 0 24px;
}
.mcp-contact-body .wpcf7-form dl:last-of-type {
  border-bottom: none;
}

@media (max-width: 640px) {
  .mcp-contact-body .wpcf7-form dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.mcp-contact-body .wpcf7-form dt {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
  padding: 12px 0 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}

.mcp-contact-body .wpcf7-form .required {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 4px;
  color: #fff;
  white-space: nowrap;
  display: block;
  width: 44px;
}

.mcp-contact--creator .wpcf7-form .required {
  background: #e63d7b;
}

.mcp-contact--brand .wpcf7-form .required {
  background: #00a5d9;
}

.mcp-contact-body .wpcf7-form dd {
  padding: 8px 0;
}

/* テキスト系入力 */
.mcp-contact-body .wpcf7-form input[type="text"],
.mcp-contact-body .wpcf7-form input[type="email"],
.mcp-contact-body .wpcf7-form input[type="tel"],
.mcp-contact-body .wpcf7-form input[type="url"],
.mcp-contact-body .wpcf7-form select,
.mcp-contact-body .wpcf7-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 15px;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}

.mcp-contact-body .wpcf7-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* クリエーター: ピンク focus */
.mcp-contact--creator .wpcf7-form input[type="text"]:focus,
.mcp-contact--creator .wpcf7-form input[type="email"]:focus,
.mcp-contact--creator .wpcf7-form input[type="tel"]:focus,
.mcp-contact--creator .wpcf7-form input[type="url"]:focus,
.mcp-contact--creator .wpcf7-form select:focus,
.mcp-contact--creator .wpcf7-form textarea:focus {
  border-color: #ff3ea5;
  background: rgba(255,62,165,0.06);
}

/* 企業: ブルー focus */
.mcp-contact--brand .wpcf7-form input[type="text"]:focus,
.mcp-contact--brand .wpcf7-form input[type="email"]:focus,
.mcp-contact--brand .wpcf7-form input[type="tel"]:focus,
.mcp-contact--brand .wpcf7-form input[type="url"]:focus,
.mcp-contact--brand .wpcf7-form select:focus,
.mcp-contact--brand .wpcf7-form textarea:focus {
  border-color: #22e3ff;
  background: rgba(34,227,255,0.06);
}

/* 郵便番号 横並び */
.mcp-contact-body .wpcf7-form .keyword-layout.small,
.mcp-contact-body .wpcf7-form .keyword-layout.small p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

#zip_1 { width: 72px !important; }
#zip_2 { width: 96px !important; }

/* チェックボックス・ラジオ */
.mcp-contact-body .wpcf7-form .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 5px 14px 5px 0;
  cursor: pointer;
}

.mcp-contact-body .wpcf7-form .wpcf7-list-item input[type="checkbox"],
.mcp-contact-body .wpcf7-form .wpcf7-list-item input[type="radio"] {
  width: 17px;
  height: auto;
  flex-shrink: 0;
  border-radius: 4px;
}

.mcp-contact--creator .wpcf7-form .wpcf7-list-item input {
  accent-color: #ff3ea5;
}

.mcp-contact--brand .wpcf7-form .wpcf7-list-item input {
  accent-color: #22e3ff;
}

/* 個人情報テキストエリア */
.mcp-contact-body .kiyaku_area {
  max-height: 200px;
  overflow-y: auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* 送信ボタン */
.mcp-contact-body .wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-top: 8px;
}

.mcp-contact-body .wpcf7-form .wpcf7-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.mcp-contact--creator .wpcf7-form .wpcf7-submit {
  background: linear-gradient(135deg, #ff3ea5, #c040ff);
  box-shadow: 0 8px 32px rgba(255,62,165,0.35);
}

.mcp-contact--brand .wpcf7-form .wpcf7-submit {
  background: linear-gradient(135deg, #22e3ff, #38f0c0);
  box-shadow: 0 8px 32px rgba(34,227,255,0.3);
  color: #06142a;
}

.wpcf7-form .mcp-submit-wrap {
  text-align: center;
}

/* バリデーションエラー */
.mcp-contact-body .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 5px;
  display: block;
}

.mcp-contact-body .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  border: none;
}

.mcp-contact--creator .wpcf7-response-output {
  background: rgba(255,62,165,0.1);
  color: #ff3ea5;
}

.mcp-contact--brand .wpcf7-response-output {
  background: rgba(34,227,255,0.1);
  color: #22e3ff;
}

/* 管理者向けnotice */
.mcp-contact-admin-notice {
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-mute);
}
