/* ================================================================
   TPT Report LP — tpt_report.css
   /wp-content/themes/cocoon-child-master/tpt_report/tpt_report.css
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Noto+Serif+JP:wght@300;400;500;700&family=Cinzel:wght@400;600;700&display=swap');

/* ── Variables ── */
:root {
  --tpt-bg:         #07060D;
  --tpt-bg2:        #0E0C1A;
  --tpt-bg3:        #13111F;
  --tpt-gold:       #C9A84C;
  --tpt-gold2:      #E8C56A;
  --tpt-amber:      #E07B55;
  --tpt-cream:      #F5EFE0;
  --tpt-cream-dim:  #C8C0B0;
  --tpt-muted:      #6B6580;
  --tpt-card-bg:    rgba(255,255,255,0.03);
  --tpt-card-border:rgba(201,168,76,0.15);
  --tpt-radius:     12px;
}

/* ── Base Reset ── */
body.tpt-report-page {
  background: var(--tpt-bg) !important;
  color: var(--tpt-cream);
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

body.tpt-report-page *,
body.tpt-report-page *::before,
body.tpt-report-page *::after {
  box-sizing: border-box;
}

/* Hide any Cocoon structural elements */
body.tpt-report-page #header,
body.tpt-report-page #navi,
body.tpt-report-page .sidebar,
body.tpt-report-page #footer:not(.tpt-custom-footer),
body.tpt-report-page .cocoon-wrapper:not(.tpt-wrap) {
  display: none !important;
}

/* WordPress admin bar adjust */
body.admin-bar.tpt-report-page .tpt-nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar.tpt-report-page .tpt-nav {
    top: 46px;
  }
}

/* Noise overlay */
body.tpt-report-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── Typography Utilities ── */
.tpt-display    { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.1; }
.tpt-serif-jp   { font-family: 'Noto Serif JP', serif; }
.tpt-cinzel     { font-family: 'Cinzel', serif; letter-spacing: 0.15em; }
.tpt-round      { font-family: 'M PLUS Rounded 1c', sans-serif; }

.tpt-gold       { color: var(--tpt-gold); }
.tpt-amber      { color: var(--tpt-amber); }
.tpt-cream      { color: var(--tpt-cream); }
.tpt-muted      { color: var(--tpt-cream-dim); }

.tpt-text-gradient {
  background: linear-gradient(120deg, var(--tpt-gold2), var(--tpt-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.tpt-container      { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.tpt-container-wide { max-width: 1300px; margin: 0 auto; padding: 0 28px; }

.tpt-report-page section { position: relative; }

/* ── NAV ── */
.tpt-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.tpt-nav.tpt-scrolled {
  background: rgba(7,6,13,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--tpt-card-border);
}
.tpt-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tpt-logo {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--tpt-gold);
  text-decoration: none;
}
.tpt-nav-cta {
  background: linear-gradient(135deg, var(--tpt-gold), var(--tpt-amber));
  color: #07060D;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
}
.tpt-nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ── */
#tpt-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 100px;
  overflow: hidden;
  position: relative;
}

/* Real background image */
.tpt-hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://www.turning-point.today/wp-content/uploads/2026/04/TPT_report_LP_hero_image.webp');
  background-size: cover;
  background-position: center center;
  z-index: 0;
  transform: scale(1.03);
  transition: transform 6s ease-out;
}
.tpt-hero-bg-img.loaded { transform: scale(1); }

/* Dark gradient overlay */
.tpt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,6,13,0.80) 0%,
    rgba(7,6,13,0.55) 40%,
    rgba(14,12,26,0.72) 100%
  );
  z-index: 1;
}
/* extra bottom fade for scroll indicator visibility */
.tpt-hero-overlay::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(7,6,13,0.85));
}

/* Decorative orbs */
.tpt-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.tpt-orb1 { width:500px; height:500px; background:rgba(201,168,76,0.07); top:-100px; right:-150px; }
.tpt-orb2 { width:400px; height:400px; background:rgba(224,123,85,0.05); bottom:0;   left:-100px; }

/* Hero content */
.tpt-hero-content { position: relative; z-index: 2; }

.tpt-hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--tpt-gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tpt-hero-eyebrow::before,
.tpt-hero-eyebrow::after {
  content: '';
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tpt-gold), transparent);
  flex: 1;
  max-width: 60px;
}

.tpt-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}
.tpt-hero-title .tpt-line2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 52px);
  font-style: italic;
  font-weight: 400;
  color: var(--tpt-cream-dim);
  margin-top: 8px;
  display: block;
}

.tpt-hero-subtitle {
  font-size: 15px;
  color: var(--tpt-cream-dim);
  max-width: 540px;
  margin: 28px 0 48px;
  line-height: 1.95;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 300;
}

.tpt-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.tpt-hero-trust {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: var(--tpt-muted);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.15em;
}
.tpt-trust-divider { width:1px; height:20px; background:var(--tpt-muted); opacity:0.4; }

/* ── SCROLL INDICATOR ── */
.tpt-scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 10;
  color: var(--tpt-gold);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  transition: opacity 0.3s;
  background: none;
  border: none;
  outline: none;
  animation: tptScrollFloat 2.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.tpt-scroll-indicator:hover { opacity: 0.6; }
.tpt-scroll-indicator:focus-visible {
  outline: 1px solid var(--tpt-gold);
  border-radius: 4px;
}

.tpt-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--tpt-gold), transparent);
  position: relative;
  overflow: hidden;
}
.tpt-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--tpt-gold2), transparent);
  animation: tptScrollLine 2.8s ease-in-out infinite;
}

.tpt-scroll-chevron {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}
.tpt-scroll-chevron span {
  display: block;
  width: 10px;
  height: 1px;
  background: var(--tpt-gold);
  border-radius: 1px;
  transition: background 0.2s;
}
.tpt-scroll-chevron span:first-child { transform: rotate(35deg) translateX(3px); }
.tpt-scroll-chevron span:last-child  { transform: rotate(-35deg) translateX(-3px); }

@keyframes tptScrollFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 0.7; }
}
@keyframes tptScrollLine {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ── BUTTONS ── */
.tpt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--tpt-gold), var(--tpt-amber));
  color: #07060D;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 40px rgba(201,168,76,0.28);
  cursor: pointer;
  border: none;
}
.tpt-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(201,168,76,0.38);
  color: #07060D;
  text-decoration: none;
}
.tpt-btn-primary .tpt-arrow { font-size: 18px; }

.tpt-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tpt-cream-dim);
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(197,192,176,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-btn-secondary:hover { color: var(--tpt-gold); border-color: var(--tpt-gold); text-decoration: none; }

/* ── STATS ── */
#tpt-stats {
  background: var(--tpt-bg3);
  border-top: 1px solid var(--tpt-card-border);
  border-bottom: 1px solid var(--tpt-card-border);
  padding: 52px 0;
}
.tpt-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.tpt-stat-item {
  text-align: center;
  padding: 24px 24px;
  border-right: 1px solid var(--tpt-card-border);
}
.tpt-stat-item:last-child { border-right: none; }
.tpt-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--tpt-gold2), var(--tpt-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tpt-stat-unit { font-size: 20px; font-weight: 700; }
.tpt-stat-label {
  font-size: 12px;
  color: var(--tpt-cream-dim);
  margin-top: 8px;
  letter-spacing: 0.06em;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  line-height: 1.6;
}

/* ── SECTION HEADERS ── */
.tpt-section-header { text-align: center; margin-bottom: 64px; }
.tpt-section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--tpt-gold);
  margin-bottom: 20px;
  display: block;
}
.tpt-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.8vw, 42px);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 20px;
  color: var(--tpt-cream);
}
.tpt-section-subtitle {
  font-size: 15px;
  color: var(--tpt-cream-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--tpt-gold), var(--tpt-amber));
  margin: 24px auto;
  border-radius: 1px;
}

/* ── PROBLEM ── */
#tpt-problem {
  padding: 108px 0;
  background: linear-gradient(180deg, var(--tpt-bg) 0%, var(--tpt-bg2) 100%);
}
.tpt-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.tpt-problem-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 24px;
  color: var(--tpt-cream);
}
.tpt-problem-text p {
  color: var(--tpt-cream-dim);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.9;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-problem-list { list-style: none; margin-top: 28px; }
.tpt-problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  color: var(--tpt-cream-dim);
  font-family: 'M PLUS Rounded 1c', sans-serif;
  line-height: 1.7;
}
.tpt-problem-list li::before {
  content: '×';
  color: var(--tpt-amber);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tpt-problem-card {
  background: var(--tpt-card-bg);
  border: 1px solid var(--tpt-card-border);
  border-radius: var(--tpt-radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.tpt-problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tpt-gold), var(--tpt-amber));
}
.tpt-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  color: var(--tpt-gold);
  opacity: 0.12;
  line-height: 0.7;
  margin-bottom: 16px;
}
.tpt-quote-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--tpt-cream);
  margin-bottom: 20px;
}
.tpt-quote-source {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  color: var(--tpt-gold);
  letter-spacing: 0.1em;
}
.tpt-problem-note {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--tpt-card-border);
  font-size: 13px;
  color: var(--tpt-cream-dim);
  line-height: 1.85;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-problem-note strong { color: var(--tpt-cream); font-weight: 500; }

/* ── SOLUTION ── */
#tpt-solution { padding: 108px 0; }
.tpt-axes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tpt-axis-card {
  background: var(--tpt-card-bg);
  border: 1px solid var(--tpt-card-border);
  border-radius: var(--tpt-radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.tpt-axis-card:hover {
  transform: translateY(-6px);
  border-color: var(--tpt-gold);
  box-shadow: 0 20px 60px rgba(201,168,76,0.12);
}
.tpt-axis-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 700;
  color: var(--tpt-gold); opacity: 0.15;
  position: absolute; top: -10px; right: 12px; line-height: 1;
}
.tpt-axis-icon { font-size: 36px; margin-bottom: 16px; }
.tpt-axis-label {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--tpt-gold); margin-bottom: 8px;
}
.tpt-axis-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--tpt-cream);
}
.tpt-axis-desc {
  font-size: 13px; color: var(--tpt-cream-dim); line-height: 1.8;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-axis-questions {
  margin-top: 16px; font-size: 11px; color: var(--tpt-muted);
  font-family: 'Cinzel', serif; letter-spacing: 0.1em;
}

/* ── 5 TYPES ── */
#tpt-types {
  padding: 108px 0;
  background: var(--tpt-bg2);
  overflow: hidden;
}
.tpt-types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.tpt-type-card {
  background: var(--tpt-card-bg);
  border: 1px solid var(--tpt-card-border);
  border-radius: var(--tpt-radius);
  padding: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.tpt-type-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tpt-gold), var(--tpt-amber));
  transform: scaleX(0);
  transition: transform 0.35s;
}
.tpt-type-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.tpt-type-card:hover::after { transform: scaleX(1); }

/* Type image */
.tpt-type-img-wrap {
  width: 100%; height: 140px;
  overflow: hidden;
  position: relative;
}
.tpt-type-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.tpt-type-card:hover .tpt-type-img-wrap img { transform: scale(1.07); }
.tpt-type-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(7,6,13,0.7) 100%);
}

/* Type card body */
.tpt-type-card-body { padding: 20px 16px 24px; }
.tpt-type-num {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--tpt-gold); opacity: 0.7; margin-bottom: 10px;
}
.tpt-type-icon { font-size: 28px; margin-bottom: 12px; }
.tpt-type-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px; font-weight: 700;
  line-height: 1.6; margin-bottom: 10px; color: var(--tpt-cream);
}
.tpt-type-tagline {
  font-size: 10px; color: var(--tpt-gold);
  font-style: italic; font-family: 'Noto Serif JP', serif;
  margin-bottom: 12px; line-height: 1.6;
}
.tpt-type-weapon {
  display: inline-block;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px; padding: 4px 12px;
  font-size: 10px; color: var(--tpt-gold); letter-spacing: 0.08em;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-types-note {
  text-align: center; margin-top: 40px;
  font-size: 13px; color: var(--tpt-muted); font-style: italic;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* ── INSIDE REPORT ── */
#tpt-inside { padding: 108px 0; }
.tpt-chapters-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 48px;
}
.tpt-chapter-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px;
  background: var(--tpt-card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--tpt-radius);
  transition: border-color 0.3s, transform 0.3s;
}
.tpt-chapter-item:hover { border-color: var(--tpt-card-border); transform: translateX(4px); }
.tpt-chapter-num {
  font-family: 'Cinzel', serif; font-size: 11px;
  color: var(--tpt-gold); letter-spacing: 0.2em;
  flex-shrink: 0; width: 44px; padding-top: 2px;
}
.tpt-chapter-content h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--tpt-cream);
}
.tpt-chapter-content p {
  font-size: 12px; color: var(--tpt-cream-dim); line-height: 1.75;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-value-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(224,123,85,0.06));
  border: 1px solid var(--tpt-card-border);
  border-radius: var(--tpt-radius);
  padding: 40px;
  display: flex; align-items: center; gap: 40px;
}
.tpt-value-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 700; line-height: 1;
  color: var(--tpt-gold); flex-shrink: 0;
}
.tpt-value-text h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 21px; font-weight: 700; margin-bottom: 12px; color: var(--tpt-cream);
}
.tpt-value-text p {
  font-size: 14px; color: var(--tpt-cream-dim); line-height: 1.85;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* ── WHY NOW ── */
#tpt-why-now { padding: 108px 0; background: var(--tpt-bg3); overflow: hidden; }
.tpt-why-now-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.tpt-before-after {
  background: var(--tpt-card-bg); border: 1px solid var(--tpt-card-border);
  border-radius: var(--tpt-radius); overflow: hidden;
}
.tpt-ba-header { display: grid; grid-template-columns: 1fr 1fr; }
.tpt-ba-col { padding: 20px 24px; text-align: center; }
.tpt-ba-col.before { background: rgba(255,255,255,0.02); border-right: 1px solid var(--tpt-card-border); }
.tpt-ba-col.after  { background: rgba(201,168,76,0.06); }
.tpt-ba-title { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.3em; margin-bottom: 4px; }
.tpt-ba-title.before { color: var(--tpt-muted); }
.tpt-ba-title.after  { color: var(--tpt-gold); }
.tpt-ba-year { font-size: 18px; font-weight: 700; }
.tpt-ba-year.before { color: var(--tpt-cream-dim); }
.tpt-ba-year.after  { color: var(--tpt-gold2); font-family: 'M PLUS Rounded 1c', sans-serif; }
.tpt-ba-items { padding: 8px 0; }
.tpt-ba-item { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.04); }
.tpt-ba-item:last-child { border-bottom: none; }
.tpt-ba-cell { padding: 13px 20px; font-size: 13px; font-family: 'M PLUS Rounded 1c', sans-serif; line-height: 1.7; }
.tpt-ba-cell.before { color: var(--tpt-muted); border-right: 1px solid rgba(255,255,255,0.04); }
.tpt-ba-cell.after  { color: var(--tpt-cream); }

.tpt-market-points { display: flex; flex-direction: column; gap: 24px; }
.tpt-market-point  { display: flex; gap: 20px; align-items: flex-start; }
.tpt-market-point-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.tpt-market-point-text h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--tpt-cream);
}
.tpt-market-point-text p {
  font-size: 13px; color: var(--tpt-cream-dim); line-height: 1.8;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* ── STORIES ── */
#tpt-stories { padding: 108px 0; }
.tpt-stories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.tpt-story-card {
  background: var(--tpt-card-bg); border: 1px solid var(--tpt-card-border);
  border-radius: var(--tpt-radius); padding: 36px;
  position: relative; overflow: hidden;
}
.tpt-story-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--tpt-gold), var(--tpt-amber));
}
.tpt-story-type {
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 0.3em; color: var(--tpt-gold); margin-bottom: 12px;
}
.tpt-story-profile { font-size: 14px; font-weight: 500; color: var(--tpt-cream); margin-bottom: 16px; font-family: 'M PLUS Rounded 1c', sans-serif; }
.tpt-story-body  { font-size: 13px; color: var(--tpt-cream-dim); line-height: 1.85; margin-bottom: 24px; font-family: 'M PLUS Rounded 1c', sans-serif; }
.tpt-story-result { display: flex; gap: 12px; flex-wrap: wrap; }
.tpt-result-badge {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(224,123,85,0.1));
  border: 1px solid rgba(201,168,76,0.25); border-radius: 20px;
  padding: 6px 16px; font-size: 13px; color: var(--tpt-gold2); font-weight: 500;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-story-note {
  margin-top: 32px; padding: 24px 28px;
  background: var(--tpt-card-bg); border: 1px solid var(--tpt-card-border);
  border-radius: var(--tpt-radius); text-align: center;
  font-size: 13px; color: var(--tpt-cream-dim); line-height: 1.9;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-story-note strong { color: var(--tpt-cream); font-weight: 500; }

/* ── PRINCIPLES ── */
#tpt-principles { padding: 108px 0; background: var(--tpt-bg2); }
.tpt-principles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
.tpt-principle-card {
  background: var(--tpt-card-bg); border: 1px solid var(--tpt-card-border);
  border-radius: var(--tpt-radius); padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tpt-principle-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.tpt-principle-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 700;
  color: var(--tpt-gold); opacity: 0.2;
  line-height: 0.9; margin-bottom: 16px;
}
.tpt-principle-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 12px; color: var(--tpt-cream);
}
.tpt-principle-subtitle {
  font-size: 11px; color: var(--tpt-gold);
  margin-bottom: 16px; font-family: 'Cinzel', serif;
  letter-spacing: 0.15em;
}
.tpt-principle-body {
  font-size: 13px; color: var(--tpt-cream-dim); line-height: 1.9;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* ── TIMELINE ── */
#tpt-timeline { padding: 108px 0; }
.tpt-timeline-table { width: 100%; border-collapse: collapse; }
.tpt-timeline-table thead tr { border-bottom: 1px solid var(--tpt-card-border); }
.tpt-timeline-table th {
  padding: 14px 20px;
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 0.2em; color: var(--tpt-gold);
  text-align: left; font-weight: 400;
}
.tpt-timeline-table td {
  padding: 16px 20px; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle; color: var(--tpt-cream);
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* ── T1〜T5 タイムライン表：行背景色 ── */
/* 奇数行（T1, T3, T5）*/
.tpt-timeline-table tbody tr:nth-child(odd) {
  background: rgba(201, 168, 76, 0.05);
}
/* 偶数行（T2, T4）*/
.tpt-timeline-table tbody tr:nth-child(even) {
  background: rgba(201, 168, 76, 0.10);
}
/* ホバー時（既存）*/
.tpt-timeline-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.tpt-type-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px; padding: 3px 10px;
  font-size: 11px; color: var(--tpt-gold);
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-time-bar-wrap { display: flex; align-items: center; gap: 10px; }
.tpt-time-bar {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--tpt-gold), var(--tpt-amber));
}
.tpt-time-text { font-size: 12px; color: var(--tpt-cream-dim); white-space: nowrap; }
.tpt-timeline-note {
  margin-top: 28px; padding: 24px 28px;
  background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--tpt-radius);
  font-size: 14px; color: var(--tpt-cream); line-height: 1.9;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-timeline-note strong { color: var(--tpt-gold); font-weight: 500; }

/* ── FINAL CTA ── */
#tpt-cta {
  padding: 120px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Real background image */
.tpt-cta-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://www.turning-point.today/wp-content/uploads/2026/04/TPT_report_LP_cta_image.webp');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.tpt-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,6,13,0.88) 0%,
    rgba(7,6,13,0.78) 50%,
    rgba(7,6,13,0.92) 100%
  );
  z-index: 1;
}
.tpt-cta-orb {
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(201,168,76,0.05); filter: blur(100px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 1;
}
.tpt-cta-content { position: relative; z-index: 2; }

.tpt-cta-eyebrow {
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 0.4em; color: var(--tpt-gold); margin-bottom: 24px;
  display: block;
}
.tpt-cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 700; line-height: 1.45; margin-bottom: 20px; color: var(--tpt-cream);
}
.tpt-cta-subtitle {
  font-size: 16px; color: var(--tpt-cream-dim);
  max-width: 520px; margin: 0 auto 48px;
  line-height: 1.95;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-cta-checklist {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 500px; margin: 0 auto 48px; text-align: left;
}
.tpt-cta-check {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--tpt-cream-dim);
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-cta-check::before { content: '✓'; color: var(--tpt-gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.tpt-cta-btn-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.tpt-cta-note {
  font-size: 12px; color: var(--tpt-muted); letter-spacing: 0.05em;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.tpt-cta-closing {
  margin-top: 60px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.tpt-closing-card {
  background: var(--tpt-card-bg); border: 1px solid var(--tpt-card-border);
  border-radius: var(--tpt-radius); padding: 32px 36px;
  position: relative; overflow: hidden; text-align: left;
}
.tpt-closing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--tpt-gold), var(--tpt-amber));
}
.tpt-closing-quote {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 500; line-height: 1.8; color: var(--tpt-cream);
  margin-bottom: 12px;
}
.tpt-closing-body {
  font-size: 13px; color: var(--tpt-cream-dim); line-height: 1.85;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* ── SCROLL REVEAL ── */
.tpt-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.tpt-reveal.tpt-in-view { opacity: 1; transform: none; }
.tpt-delay-1 { transition-delay: 0.10s; }
.tpt-delay-2 { transition-delay: 0.20s; }
.tpt-delay-3 { transition-delay: 0.30s; }
.tpt-delay-4 { transition-delay: 0.40s; }
.tpt-delay-5 { transition-delay: 0.50s; }

/* ── FLOATING CTA BADGE ── */
.tpt-floating-badge {
  position: fixed; bottom: 32px; right: 32px; z-index: 400;
  background: linear-gradient(135deg, var(--tpt-gold), var(--tpt-amber));
  color: #07060D;
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(201,168,76,0.42);
  animation: tptPulse 3s ease-in-out infinite;
  text-decoration: none; text-align: center; line-height: 1.35;
}
.tpt-floating-badge:hover { opacity: 0.88; text-decoration: none; color: #07060D; }
.tpt-fbig { font-size: 17px; display: block; }

@keyframes tptPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(201,168,76,0.42); }
  50%       { box-shadow: 0 8px 52px rgba(201,168,76,0.68); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 960px) {
  .tpt-problem-grid   { grid-template-columns: 1fr; gap: 40px; }
  .tpt-axes-grid      { grid-template-columns: 1fr; gap: 16px; }
  .tpt-types-grid     { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .tpt-chapters-list  { grid-template-columns: 1fr; }
  .tpt-why-now-grid   { grid-template-columns: 1fr; gap: 48px; }
  .tpt-stories-grid   { grid-template-columns: 1fr; }
  .tpt-principles-grid{ grid-template-columns: 1fr; gap: 16px; }
  .tpt-value-banner   { flex-direction: column; text-align: center; gap: 20px; }
  .tpt-stats-grid     { grid-template-columns: repeat(3, 1fr); }
  .tpt-stat-item:nth-child(3) { border-right: none; }
}

/* Mobile */
@media (max-width: 640px) {
  /* Typography scale down */
  body.tpt-report-page { font-size: 14px; }

  .tpt-container,
  .tpt-container-wide { padding: 0 18px; }

  /* Hero: portrait crop */
  .tpt-hero-bg-img {
    background-position: center 20%;
    background-size: cover;
  }
  #tpt-hero { padding: 100px 0 88px; }
  .tpt-hero-title { font-size: clamp(26px, 7.5vw, 40px); }
  .tpt-hero-title .tpt-line2 { font-size: clamp(20px, 5.5vw, 30px); }
  .tpt-hero-subtitle { font-size: 13.5px; margin-bottom: 36px; }
  .tpt-hero-trust { flex-wrap: wrap; gap: 12px; font-size: 10px; }

  /* Hero CTAs: vertical stack */
  .tpt-hero-ctas { flex-direction: column; align-items: flex-start; }
  .tpt-btn-primary  { font-size: 13.5px; padding: 14px 28px; width: 100%; justify-content: center; }
  .tpt-btn-secondary{ font-size: 13px; }

  /* Stats: 2 cols */
  .tpt-stats-grid { grid-template-columns: 1fr 1fr; }
  .tpt-stat-item { border-right: none; border-bottom: 1px solid var(--tpt-card-border); }
  .tpt-stat-item:nth-child(odd)  { border-right: 1px solid var(--tpt-card-border); }
  .tpt-stat-item:last-child      { border-bottom: none; }
  .tpt-stat-num { font-size: 44px; }

  /* Sections padding */
  #tpt-problem, #tpt-solution, #tpt-types, #tpt-inside,
  #tpt-why-now, #tpt-stories, #tpt-principles, #tpt-timeline { padding: 72px 0; }
  #tpt-cta { padding: 80px 0; }

  .tpt-section-header { margin-bottom: 44px; }
  .tpt-section-title  { font-size: clamp(20px, 5vw, 28px); }

  /* Types: 2 cols */
  .tpt-types-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tpt-type-img-wrap { height: 110px; }
  .tpt-type-card-body { padding: 14px 12px 18px; }
  .tpt-type-name { font-size: 11px; }

  /* Problem */
  .tpt-problem-card { padding: 28px 22px; }
  .tpt-quote-text   { font-size: 15px; }

  /* Chapter list */
  .tpt-chapter-item { flex-direction: column; gap: 8px; }
  .tpt-chapter-num  { width: auto; }

  /* Value banner */
  .tpt-value-big { font-size: 60px; }
  .tpt-value-text h3 { font-size: 18px; }

  /* Stories */
  .tpt-story-card { padding: 28px 22px; }

  /* Principles */
  .tpt-principle-card { padding: 28px 22px; }
  .tpt-principle-num  { font-size: 52px; }

  /* Timeline */
  .tpt-timeline-table th,
  .tpt-timeline-table td { padding: 12px 12px; font-size: 12px; }
  .tpt-time-bar { min-width: 30px; }

  /* CTA */
  .tpt-cta-checklist { max-width: 100%; }
  .tpt-cta-check { font-size: 13px; }
  .tpt-cta-btn-wrap > .tpt-btn-primary { font-size: 14px; padding: 16px 28px; width: 100%; justify-content: center; }
  .tpt-cta-closing { max-width: 100%; }

  /* Floating badge */
  .tpt-floating-badge { width: 68px; height: 68px; font-size: 9px; bottom: 20px; right: 18px; }
}

/* Very small */
@media (max-width: 380px) {
  .tpt-types-grid { grid-template-columns: 1fr; }
}
