/* =============================================
   COMPONENTS: Buttons, Cards, Story, Roadmap, Cases, Audience, About, Pricing, FAQ, CTA
   ============================================= */

/* ========= BUTTONS ========= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: var(--bg);
  padding: 18px 36px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.3s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26, 26, 26, 0.08);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 0;
}
.btn-primary:hover::before {
  transform: translateY(0);
}
.btn-primary > * {
  position: relative;
  z-index: 1;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px -12px rgba(196, 90, 62, 0.45),
    0 0 0 1px rgba(196, 90, 62, 0.2);
}
.btn-primary .arrow {
  transition: transform 0.3s var(--ease-out-expo);
}
.btn-primary:hover .arrow {
  transform: translateX(6px);
}
.btn-text {
  color: var(--text-sub);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 16px 8px;
  border-bottom: 1px solid var(--border-strong);
  transition: color 0.3s, border-color 0.3s;
}
.btn-text:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ========= 02. WHY NOW (Dark passage) ========= */
.why-now-section {
  background: var(--bg-dark);
  color: var(--bg);
  max-width: none;
  padding: 200px 48px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.why-now-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(196, 90, 62, 0.08), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(232, 183, 165, 0.04), transparent 55%);
  pointer-events: none;
}
.why-now-section::after {
  content: '01';
  position: absolute;
  top: 80px;
  right: 6vw;
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 300;
  color: rgba(232, 183, 165, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.why-now-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.story-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 16px;
  position: sticky;
  top: 120px;
}
.story-content {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.35rem;
  line-height: 2.2;
  color: var(--text);
  font-weight: 400;
}
.why-now-section .story-label {
  color: var(--accent-light);
}
.why-now-section .story-content {
  color: rgba(250, 247, 242, 0.92);
}
.why-now-section .story-content .emphasis {
  color: var(--accent-light);
  border-top-color: rgba(232, 183, 165, 0.25);
  border-bottom-color: rgba(232, 183, 165, 0.25);
}
.why-now-section .story-content .emphasis::before {
  background: var(--accent-light);
}
.why-now-section .story-content .emphasis::after {
  color: var(--accent-light);
  opacity: 0.18;
}
.story-content p + p {
  margin-top: 36px;
}
.story-content .emphasis {
  display: block;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 500;
  color: var(--accent);
  margin: 80px 0;
  padding: 36px 40px 36px 48px;
  position: relative;
  line-height: 1.55;
  letter-spacing: -0.005em;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.story-content .emphasis::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 56%;
  background: var(--accent);
  transform: translateY(-50%);
}
.story-content .emphasis::after {
  content: '\201C';
  position: absolute;
  right: 32px;
  top: 4px;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 7rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}

/* ========= STAT BARS (Glassmorphism — dark-bg edition) ========= */
.stat-bars {
  margin: 72px 0 24px;
  padding: 52px 44px;
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.stat-bars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent-light);
}
.stat-bars-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}
.stat-bars-eyebrow strong {
  color: var(--accent-light);
  font-weight: 700;
}
.stat-bars-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(250, 247, 242, 0.92);
  margin-bottom: 48px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.bar-row {
  display: grid;
  grid-template-columns: 80px 1fr 130px;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  position: relative;
  transition: background 0.3s ease;
}
.bar-row:first-of-type {
  border-top: none;
}
.bar-row.highlight {
  background: linear-gradient(to right, rgba(232, 183, 165, 0.08), rgba(232, 183, 165, 0.01) 70%, transparent);
  margin: 0 -24px;
  padding: 28px 24px 28px 20px;
  border-top: none;
  border-left: 3px solid var(--accent-light);
  border-radius: 0 4px 4px 0;
}
.bar-row.highlight + .bar-row {
  border-top: 1px solid rgba(250, 247, 242, 0.08);
}
.bar-label {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.65);
  letter-spacing: 0.04em;
}
.bar-row.highlight .bar-label {
  color: rgba(250, 247, 242, 0.95);
  font-weight: 700;
  font-size: 1.18rem;
}
.bar-track {
  height: 10px;
  background: rgba(250, 247, 242, 0.08);
  position: relative;
  border-radius: 999px;
  overflow: visible;
}
.bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, rgba(232, 183, 165, 0.5), rgba(250, 247, 242, 0.55));
  width: 0;
  border-radius: 999px;
  transition: width 1.8s var(--ease-out-expo);
}
.bar-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.7);
  transform: translateY(-50%);
  border: 2px solid var(--bg-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.bar-row.highlight .bar-track {
  height: 14px;
  background: rgba(196, 90, 62, 0.18);
}
.bar-row.highlight .bar-fill {
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  box-shadow: 0 0 24px rgba(196, 90, 62, 0.5);
}
.bar-row.highlight .bar-fill::after {
  width: 18px;
  height: 18px;
  background: var(--accent-light);
  border-color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(232, 183, 165, 0.7);
}
.stat-bars.in-view .bar-fill {
  width: var(--target-width);
}
.bar-value {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.55);
  text-align: right;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bar-row.highlight .bar-value {
  color: var(--accent-light);
  font-weight: 700;
  font-size: 2.8rem;
}
.stat-source {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.4);
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  line-height: 1.7;
}
.stat-source a {
  color: rgba(250, 247, 242, 0.65);
}
.stat-source a:hover {
  color: var(--accent-light);
}
.stat-source a {
  color: var(--text-sub);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.stat-source a:hover {
  color: var(--accent);
}

/* ========= 03. WHY 95% FAILS ========= */
.why-fail {
  background: var(--bg-alt);
  max-width: none;
  padding: 160px 48px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.why-fail::before {
  content: '02';
  position: absolute;
  top: 80px;
  right: 6vw;
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 300;
  color: rgba(196, 90, 62, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.why-fail-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.stat-display {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px;
}
.big-stat {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--accent);
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
}
.big-stat .stat-num {
  display: inline-block;
  min-width: 2ch;
}
.big-stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-top: 16px;
}
.why-fail-text p {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 24px;
}
.why-fail-text .quiet {
  color: var(--text-sub);
  font-size: 1rem;
}

/* ========= 04. MY ANSWER (Dark passage) ========= */
.answer-section {
  background: var(--bg-dark);
  color: var(--bg);
  max-width: none;
  padding: 160px 48px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.answer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(196, 90, 62, 0.12), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(232, 183, 165, 0.05), transparent 50%);
  pointer-events: none;
}
.answer-section::after {
  content: '03';
  position: absolute;
  top: 80px;
  right: 6vw;
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 300;
  color: rgba(232, 183, 165, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.answer-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.answer-section .section-title {
  color: var(--bg);
}
.answer-section .section-lead {
  color: rgba(250, 247, 242, 0.65);
}
.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}
.answer-card {
  padding: 56px 40px;
  background: rgba(250, 247, 242, 0.03);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 4px;
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.answer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(196, 90, 62, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.answer-card:hover::before {
  opacity: 1;
}
.answer-card:hover {
  border-color: var(--accent);
  background: rgba(250, 247, 242, 0.05);
  transform: translateY(-8px);
  box-shadow:
    0 40px 80px -30px rgba(196, 90, 62, 0.5),
    0 0 0 1px rgba(232, 183, 165, 0.25);
}
.answer-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.answer-num::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-light);
}
.answer-card h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--bg);
}
.answer-card p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: rgba(250, 247, 242, 0.7);
}

/* ========= 05. METHOD ROADMAP ========= */
.roadmap {
  margin-top: 80px;
  position: relative;
}
.roadmap::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--border-strong);
}
.roadmap::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 12px;
  width: 1px;
  height: 0;
  background: var(--accent);
  transition: height 0.6s var(--ease-out-expo);
  z-index: 1;
}
.roadmap.is-progressing::after {
  height: var(--progress, 0);
}
.roadmap-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  position: relative;
}
.roadmap-step + .roadmap-step {
  border-top: 1px solid var(--border);
}
.roadmap-marker {
  position: relative;
  z-index: 2;
}
.roadmap-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-sub);
  transition: all 0.4s var(--ease-out-expo);
}
.roadmap-step.is-active .roadmap-dot,
.roadmap-step:hover .roadmap-dot {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-alt);
  transform: scale(1.08);
}
.roadmap-body h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.roadmap-body .duration {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.roadmap-body p {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text-sub);
  max-width: 56ch;
}

/* ========= 06. PROCESS ========= */
.process-section {
  background: var(--bg-dark);
  color: var(--bg);
  max-width: none;
  padding: 160px 48px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '05';
  position: absolute;
  top: 80px;
  right: 6vw;
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 300;
  color: rgba(232, 183, 165, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.process-section .section-title {
  color: var(--bg);
}
.process-section .section-lead {
  color: rgba(250, 247, 242, 0.65);
}
.process-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
}
.process-step {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  transition: border-color 0.4s ease;
}
.process-step:hover {
  border-top-color: var(--accent);
}
.process-num {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 28px;
  opacity: 0.7;
}
.process-step h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 14px;
}
.process-step p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(250, 247, 242, 0.6);
}

/* ========= 07. CASE STUDIES (Cream passage) ========= */
.cases-section {
  background: var(--bg-alt);
  max-width: none;
  padding: 160px 48px;
  margin: 0;
  position: relative;
}
.cases-section::before {
  content: '07';
  position: absolute;
  top: 80px;
  right: 6vw;
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 300;
  color: rgba(196, 90, 62, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.cases-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cases {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 80px;
}
.case-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  padding: 64px 56px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  align-items: start;
  position: relative;
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s, box-shadow 0.5s var(--ease-out-expo);
  overflow: hidden;
}
.case-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.case-row:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow:
    0 36px 80px -24px rgba(196, 90, 62, 0.28),
    0 0 0 1px rgba(196, 90, 62, 0.18);
}
.case-row:hover::before {
  opacity: 1;
}
.case-left {
  position: relative;
}
.case-number {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  opacity: 0.9;
}
.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.case-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.case-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.case-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 24px;
}
.case-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}
.case-body {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text-sub);
}
.case-body p + p {
  margin-top: 20px;
}
.case-quote {
  margin-top: 44px;
  padding: 36px 40px 36px 44px;
  background: transparent;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.85;
  position: relative;
  letter-spacing: -0.005em;
}
.case-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 56%;
  background: var(--accent);
  transform: translateY(-50%);
}
.case-quote::after {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 5rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .case-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 36px;
  }
  .case-number {
    font-size: 3.5rem;
    margin-bottom: 16px;
  }
}
@media (max-width: 720px) {
  .case-row {
    padding: 36px 28px;
  }
  .case-title {
    font-size: 1.4rem;
  }
}

/* ========= 08. AUDIENCE ========= */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}
.audience-block h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-strong);
}
.audience-block.fit h3::before {
  content: '✓ ';
  color: var(--accent);
  font-weight: 500;
}
.audience-block.unfit h3 {
  color: var(--text-mute);
}
.audience-block.unfit h3::before {
  content: '✕ ';
  color: var(--text-mute);
}
.audience-list {
  list-style: none;
}
.audience-list li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.audience-list li:last-child {
  border-bottom: none;
}
.audience-block.unfit .audience-list li {
  color: var(--text-mute);
}

/* ========= 09. ABOUT ME (Dark passage) ========= */
.about-section {
  background: var(--bg-dark);
  color: var(--bg);
  max-width: none;
  padding: 160px 48px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(196, 90, 62, 0.1), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(232, 183, 165, 0.05), transparent 50%);
  pointer-events: none;
}
.about-section::after {
  content: '08';
  position: absolute;
  top: 80px;
  right: 6vw;
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 300;
  color: rgba(232, 183, 165, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.about-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-section .section-title {
  color: var(--bg);
}
.about {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  margin-top: 80px;
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 120px;
}
.about-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
.about-photo-frame img {
  width: 100%;
  filter: grayscale(40%) contrast(1.05);
  transition: transform 1.2s var(--ease-out-expo);
}
.about-photo-caption {
  margin-top: 28px;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bg);
}
.about-photo-caption .role {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-top: 8px;
}
.about-body h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bg);
  margin-top: 56px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.12);
}
.about-body h3:first-child {
  margin-top: 0;
}
.about-body p {
  font-size: 1.05rem;
  line-height: 2.05;
  color: rgba(250, 247, 242, 0.78);
  margin-bottom: 18px;
}
.about-body p strong {
  color: var(--accent-light);
  font-weight: 600;
}
.biz-list {
  list-style: none;
  margin-top: 16px;
}
.biz-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  font-size: 0.95rem;
  color: var(--bg);
}
.biz-list li:first-child {
  border-top: none;
}
.biz-list .biz-name {
  flex: 0 0 180px;
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  color: var(--accent-light);
}
.biz-list .biz-role {
  flex: 1;
  color: rgba(250, 247, 242, 0.7);
}

/* ========= 10. PRICING ========= */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 80px;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 56px 48px;
  transition: border-color 0.4s, transform 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(196, 90, 62, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.price-card:hover::before {
  opacity: 1;
}
.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow:
    0 40px 80px -30px rgba(196, 90, 62, 0.25),
    0 0 0 1px rgba(196, 90, 62, 0.15);
}
.price-card.featured {
  background: var(--bg-alt);
  border-color: var(--accent);
}
.price-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.price-name {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}
.price-amount {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.price-amount .unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-sub);
  margin-left: 8px;
}
.price-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-sub);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.price-features {
  list-style: none;
}
.price-features li {
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  display: flex;
  gap: 12px;
}
.price-features li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* ========= 11. FAQ (Cream passage) ========= */
.faq-section {
  background: var(--bg-alt);
  max-width: none;
  padding: 160px 48px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '10';
  position: absolute;
  top: 80px;
  right: 6vw;
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 300;
  color: rgba(196, 90, 62, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.faq-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faq {
  margin-top: 80px;
  max-width: 880px;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 0;
  transition: background 0.3s ease;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 32px 0;
  width: 100%;
  text-align: left;
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--text-sub);
  font-weight: 300;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-item.is-open .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--accent);
}
.faq-q-mark {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.faq-a {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text-sub);
  padding-left: 32px;
  padding-right: 48px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding-bottom 0.5s ease;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
  padding-bottom: 32px;
}

/* ========= 12. CTA ========= */
.cta-section {
  background: var(--bg-dark);
  color: var(--bg);
  max-width: none;
  padding: 180px 48px;
  margin: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(196, 90, 62, 0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(232, 183, 165, 0.08), transparent 50%);
  pointer-events: none;
}
.cta-section > * {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--bg);
  max-width: 18ch;
  margin: 0 auto 40px;
}
.cta-section h2 .accent {
  color: var(--accent-light);
}
.cta-section p {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(250, 247, 242, 0.65);
  max-width: 540px;
  margin: 0 auto 64px;
}
.cta-section .btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 22px 44px;
  font-size: 1rem;
}
.cta-section .btn-primary::before {
  background: var(--accent-dark);
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .story, .stat-display, .about, .case-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .story-label, .about-photo {
    position: static;
  }
  .answer-grid, .pricing, .process-grid, .audience {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .big-stat {
    font-size: 8rem;
  }
}
@media (max-width: 720px) {
  /* ===== Disable HTML <br> in headings on mobile to allow natural wrapping ===== */
  .hero h1 br,
  .section-title br,
  .case-title br,
  .cta-section h2 br,
  .stat-bars-title br,
  .hero-sub br,
  .cta-section p br {
    display: none;
  }
  /* Adjust heading sizes and constraints for mobile */
  .section-title {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    max-width: 100%;
    line-height: 1.4;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    max-width: 100%;
    line-height: 1.4;
  }
  .case-title {
    font-size: 1.35rem;
    line-height: 1.5;
  }
  .cta-section h2 {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    max-width: 100%;
    line-height: 1.45;
  }

  .why-fail, .process-section, .cta-section { padding: 100px 24px; }
  section { padding: 120px 24px; }
  .why-now-section, .answer-section, .cases-section, .about-section, .faq-section {
    padding: 120px 24px;
  }
  .story-content { font-size: 1.15rem; }
  .story-content .emphasis { font-size: 1.3rem; padding: 24px 24px 24px 32px; margin: 56px 0; }
  .big-stat { font-size: 6rem; }
  .answer-card, .price-card { padding: 36px 28px; }
  .roadmap-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .roadmap-dot { width: 44px; height: 44px; font-size: 0.75rem; }
  .roadmap::before, .roadmap::after { left: 22px; }
  /* ===== Stat bars: mobile vertical layout ===== */
  .stat-bars {
    padding: 32px 24px;
    margin: 48px 0 16px;
  }
  .stat-bars-title {
    font-size: 1.15rem;
    margin-bottom: 32px;
  }
  .bar-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 16px;
    padding: 18px 0;
  }
  .bar-row.highlight {
    margin: 0 -14px;
    padding: 22px 14px 22px 12px;
  }
  .bar-label {
    flex: 0 0 auto;
    order: 1;
    font-size: 0.95rem;
  }
  .bar-value {
    order: 2;
    margin-left: auto;
    font-size: 1.3rem;
  }
  .bar-row.highlight .bar-label {
    font-size: 1.05rem;
  }
  .bar-row.highlight .bar-value {
    font-size: 1.85rem;
  }
  .bar-track {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    height: 8px;
    margin-top: 4px;
  }
  .bar-row.highlight .bar-track {
    height: 12px;
  }
  .bar-fill::after {
    width: 10px;
    height: 10px;
  }
  .bar-row.highlight .bar-fill::after {
    width: 14px;
    height: 14px;
  }
}
