/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --white: #fff;
  --hero-bg: #f5f5f5;
  --num-bg: #0a0a0a;
  --about-bg: #0a0a0a;
  --rec-bg: #111111;
  --result-bg: #f0f0f0;
  --manual-bg: #fafafa;
  --req-bg: #0d0d0d;
  --merit-bg: #ffffff;
  --faq-bg: #181818;
  --cta-bg: #0a0a0a;
  --r: 16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'BIZ UDPGothic', 'Noto Sans JP', sans-serif;
  color: var(--black); line-height: 1.8;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  background: var(--white);
}
h1, h2, h3, .hero__community, .hero__badge, .btn-cta, .btn-inline {
  font-family: 'Space Grotesk', 'BIZ UDPGothic', sans-serif;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 28px; }

/* ===== PSYCHEDELIC PATTERNS ===== */
.hero, .sec { position: relative; overflow: hidden; }

/* Animated light orbs */
.hero::before, .sec::before {
  content: ''; position: absolute;
  width: 900px; height: 900px; border-radius: 50%;
  filter: blur(50px); opacity: 0.9;
  pointer-events: none; z-index: 0;
  animation: orbFloat 10s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(100px, -70px) scale(1.2); }
  50% { transform: translate(-60px, 80px) scale(0.85); }
  75% { transform: translate(70px, 30px) scale(1.15); }
}

/* Pattern overlays */
.hero::after, .sec::after {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero::before { background: radial-gradient(circle, rgba(0,0,0,.06), rgba(0,0,0,.03) 50%, transparent 75%); top: -200px; right: -100px; }
.hero::after {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,.04) 40px);
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700;
  margin-bottom: 40px; position: relative; z-index: 1;
}
.section-title small {
  font-weight: 400; font-size: .5em; opacity: .45; margin-left: 6px;
}

/* ===== FIXED CTA ===== */
.fixed-cta {
  position: fixed; bottom: 92px; left: 0; right: 0; z-index: 9999;
  display: flex; justify-content: center; gap: 12px;
  pointer-events: none;
  flex-wrap: wrap;
}
.fixed-cta .btn-cta { pointer-events: auto; }
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 28px; border-radius: var(--r);
  font-size: 1.1rem; font-weight: 700; color: var(--black);
  background: #FFE14D; border: 3px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  transition: transform .15s, box-shadow .15s;
  position: relative; overflow: hidden;
  animation: bounce 6s ease-in-out infinite;
  width: 260px;
}
.btn-cta:hover { transform: translate(-2px,-3px); box-shadow: 7px 8px 0 var(--black); animation: none; }
.btn-cta:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--black); }
.btn-cta svg { flex-shrink: 0; color: #06C755; }
.btn-cta--discord { background: linear-gradient(135deg, #E8E8EA 0%, #C0C0C5 50%, #E8E8EA 100%); }
.btn-cta--discord svg { color: #5865F2; }
.btn-cta--discord:hover { transform: translate(-2px,-3px); box-shadow: 7px 8px 0 var(--black); animation: none; }
.btn-cta::before {
  content: '✦'; position: absolute; top: 4px; right: 12px;
  font-size: 13px; opacity: 0; animation: sparkle 6s ease-in-out infinite;
}
.btn-cta::after {
  content: '✦'; position: absolute; bottom: 6px; left: 16px;
  font-size: 13px; opacity: 0; animation: sparkle 6s ease-in-out infinite 3s;
}

@keyframes bounce {
  0%,100%{transform:translateY(0)}15%{transform:translateY(-6px)}30%{transform:translateY(0)}45%{transform:translateY(-4px)}60%{transform:translateY(0)}
}
@keyframes sparkle {
  0%,100%{opacity:0;transform:scale(.5) rotate(0deg)}50%{opacity:1;transform:scale(1.2) rotate(180deg)}
}

/* ===== HERO ===== */
.hero {
  background: var(--hero-bg); padding: 0;
  min-height: 420px;
}
.hero__inner {
  max-width: 1000px; margin: 0 auto; padding: 0 28px;
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; gap: 40px;
  min-height: 420px;
}
.hero__img-wrap {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; width: 220px;
}
.hero__img-wrap img { width: 220px; height: auto; display: block; transform: scaleX(-1); }
.hero__img-name {
  text-align: center; font-size: .6rem; font-weight: 400;
  letter-spacing: .08em; color: #8a8a8a; margin-top: 6px; width: 220px;
  opacity: .8;
}
.hero__text { flex: 1; padding: 60px 0 60px; }
.hero__badge {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  background: var(--white); border: 2px solid var(--black); border-radius: 8px;
  padding: 5px 14px; margin-bottom: 20px;
  box-shadow: 3px 3px 0 var(--black);
}
.hero__title {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 700;
  line-height: 1.4; margin-bottom: 8px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #1d4ed8, #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__community {
  display: block; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  letter-spacing: .12em; line-height: 1.2;
  color: #0f172a;
  margin-top: 20px;
}
@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Inline CTA in hero */
.hero .btn-inline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--r);
  font-family: inherit; font-size: .9rem; font-weight: 700;
  background: #06C755; color: #fff;
  border: 3px solid #04a344;
  box-shadow: 4px 4px 0 #028a38;
  transition: transform .15s, box-shadow .15s;
}
.hero .btn-inline:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #028a38; }
.hero .btn-inline svg { flex-shrink: 0; }

/* ===== NUMBERS ===== */
.numbers {
  background: var(--num-bg); color: #fff;
  padding: 44px 0; border-bottom: 4px solid #7c3aed;
}
.numbers .wrap { display: flex; justify-content: center; gap: 32px; }
.num {
  text-align: center; padding: 16px 24px;
  border: 2px solid rgba(255,255,255,.15); border-radius: 14px;
  background: rgba(255,255,255,.05);
}
.num strong {
  font-family: 'Inter', sans-serif; font-size: 2.4rem; font-weight: 900;
  display: block; line-height: 1;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.num small { font-size: .8rem; font-weight: 700; color: #c4b5fd; }
.num span { display: block; font-size: .7rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ===== SECTION VARIANTS ===== */
.sec { padding: 80px 0; }
.sec > .wrap { position: relative; z-index: 1; }

.sec--about { background: var(--about-bg); color: #fff; }
.sec--about::before { background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%); bottom: -100px; left: -80px; animation-delay: 4s; }
.sec--about::after {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255,255,255,.04) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,255,255,.04) 50px);
}

.sec--rec { background: var(--rec-bg); color: #fff; }
.sec--rec::before { background: radial-gradient(circle, rgba(255,255,255,.07), transparent 70%); top: -100px; right: -80px; animation-delay: 2s; }
.sec--rec::after {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255,255,255,.05) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,255,255,.05) 50px);
}

.sec--result { background: var(--result-bg); }
.sec--result::before { background: radial-gradient(circle, rgba(0,0,0,.05), transparent 70%); bottom: -80px; right: -60px; animation-delay: 6s; }
.sec--result::after {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(0,0,0,.03) 29px, rgba(0,0,0,.03) 30px);
}

.sec--manual { background: var(--manual-bg); color: #0a0a0a; }
.sec--manual::before {
  background: radial-gradient(circle, rgba(0,0,0,.04), transparent 70%);
  top: -120px; left: -80px; animation-delay: 4s;
}
.sec--manual::after {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(0,0,0,.025) 29px, rgba(0,0,0,.025) 30px);
}

.sec--req { background: var(--req-bg); color: #fff; }
.sec--req::before { background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%); top: -80px; left: -60px; animation-delay: 8s; }
.sec--req::after {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255,255,255,.05) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,255,255,.05) 50px);
}

.sec--merit { background: var(--merit-bg); }
.sec--merit::before { background: radial-gradient(circle, rgba(0,0,0,.04), transparent 70%); bottom: -80px; left: -80px; animation-delay: 3s; }
.sec--merit::after {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(0,0,0,.03) 29px, rgba(0,0,0,.03) 30px);
}

.sec--faq { background: var(--faq-bg); color: #fff; }
.sec--faq::before { background: radial-gradient(circle, rgba(255,255,255,.07), transparent 70%); top: -60px; right: -60px; animation-delay: 5s; }
.sec--faq::after {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255,255,255,.05) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,255,255,.05) 50px);
}

/* ===== CARD ===== */
.card-box {
  background: var(--white); border-radius: var(--r);
  border: 2px solid #d0d0d0; box-shadow: 4px 4px 0 #d0d0d0;
  padding: 12px 16px;
  transition: transform .15s, box-shadow .15s;
  position: relative; overflow: visible;
  color: var(--black);
}
.card-box:hover { transform: translate(-2px,-3px); box-shadow: 6px 6px 0 #aaa; }
.card-box h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.card-box p { font-size: .82rem; opacity: .6; line-height: 1.7; }

/* Dark section overrides */
.sec--about .section-title,
.sec--rec .section-title,
.sec--req .section-title,
.sec--faq .section-title { color: #fff; }
.sec--about .card-box { background: #1e1e1e; border-color: #333; box-shadow: 4px 4px 0 #333; color: #fff; }
.sec--about .check-item { background: #1d1d1d; border-color: #3f3f3f; box-shadow: 4px 4px 0 #303030; color: #fff; }
.sec--about .check-item small { color: rgba(255,255,255,.86); }
.sec--about .section-figure__credit { color: rgba(255,255,255,.5); }
.sec--about .section-figure img { filter: drop-shadow(0 14px 24px rgba(0,0,0,.35)); }

/* ===== MANUAL SECTION ===== */
.section-layout--manual {
  align-items: center;
  gap: 40px;
}
.manual-text {
  flex: 1;
  display: flex; flex-direction: column; gap: 14px;
  max-width: 560px;
}
.manual-headline {
  font-family: 'Space Grotesk', 'BIZ UDPGothic', sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.55;
  color: #0a0a0a;
  margin: 0;
  letter-spacing: -.005em;
}
.manual-headline em {
  font-style: normal;
  position: relative;
  font-size: 1.5em;
  font-weight: 900;
  color: #0a0a0a;
  padding: 0 4px;
  display: inline-block;
}
.manual-headline em::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 4px;
  height: 8px;
  background: #c9a96a;
  z-index: -1;
  opacity: .9;
}
.manual-stat {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
  position: relative;
}
.manual-stat__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 6px;
}
.manual-stat__value {
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.6;
}
.manual-stat__value strong {
  font-size: 1.65em;
  font-weight: 900;
  color: #0a0a0a;
  letter-spacing: -.01em;
  border-bottom: 2px solid #c9a96a;
  padding-bottom: 1px;
}
.manual-stat__sub {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ececec;
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.6;
}
.manual-stat__sub strong {
  font-size: 1.65em;
  font-weight: 900;
  color: #0a0a0a;
  letter-spacing: -.01em;
  border-bottom: 2px solid #c9a96a;
  padding-bottom: 1px;
}
.manual-detail {
  font-size: .88rem;
  line-height: 1.85;
  color: #4b5563;
  margin: 0;
}
.manual-detail code {
  display: inline-block;
  padding: 1px 8px;
  background: transparent;
  color: #0a0a0a;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: 'Space Grotesk', monospace;
  font-size: .9em;
  font-weight: 700;
  letter-spacing: .01em;
}
.manual-phone {
  flex: 0 0 260px;
  width: 260px; height: 560px;
  border-radius: 32px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.08);
  animation: phoneFloat 4s ease-in-out infinite;
  will-change: transform;
}
.manual-phone video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 32px;
}
@keyframes phoneFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -12px, 0) rotate(1deg); }
}
@media (max-width: 768px) {
  .section-layout--manual {
    flex-direction: column;
    gap: 28px;
  }
  .manual-text { max-width: 100%; }
  .manual-phone {
    flex: 0 0 auto;
    width: 220px; height: 470px;
  }
}
.sec--rec .card-box { background: #1e1e1e; border-color: #333; box-shadow: 4px 4px 0 #333; color: #fff; }
.sec--rec .check-item { background: #1d1d1d; border-color: #3f3f3f; box-shadow: 4px 4px 0 #303030; color: #fff; }
.sec--rec .check-item:hover { box-shadow: 6px 6px 0 #4a4a4a; }
.sec--rec .check-item small { color: rgba(255,255,255,.86); }
.sec--rec .section-figure__credit,
.sec--req .section-figure__credit,
.sec--faq .section-figure__credit { color: rgba(255,255,255,.5); }
.sec--rec .section-figure img { filter: drop-shadow(0 14px 24px rgba(0,0,0,.35)); }
.sec--req .req li { border-color: #333; box-shadow: 4px 4px 0 #333; background: #1e1e1e; color: #fff; }
.sec--req .req li::before { background: #fff; }
.sec--req .req li::after { border-color: #0a0a0a; }
.sec--req .section-figure img { filter: drop-shadow(0 14px 24px rgba(0,0,0,.35)); }
.sec--faq .qa { background: #1e1e1e; border-color: #333; box-shadow: 4px 4px 0 #333; color: #fff; }
.sec--faq .qa__q { color: #aaa; }
.sec--faq .faq-char { color: #fff; }
.sec--faq .qa__answer { color: rgba(255,255,255,.65); }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.section-sep {
  position: relative;
  height: 58px;
  margin-top: -1px;
  margin-bottom: -1px;
  overflow: hidden;
  z-index: 2;
  background: var(--white);
  color: var(--white);
  --sep-stroke: #d2d2d2;
  --sep-stroke-soft: #ececec;
}
.section-sep__svg {
  display: block;
  width: 100%;
  height: 100%;
}
.section-sep__line {
  fill: none;
  stroke: var(--sep-stroke);
  stroke-width: 2.5;
  stroke-linecap: round;
}
.section-sep__line--soft {
  stroke: var(--sep-stroke-soft);
  stroke-width: 1.5;
}
.section-sep--about {
  background: var(--hero-bg);
  color: var(--about-bg);
  --sep-stroke: #4a4a4a;
  --sep-stroke-soft: #2a2a2a;
}
.section-sep--manual {
  background: var(--about-bg);
  color: var(--manual-bg);
  --sep-stroke: #d2d2d2;
  --sep-stroke-soft: #ececec;
}
.section-sep--rec {
  background: var(--manual-bg);
  color: var(--rec-bg);
  --sep-stroke: #4a4a4a;
  --sep-stroke-soft: #2a2a2a;
}
.section-sep--result {
  background: var(--rec-bg);
  color: var(--result-bg);
  --sep-stroke: #d2d2d2;
  --sep-stroke-soft: #ececec;
}
.section-sep--req {
  background: var(--result-bg);
  color: var(--req-bg);
  --sep-stroke: #474747;
  --sep-stroke-soft: #242424;
}
.section-sep--merit {
  background: var(--req-bg);
  color: var(--merit-bg);
  --sep-stroke: #d6d6d6;
  --sep-stroke-soft: #eeeeee;
}
.section-sep--faq {
  background: var(--merit-bg);
  color: var(--faq-bg);
  --sep-stroke: #505050;
  --sep-stroke-soft: #2a2a2a;
}
.section-layout {
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px;
}
.section-layout > * { min-width: 0; }
.section-figure {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  margin: -8px auto 24px;
}
.section-figure img {
  display: block; width: 190px; height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.12));
  animation: heroFloat 4.8s ease-in-out infinite;
}
.section-layout .section-figure { flex: 0 0 190px; margin: 0; }
.section-figure__credit {
  font-size: .62rem; font-weight: 400; line-height: 1.4;
  letter-spacing: .06em; color: #8a8a8a; text-align: center;
}
.section-figure--about img { width: 184px; }
.section-figure--rec img,
.section-figure--req img { width: 176px; }
.section-figure--result img { width: 186px; }
.section-figure--merit img { width: 172px; }
.sec--about .about-list { flex: 1; width: auto; max-width: 620px; margin: 0; }
.sec--rec .checks--col,
.sec--faq .qa-list { flex: 1; max-width: none; margin: 0; }
.sec--result .cases--col,
.sec--req .req,
.sec--faq .faq-char { margin: 0; }
.section-layout--faq {
  align-items: flex-end;
  gap: 24px;
}
.section-layout--faq .qa-list {
  flex: 0 1 620px;
}
.section-layout--faq .faq-char {
  flex: 0 0 360px;
}
.section-layout--faq .section-figure {
  flex: 0 0 360px;
}
.section-layout--result {
  justify-content: center;
  gap: 24px;
}
.section-layout--result .cases--col {
  flex: 0 1 420px;
}
.result-side {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-layout--result .section-figure {
  flex: 0 0 auto;
}
.merit-highlight {
  max-width: 920px; margin: -4px auto 26px; padding: 22px 22px 18px;
  border: 2px solid #d0d0d0; border-radius: 24px;
  background: #fff;
  box-shadow: 4px 4px 0 #d0d0d0;
  color: #0a0a0a; text-align: center;
}
.merit-highlight__eyebrow {
  display: inline-block; margin-bottom: 10px; padding: 5px 12px;
  border-radius: 10px; background: #fff; color: #0a0a0a;
  border: 2px solid #d0d0d0; box-shadow: 3px 3px 0 #d0d0d0;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
}
.merit-highlight__title {
  font-size: clamp(1.05rem, 2.3vw, 1.45rem);
  line-height: 1.5; margin-bottom: 18px; font-weight: 900;
}
.merit-highlight__lead {
  max-width: 660px; margin: 0 auto 18px;
  font-size: .9rem; line-height: 1.7; color: #555;
}
.merit-artists {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  align-items: stretch;
}
.merit-artist {
  margin: 0; padding: 14px 10px 10px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 18px;
  background: linear-gradient(180deg, #1a1a1a, #222);
  display: flex; flex-direction: column; justify-content: flex-start;
  width: 100%;
  min-width: 0;
}
.merit-artist img {
  display: block; width: auto; max-width: 100%; height: 220px;
  margin: 0 auto 10px; object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.28));
}
.merit-artist figcaption {
  font-size: .78rem; line-height: 1.5; color: rgba(255,255,255,.88); font-weight: 700;
}
.merit-artist__name { display: block; }
.merit-artist figcaption small {
  display: block; margin-top: 2px;
  font-size: .62rem; font-weight: 400; letter-spacing: .05em;
  color: rgba(255,255,255,.48);
}
.about-list { display: flex; flex-direction: column; gap: 14px; width: fit-content; margin: 0 auto; }
.sec--merit .about-list { width: 100%; max-width: 920px; }
.sec--merit .about-list .card-box { width: 100%; }

/* ===== RECOMMEND (checks) ===== */
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checks--col { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; gap: 14px; }
.check-item {
  background: #fff; border-radius: var(--r);
  border: 2px solid #e0e0e0; box-shadow: 4px 4px 0 #e0e0e0;
  padding: 14px 18px; font-size: .93rem; font-weight: 700; line-height: 1.5;
  color: #0a0a0a; transition: transform .15s, box-shadow .15s;
}
.check-item:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #555; }
.check-item small { display: block; font-weight: 400; font-size: .82rem; line-height: 1.7; margin-top: 6px; }
.rec-char { text-align: center; margin-top: 32px; }
.rec-char img { display: inline-block; width: 160px; height: auto; filter: drop-shadow(4px 5px 0 rgba(0,0,0,.12)); animation: heroFloat 5s ease-in-out infinite; }

/* ===== RESULTS ===== */
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cases--col { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; gap: 16px; }
.case {
  position: relative;
  background: var(--white); border-radius: var(--r); overflow: visible;
  border: 2px solid #d0d0d0; box-shadow: 4px 4px 0 #d0d0d0;
  transition: transform .15s, box-shadow .15s;
}
.case__head { border-top-left-radius: 13px; border-top-right-radius: 13px; }
.case:hover { transform: translate(-2px,-3px); box-shadow: 6px 6px 0 #aaa; }
.case__head {
  padding: 10px 18px; font-size: .78rem; font-weight: 700;
  background: #0a0a0a; color: #fff; letter-spacing: .05em;
}
.case__body { display: flex; align-items: flex-start; padding: 8px 16px; gap: 8px; }
.case__before, .case__after { flex: 1; font-size: .82rem; line-height: 1.6; }
.case__before { opacity: .55; }
.case__after strong { color: #0a0a0a; font-size: 1.05rem; font-weight: 900; }
.case__arrow {
  flex-shrink: 0; width: 24px; height: 24px; position: relative;
  background: #e8e8e8; border-radius: 50%;
}
.case__arrow::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  border: solid #555; border-width: 0 2.5px 2.5px 0;
  padding: 4px; transform: translate(-65%,-50%) rotate(-45deg);
}
.result-note {
  position: relative;
  max-width: 250px; margin: 0;
  padding: 14px 16px;
  font-size: .82rem; font-weight: 700; line-height: 1.8;
  color: #1d9bf0; text-align: left;
  background: #fff;
  border: 2px solid #d0d0d0;
  border-radius: 20px;
  box-shadow: 4px 4px 0 #d0d0d0;
}

/* ===== REQUIREMENTS ===== */
.req {
  list-style: none; display: flex; flex-direction: column;
  gap: 14px; align-items: stretch; width: fit-content; max-width: 760px; margin: 0 auto;
}
.req li {
  padding: 14px 28px 14px 56px; position: relative;
  background: var(--white); border-radius: 999px;
  font-size: .92rem; font-weight: 700; line-height: 1.6;
  border: 3px solid var(--black); box-shadow: 4px 4px 0 var(--black);
}
.req li::before {
  content: ''; position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%; background: #3b82f6;
}
.req li::after {
  content: ''; position: absolute; left: 24px; top: 50%;
  width: 6px; height: 11px; transform: translateY(-70%) rotate(45deg);
  border: solid #fff; border-width: 0 2.5px 2.5px 0;
}
.req li small { display: block; font-size: .78rem; opacity: .5; margin-top: 2px; }

/* ===== FAQ ===== */
.faq-char { text-align: center; margin: -16px 0 28px; }
.faq-char img { display: inline-block; width: 340px; max-width: none; height: auto; filter: drop-shadow(0 14px 24px rgba(0,0,0,.35)); animation: heroFloat 4s ease-in-out infinite; }
.qa-list { display: flex; flex-direction: column; gap: 14px; max-width: 680px; margin: 0 auto; }
.qa {
  background: var(--white); border: 3px solid var(--black);
  border-radius: 14px; box-shadow: 5px 5px 0 var(--black);
  transition: transform .15s, box-shadow .15s;
}
.qa:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--black); }
.qa summary {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; cursor: pointer; list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa__q { font-size: 1.3rem; font-weight: 700; color: #8b5cf6; flex-shrink: 0; }
.qa__question { font-size: .92rem; font-weight: 700; flex: 1; }
.qa__toggle { font-size: 1.3rem; font-weight: 700; flex-shrink: 0; transition: transform .3s; }
.qa[open] .qa__toggle { transform: rotate(45deg); }
.qa__answer { padding: 0 20px 16px 48px; font-size: .85rem; opacity: .65; line-height: 1.8; }

/* ===== CTA ===== */
.cta {
  background: var(--cta-bg); color: #fff;
  text-align: center; padding: 80px 0 100px;
  position: relative; overflow: hidden;
  border-bottom: none;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(168,85,247,.2), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(236,72,153,.15), transparent 45%);
  pointer-events: none;
}
.cta::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(from 120deg at 50% 50%,
    transparent 0deg, rgba(168,85,247,.03) 40deg, transparent 80deg,
    rgba(6,182,212,.03) 160deg, transparent 200deg);
  animation: spin 30s linear infinite; pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta .wrap { position: relative; z-index: 1; }
.cta__pre { font-size: .85rem; opacity: .5; margin-bottom: 4px; }
.cta__title { font-size: clamp(1.4rem,3vw,1.9rem); font-weight: 700; margin-bottom: 28px; }
.cta .btn-inline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 44px; border-radius: var(--r);
  font-family: inherit; font-size: 1rem; font-weight: 700;
  background: #06C755; color: #fff;
  border: 3px solid #04a344; box-shadow: 4px 4px 0 #028a38;
  transition: transform .15s, box-shadow .15s;
}
.cta .btn-inline:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #028a38; }
.cta .btn-inline svg { flex-shrink: 0; }

/* ===== Footer ===== */
.footer { padding: 24px 0 80px; text-align: center; font-size: .72rem; background: #050505; color: #444; }

/* ===== SCROLL ANIM ===== */
.fade-in {
  opacity: 0; transform: translateY(30px) scale(.97);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0) scale(1); }
.fade-in:nth-child(2){transition-delay:.08s}
.fade-in:nth-child(3){transition-delay:.16s}
.fade-in:nth-child(4){transition-delay:.24s}
.fade-in:nth-child(5){transition-delay:.32s}
.fade-in:nth-child(6){transition-delay:.4s}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero__inner { flex-direction: column; align-items: center; gap: 0; padding: 40px 28px 0; }
  .hero__img-wrap { flex: none; width: 60%; order: 1; }
  .hero__text { padding: 0 0 24px; text-align: center; order: 0; }
  .numbers .wrap { flex-direction: row; gap: 10px; }
  .num { padding: 12px 8px; flex: 1; }
  .num strong { font-size: 1.6rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section-sep { height: 42px; }
  .section-layout { flex-direction: column; gap: 20px; }
  .section-layout--faq .faq-char,
  .section-layout--faq .section-figure { flex: none; }
  .section-figure { margin: -2px auto 18px; }
  .section-figure img { width: 152px; }
  .section-figure--about img,
  .section-figure--rec img,
  .section-figure--req img,
  .section-figure--result img,
  .section-figure--merit img { width: 152px; }
  .merit-highlight { margin: -2px auto 22px; padding: 18px 14px 14px; border-radius: 20px; }
  .merit-highlight__title { margin-bottom: 14px; }
  .merit-highlight__lead { margin-bottom: 14px; font-size: .84rem; }
  .merit-artists { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .merit-artist { padding: 10px 8px 8px; border-radius: 14px; }
  .merit-artist img { height: 148px; margin-bottom: 6px; }
  .merit-artist figcaption { font-size: .72rem; }
  .checks { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .result-side { flex: none; width: 100%; max-width: 360px; }
  .result-note { max-width: 100%; text-align: center; }
  .section-layout--faq { flex-direction: column; }
  .section-layout--faq .faq-char { order: -1; align-self: center; margin: 0 auto 20px; }
  .faq-char img { width: 148px; }
  .rec-char img { width: 130px; }
  .case__body { flex-direction: column; text-align: center; gap: 12px; }
  .case__arrow { transform: rotate(90deg); }
  .fixed-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    justify-content: center; padding: 12px 20px 20px; gap: 8px;
    background-color: #fff;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 80' preserveAspectRatio='none'><path d='M0 20 Q30 4 60 20 T120 20 T180 20 T240 20' stroke='%23FF3CAC' stroke-width='2' fill='none' opacity='.55'/><path d='M0 35 Q30 19 60 35 T120 35 T180 35 T240 35' stroke='%23784BA0' stroke-width='2' fill='none' opacity='.55'/><path d='M0 50 Q30 34 60 50 T120 50 T180 50 T240 50' stroke='%232B86C5' stroke-width='2' fill='none' opacity='.55'/><path d='M0 65 Q30 49 60 65 T120 65 T180 65 T240 65' stroke='%23FFB86C' stroke-width='2' fill='none' opacity='.55'/></svg>");
    background-repeat: repeat-x;
    background-size: 240px 80px;
    background-position: top center;
    border-top: 3px solid var(--black);
    flex-direction: column; align-items: stretch;
  }
  .fixed-cta .btn-cta { width: 100%; justify-content: center; padding: 14px 20px; font-size: 1rem; min-width: 0; }
  .section-title { margin-bottom: 28px; }
}
