/* ============================================
   DIGITAL INCOME INFINITY — Landing Page CSS
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.9;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* --- TEXT EMPHASIS UTILITIES --- */
/* 赤太字（痛み・損失・緊急） */
.tx-red {
  color: #e53935;
  font-weight: 700;
}

/* 赤太字+大きめ（最重要フレーズ） */
.tx-red-lg {
  color: #e53935;
  font-weight: 900;
  font-size: 1.15em;
}

/* 金色太字（利益・メリット） */
.tx-gold {
  color: #c8a415;
  font-weight: 700;
}

/* ネイビー太字（ブランド・信頼） */
.tx-navy {
  color: #1a237e;
  font-weight: 700;
}

/* 黄色マーカー風背景 */
.marker {
  background: linear-gradient(transparent 55%, #fff176 55%);
  font-weight: 700;
  padding: 0 2px;
}

/* 赤マーカー風背景 */
.marker-red {
  background: linear-gradient(transparent 55%, #ffcdd2 55%);
  font-weight: 700;
  padding: 0 2px;
}

/* 大文字強調（セクション内ハイライト） */
.em-large {
  font-size: 1.2em;
  font-weight: 900;
  line-height: 1.7;
  display: block;
  text-align: center;
  margin: 20px 0;
}

/* 下線強調 */
.tx-underline {
  text-decoration: underline;
  text-decoration-color: #ffd700;
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
  font-weight: 700;
}

/* 囲み強調ボックス */
.emphasis-box {
  background: #fffde7;
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.9;
}

.emphasis-box-red {
  background: #fff5f5;
  border: 2px solid #e53935;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.9;
}

/* --- CONTAINER --- */
.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   DEADLINE TIMER
   ============================================ */
.deadline-timer-bar {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

html[data-deadline-state="ended"] .deadline-timer-text {
  display: none !important;
}

html[data-deadline-state="ended"] .deadline-timer-grace[data-monitor-ended] {
  display: flex !important;
}

.deadline-timer-frame {
  max-width: 1120px;
  min-height: 82px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.deadline-timer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.deadline-timer-label {
  margin: 0;
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #f7ddb0;
  text-align: center;
  line-height: 1.2;
}

.deadline-timer-label-strong {
  color: #ffd770;
  font-weight: 800;
}

.deadline-timer-segments {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  font-feature-settings: 'tnum' 1;
}

.deadline-timer-segments .seg {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 5px 10px 4px;
  min-width: 58px;
  background: linear-gradient(180deg, #0c1226 0%, #050811 100%);
  border: 1px solid rgba(201, 164, 52, 0.42);
  border-radius: 8px;
  box-shadow: inset 0 0 14px rgba(201, 164, 52, 0.16), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.deadline-timer-segments .seg-num {
  font-family: 'Bebas Neue', 'Oswald', 'Arial Narrow', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffd770;
  text-shadow: 0 0 10px rgba(255, 215, 112, 0.55);
  font-variant-numeric: tabular-nums;
}

.deadline-timer-segments .seg-cap {
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 245, 214, 0.62);
}

.deadline-timer-segments .seg-sep {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1;
  color: rgba(201, 164, 52, 0.55);
  padding-bottom: 18px;
}

.deadline-timer-segments .seg-centi {
  background: linear-gradient(180deg, #1a0e08 0%, #0a0604 100%);
  border-color: rgba(255, 138, 58, 0.45);
  box-shadow: inset 0 0 14px rgba(255, 138, 58, 0.18), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.deadline-timer-segments .seg-centi .seg-num {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: #ff9a4a;
  text-shadow: 0 0 8px rgba(255, 138, 58, 0.5);
}

.deadline-timer-text[hidden] {
  display: none !important;
}

.deadline-timer-grace {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 4px 0;
  text-align: center;
}

.deadline-timer-grace[hidden] {
  display: none !important;
}

.deadline-timer-grace-headline {
  margin: 0;
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  line-height: 1.1;
}

.deadline-timer-grace-flag {
  display: inline-block;
  padding: 6px 18px 5px;
  background: linear-gradient(135deg, #c01818 0%, #7a1010 100%);
  border: 1px solid rgba(255, 215, 112, 0.6);
  border-radius: 999px;
  color: #fffbe9;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 18px rgba(192, 24, 24, 0.55), inset 0 0 12px rgba(255, 215, 112, 0.2);
  animation: deadline-grace-pulse 1.6s ease-in-out infinite;
}

.deadline-timer-grace-message {
  margin: 0;
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: clamp(0.95rem, 1.55vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f7ddb0;
  line-height: 1.3;
}

.deadline-timer-grace-message-em {
  color: #ffd770;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 215, 112, 0.55);
}

@keyframes deadline-grace-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 18px rgba(192, 24, 24, 0.55), inset 0 0 12px rgba(255, 215, 112, 0.2); }
  50% { transform: scale(1.03); box-shadow: 0 0 24px rgba(192, 24, 24, 0.78), inset 0 0 14px rgba(255, 215, 112, 0.3); }
}

@media (prefers-reduced-motion: reduce) {
  .deadline-timer-grace-flag {
    animation: none;
  }
}

.story-tool-figure {
  margin: clamp(28px, 4vw, 48px) auto 0;
  max-width: 880px;
}

.story-tool-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.5vw, 28px);
}

.story-tool-grid img {
  width: 100%;
  max-width: 880px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(20, 30, 50, 0.18);
  border: 1px solid rgba(20, 30, 50, 0.08);
  display: block;
  margin: 0 auto;
}

.story-tool-caption {
  margin-top: clamp(14px, 2vw, 20px);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a237e;
  letter-spacing: 0.05em;
}

.time-breakdown {
  margin: clamp(20px, 3vw, 32px) auto;
  max-width: 720px;
  padding: clamp(20px, 3vw, 28px) clamp(18px, 2.5vw, 26px);
  background: linear-gradient(180deg, #fffdf6 0%, #f8f5ec 100%);
  border-radius: 16px;
  border: 1px solid rgba(201, 164, 52, 0.32);
  box-shadow: 0 8px 24px rgba(20, 30, 50, 0.06);
}

.time-breakdown-lead {
  margin: 0 0 14px;
  text-align: center;
  font-size: 1.05rem;
  color: #1a237e;
}

.time-breakdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.time-breakdown-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.time-breakdown-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  min-width: 90px;
  font-family: 'Bebas Neue', 'Oswald', 'Arial Narrow', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  color: #8a6a26; /* WCAG AA 5.04:1 vs #fff (旧 #c9a44d は 2.36:1 で AA 未達) */
  letter-spacing: 0.02em;
  justify-content: flex-end;
}

.time-breakdown-unit {
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8a6a26;
  margin-left: 2px;
}

.time-breakdown-label {
  flex: 1;
  color: #2a3142;
}

.time-breakdown-plus,
.time-breakdown-equal {
  justify-content: center;
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: rgba(201, 164, 52, 0.7);
  padding-left: 4px;
}

.time-breakdown-total {
  margin-top: 4px;
  padding-top: 12px !important;
  border-top: 1px dashed rgba(201, 164, 52, 0.4);
}

.time-breakdown-total .time-breakdown-num {
  color: #d92626;
  font-size: clamp(2.2rem, 3.6vw, 2.8rem);
}

.time-breakdown-total .time-breakdown-unit {
  color: #b91d1d;
}

.time-breakdown-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2a3142;
}

@media (max-width: 560px) {
  .time-breakdown-list li {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  .time-breakdown-num {
    min-width: 72px;
  }
  .time-breakdown-label {
    flex: 1 0 100%;
    font-size: 0.92rem;
  }
}

.member-site-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 44px);
}

.member-site-figure {
  margin: 0;
  position: relative;
  max-height: 720px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(20, 30, 50, 0.18);
  border: 1px solid rgba(20, 30, 50, 0.08);
  background: #f3f5fa;
}

.member-site-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.member-site-figure::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(252, 250, 245, 0.92) 100%);
  pointer-events: none;
}

.member-site-figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #5a6478;
  z-index: 1;
}

.member-site-text {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}

.member-site-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}

.member-site-feature {
  background: #ffffff;
  border-radius: 14px;
  padding: clamp(18px, 2.5vw, 24px);
  box-shadow: 0 8px 24px rgba(20, 30, 50, 0.08);
  border: 1px solid rgba(201, 164, 52, 0.22);
  display: grid;
  grid-template-columns: minmax(110px, 138px) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 18px);
  align-items: center;
}

.member-site-feature-num {
  font-family: 'Bebas Neue', 'Oswald', 'Arial Narrow', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  line-height: 1;
  color: #8a6a26; /* WCAG AA 5.04:1 vs #fff (旧 #c9a44d は 2.36:1 で AA 未達) */
  letter-spacing: 0.02em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.member-site-feature-unit {
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #8a6a26;
}

/* 数字を持たない和文ラベル用バリアント（例: 「見やすい設計」）*/
.member-site-feature-num--ja {
  font-family: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  letter-spacing: 0;
  line-height: 1.25;
}

.member-site-feature-num--ja .member-site-feature-unit {
  font-size: 0.82rem;
  margin-top: 4px;
}

.member-site-feature h3 {
  margin: 0 0 6px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #1a2238;
  letter-spacing: 0.01em;
}

.member-site-feature p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #2a3142;
}

.member-site-note {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #5a6478;
}

@media (max-width: 900px) {
  .member-site-layout {
    grid-template-columns: 1fr;
  }
  .member-site-figure {
    max-height: 540px;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .member-site-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .member-site-feature-num {
    align-items: center;
  }
}

/* --- UTILITY --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 2000;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 10px;
  background: #ffffff;
  color: #091227;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  transition: transform 0.18s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #f1c862;
  outline-offset: 3px;
}

#main-content:focus {
  outline: none;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

/* --- FADE IN ANIMATION --- */
.section.fade-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section.fade-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: #030716;
  padding: 0;
  text-align: center;
}

.site-header > .container {
  max-width: 1536px;
  padding: 0;
  position: relative;
}

.hero-visual {
  display: block;
  width: 100%;
  height: auto;
}

.hero-mobile-stack {
  display: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 216, 116, 0.12), transparent 24%),
    linear-gradient(180deg, #060b19 0%, #091227 58%, #0d1731 100%);
  padding: 18px 0 16px;
}

.hero-mobile-stack__container {
  max-width: 470px;
  padding: 0 16px;
  display: grid;
  gap: 14px;
}

.hero-mobile-stack__main,
.hero-mobile-stack__proof {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.26);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0a0a23 0%, #1a237e 40%, #283593 70%, #0d47a1 100%);
  padding: 60px 0 70px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,215,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.04) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-3%, 3%); }
}

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

.hero-pre {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.hero-title {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-line1 {
  display: block;
}

.hero-line2 {
  display: block;
}

.hero-title em {
  font-style: normal;
  color: #ffd700;
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffd700;
  opacity: 0.5;
}

.hero-catch {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero-catch strong {
  color: #ffd700;
  font-weight: 700;
}

.hero-points {
  margin: 0 auto 28px;
}

.hero-catch--main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero-catch-value {
  color: #ffd700;
  text-shadow: 0 0 14px rgba(255, 215, 0, 0.14);
}

.hero-catch-cross {
  color: rgba(255,255,255,0.78);
  font-size: 0.94em;
}

.hero-catch--sub {
  margin: 0;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}

.hero-badges li {
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  color: #ffd700;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
}

.hero-badges strong,
.hero-badges span {
  display: block;
}

.hero-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 8px;
}

.hero-note strong,
.hero-note span {
  display: block;
}

@media (min-width: 901px) {
  .hero--mobile-fallback {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    display: none;
  }

  .hero-mobile-stack {
    display: block;
  }

  .hero--mobile-fallback {
    display: none;
  }

  .opening-strip {
    margin-top: 0;
    padding-top: 16px;
  }
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
.section-divider {
  height: 6px;
  width: 100%;
}

.divider-wave {
  background: linear-gradient(90deg, #1a237e, #ffd700, #1a237e);
  opacity: 0.3;
}

.divider-gold {
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  opacity: 0.5;
}

/* ============================================
   COMMON SECTION STYLES
   ============================================ */
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #1a237e;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 32px;
  color: #444;
}

.section-text {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 40px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.section-problem {
  background: #fafafa;
}

.problem-list {
  max-width: 640px;
  margin: 32px auto;
}

.problem-list li {
  padding: 14px 16px 14px 44px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
  border-bottom: 1px solid #eee;
}

.problem-list li:last-child {
  border-bottom: none;
}

.problem-icon {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #e53935;
  font-weight: 700;
  font-size: 1.1rem;
}

.problem-answer {
  text-align: center;
  margin-top: 36px;
  padding: 28px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.problem-answer p {
  font-size: 1rem;
  line-height: 1.9;
}

.problem-question {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #1a237e;
}

/* ============================================
   STORY SECTION
   ============================================ */
.section-story {
  background: #fff;
}

.story-block {
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 0.95rem;
  line-height: 2.0;
}

.story-block p {
  margin-bottom: 16px;
}

.story-highlight {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a237e;
  text-align: center;
  margin: 24px 0;
}

.story-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  margin: 32px auto;
}

.story-points {
  margin: 20px 0;
  padding-left: 20px;
}

.story-points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.8;
}

.story-points li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 0.6rem;
  top: 6px;
}

/* ============================================
   REVENUE SECTION
   ============================================ */
.section-revenue {
  background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.revenue-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.revenue-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card-stock {
  border-top: 4px solid #1a237e;
}

.card-high {
  border-top: 4px solid #ffd700;
}

.revenue-icon {
  margin-bottom: 16px;
}

.icon-circle {
  display: inline-block;
  font-size: 2.5rem;
}

.revenue-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a237e;
  line-height: 1.6;
  margin-bottom: 16px;
}

.revenue-card h3 em {
  font-style: normal;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
}

.revenue-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: left;
}

.revenue-tag {
  display: inline-block;
  background: #1a237e;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-top: 8px;
}

.tag-gold {
  background: linear-gradient(135deg, #f9a825, #ffd700);
  color: #1a1a2e;
}

.revenue-combined {
  margin-top: 40px;
  text-align: center;
}

.revenue-combined h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 20px;
}

.revenue-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 24px;
  font-size: 0.9rem;
}

.revenue-table th {
  background: #1a237e;
  color: #fff;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 0.85rem;
}

.revenue-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.row-highlight {
  background: #fffde7;
}

.row-highlight td {
  font-weight: 700;
}

.revenue-note {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 16px;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.section-solution {
  background: #fff;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.solution-card {
  background: #f8f9ff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26,35,126,0.1);
}

.solution-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: rgba(26,35,126,0.1);
  margin-bottom: 8px;
}

.solution-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 12px;
  line-height: 1.5;
}

.solution-card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #555;
}

/* ============================================
   LATEST AI SECTION
   ============================================ */
.latest-ai-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: clamp(32px, 5vw, 56px);
}

.latest-ai-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(20, 30, 50, 0.08);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.latest-ai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(20, 30, 50, 0.14);
}

.latest-ai-image {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f5fa;
}

.latest-ai-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.latest-ai-body {
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.latest-ai-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #8a6a26;
  background: rgba(138, 106, 38, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.latest-ai-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  color: #1a2238;
  letter-spacing: 0.02em;
}

.latest-ai-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: #2a3142;
}

.latest-ai-note {
  margin-top: clamp(24px, 3vw, 32px);
  text-align: center;
  font-size: 0.92rem;
  color: #5a6478;
}

@media (max-width: 768px) {
  .latest-ai-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta {
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
  padding: 48px 0;
  text-align: center;
  opacity: 1;
  transform: none;
}

.cta-lead {
  color: #ffd700;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #e53935 0%, #c62828 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 60px;
  box-shadow: 0 4px 20px rgba(229,57,53,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229,57,53,0.5);
}

.cta-large {
  font-size: 1.2rem;
  padding: 22px 56px;
}

/* Pulse Animation */
.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(229,57,53,0.4); }
  50% { box-shadow: 0 4px 40px rgba(229,57,53,0.7), 0 0 0 8px rgba(229,57,53,0.1); }
}

/* ============================================
   STEPS SECTION
   ============================================ */
.section-steps {
  background: #fafafa;
}

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

.step-card {
  background: #fff;
  border-radius: 28px;
  padding: 38px 40px 34px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  margin-bottom: 8px;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a237e;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.step-number span {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffd700;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.5;
}

.step-time {
  display: inline-block;
  background: #e8eaf6;
  color: #1a237e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #555;
  max-width: 760px;
}

.step-image-placeholder {
  margin-top: 16px;
  background: #f0f0f0;
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  color: #999;
  font-size: 0.85rem;
}

.step-image-frame {
  margin: 22px 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(160deg, #071223 0%, #0f1831 48%, #18284f 100%);
  border: 1px solid rgba(19, 35, 73, 0.16);
  box-shadow:
    0 18px 42px rgba(10, 17, 37, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.step-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.step-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: #1a237e;
  padding: 8px 0;
  opacity: 0.4;
}

.steps-summary {
  text-align: center;
  margin-top: 32px;
  padding: 24px 20px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #ffd700;
}

.steps-summary p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.section-benefits {
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 36px 0;
}

.benefit-item {
  padding: 24px 20px;
  border-radius: 12px;
  background: #f8f9ff;
  transition: transform 0.3s;
}

.benefit-item:hover {
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.benefit-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 8px;
  line-height: 1.5;
}

.benefit-item p {
  font-size: 0.83rem;
  line-height: 1.8;
  color: #555;
}

.benefits-closing {
  text-align: center;
  font-size: 0.95rem;
  color: #777;
  margin-top: 8px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.section-testimonials {
  background: #fafafa;
}

.testimonial-list {
  max-width: 640px;
  margin: 32px auto 0;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 50%;
}

.testimonial-meta strong {
  font-size: 0.9rem;
  color: #1a237e;
}

.testimonial-card p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #444;
}

.testimonial-note {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-top: 20px;
}

/* ============================================
   SUPPORT SECTION
   ============================================ */
.section-support {
  background: #fff;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.support-card {
  text-align: center;
  padding: 28px 16px;
  background: #f8f9ff;
  border-radius: 12px;
}

.support-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.support-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 10px;
}

.support-card p {
  font-size: 0.83rem;
  line-height: 1.8;
  color: #555;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.section-faq {
  background: #fafafa;
}

.faq-list {
  max-width: 640px;
  margin: 32px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: left;
  line-height: 1.6;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8f9ff;
}

.faq-toggle {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a237e;
  flex-shrink: 0;
  margin-left: 16px;
  width: 24px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-answer[hidden] {
  display: none;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

.faq-answer p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #555;
}

/* ============================================
   PRICE SECTION
   ============================================ */
.section-price {
  background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
  text-align: center;
}

.price-comparison {
  margin: 24px 0;
  font-size: 1rem;
  line-height: 1.9;
}

.price-benefits {
  max-width: 500px;
  margin: 24px auto 32px;
  text-align: left;
}

.price-benefits li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.price-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: 700;
  font-size: 1.1rem;
}

.price-package {
  background: #fff;
  border: 2px solid #e8eaf6;
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 440px;
  margin: 0 auto 32px;
  text-align: left;
}

.price-package h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 12px;
  text-align: center;
}

.price-package ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.price-package ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 2px;
  color: #1a237e;
  font-size: 0.5rem;
}

/* ============================================
   CLOSING SECTION
   ============================================ */
.section-closing {
  background: #fff;
  padding: 48px 0;
}

.closing-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  line-height: 2.0;
}

.closing-text p {
  margin-bottom: 20px;
}

.closing-final {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a237e;
  margin-top: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0a0a23;
  color: rgba(255,255,255,0.5);
  padding: 28px 0;
  text-align: center;
  font-size: 0.75rem;
}

.footer-copy {
  font-size: 0.7rem;
}

/* ============================================
   RESPONSIVE (768px)
   ============================================ */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .deadline-timer-frame {
    min-height: 64px;
    padding: 7px 12px;
    gap: 3px;
  }

  .deadline-timer-text {
    gap: 4px;
  }

  .deadline-timer-label {
    font-size: clamp(0.82rem, 3.2vw, 0.95rem);
    letter-spacing: 0.04em;
  }

  .deadline-timer-segments {
    gap: 5px;
  }

  .deadline-timer-segments .seg {
    min-width: 44px;
    padding: 3px 6px 2px;
    border-radius: 6px;
  }

  .deadline-timer-segments .seg-cap {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .deadline-timer-segments .seg-sep {
    padding-bottom: 12px;
  }

  .deadline-timer-grace {
    gap: 4px;
    padding: 2px 0;
  }

  .deadline-timer-grace-flag {
    padding: 4px 12px 3px;
    font-size: clamp(0.95rem, 4.2vw, 1.25rem);
    letter-spacing: 0.06em;
  }

  .deadline-timer-grace-message {
    font-size: clamp(0.82rem, 3.4vw, 1rem);
    letter-spacing: 0.03em;
  }

  .hero {
    padding: 40px 0 50px;
  }

  .hero-title {
    font-size: 1.35rem;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-badges li {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .revenue-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .support-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 16px 32px;
  }

  .cta-large {
    font-size: 1rem;
    padding: 18px 36px;
  }

  .section {
    padding: 44px 0;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .revenue-table {
    font-size: 0.8rem;
  }

  .revenue-table th,
  .revenue-table td {
    padding: 8px 6px;
  }

  .step-card {
    padding: 24px 20px;
  }
}

/* ============================================
   RESPONSIVE (480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.15rem;
  }

  .logo-main {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 16px;
  }
}

/* ============================================
   MARKET SECTION (NEW)
   ============================================ */
.section-market {
  background: #fff;
}

.market-block {
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 0.95rem;
  line-height: 2.0;
}

.market-block p {
  margin-bottom: 16px;
}

.market-sub-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 20px;
}

.market-points {
  margin: 20px 0;
  padding-left: 0;
}

.market-points li {
  position: relative;
  padding: 12px 16px 12px 24px;
  margin-bottom: 8px;
  background: #fffde7;
  border-left: 4px solid #ffd700;
  border-radius: 0 8px 8px 0;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ============================================
   REVENUE SIMULATION (NEW)
   ============================================ */
.revenue-simulation {
  margin-top: 48px;
  padding: 36px 24px;
  background: #f8f9ff;
  border-radius: 16px;
}

.revenue-simulation h3 {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 8px;
}

.sim-note {
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 24px;
}

.sim-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.sim-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.sim-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 12px;
  text-align: center;
}

.sim-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.sim-table th {
  background: #e8eaf6;
  color: #1a237e;
  padding: 8px;
  font-weight: 500;
  font-size: 0.8rem;
}

.sim-table td {
  padding: 8px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.sim-sub {
  font-size: 0.75rem;
  color: #999;
  margin-top: 8px;
  line-height: 1.6;
}

.sim-combined {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.9;
}

.sim-combined p {
  margin-bottom: 12px;
}

/* ============================================
   SCREENSHOTS SECTION (NEW)
   ============================================ */
.screenshots-section {
  margin-top: 48px;
}

.screenshots-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 24px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.screenshot-item {
  text-align: center;
}

.screenshot-item p {
  font-size: 0.8rem;
  color: #777;
  margin-top: 8px;
  line-height: 1.6;
}

/* ============================================
   COMPARE SECTION (NEW)
   ============================================ */
.section-compare {
  background: #fafafa;
}

.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.compare-card {
  border-radius: 16px;
  padding: 28px 24px;
}

.compare-do {
  background: #e8f5e9;
  border: 2px solid #66bb6a;
}

.compare-dont {
  background: #fce4ec;
  border: 2px solid #ef5350;
}

.compare-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.compare-do h3 {
  color: #2e7d32;
}

.compare-dont h3 {
  color: #c62828;
}

.compare-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.compare-do ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 2px;
  color: #66bb6a;
  font-size: 0.5rem;
}

.compare-dont ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 2px;
  color: #ef5350;
  font-size: 0.5rem;
}

.compare-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #777;
  text-align: center;
}

/* ============================================
   CHECKLIST (NEW)
   ============================================ */
.checklist-section {
  margin-top: 48px;
  padding: 36px 24px;
  background: #f8f9ff;
  border-radius: 16px;
}

.checklist-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 24px;
}

.checklist-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  line-height: 1.7;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: 700;
}

/* ============================================
   VERSUS TABLE (NEW)
   ============================================ */
.section-versus {
  background: #fafafa;
}

.versus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 32px;
}

.versus-table th {
  background: #1a237e;
  color: #fff;
  padding: 12px;
  font-weight: 500;
  font-size: 0.85rem;
}

.versus-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.vs-label {
  font-weight: 700;
  color: #1a237e;
  background: #f8f9ff;
  text-align: left !important;
}

.vs-old {
  color: #999;
}

.vs-new {
  color: #1a237e;
  font-weight: 700;
  background: #fffde7;
}

/* ============================================
   NOT FOR YOU SECTION (NEW)
   ============================================ */
.section-not-for {
  background: #fff;
}

.not-for-list {
  max-width: 640px;
  margin: 32px auto;
}

.not-for-list li {
  padding: 16px 16px 16px 44px;
  position: relative;
  font-size: 0.93rem;
  line-height: 1.7;
  border-bottom: 1px solid #eee;
}

.nf-icon {
  position: absolute;
  left: 12px;
  top: 16px;
  color: #e53935;
  font-weight: 700;
  font-size: 1.1rem;
}

.nf-detail {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-top: 4px;
}

.for-you {
  max-width: 640px;
  margin: 36px auto 0;
  padding: 28px 24px;
  background: #e8f5e9;
  border-radius: 12px;
  border: 2px solid #66bb6a;
}

.for-you h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 16px;
  text-align: center;
}

.for-you-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.fy-icon {
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: 700;
}

/* ============================================
   URGENCY SECTION (NEW)
   ============================================ */
.section-urgency {
  background: #fff;
}

.urgency-block {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 2.0;
}

.urgency-block p {
  margin-bottom: 16px;
}

/* ============================================
   BONUS SECTION (NEW)
   ============================================ */
.section-bonus {
  background: #fafafa;
}

.bonus-list {
  max-width: 600px;
  margin: 32px auto 0;
}

.bonus-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border-left: 4px solid #1a237e;
}

.bonus-main {
  border-left-color: #ffd700;
  background: #fffde7;
}

.bonus-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #1a237e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bonus-main .bonus-number {
  color: #f9a825;
}

.bonus-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.bonus-item p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #555;
}

/* ============================================
   AUTHOR MESSAGE SECTION (NEW)
   ============================================ */
.section-message {
  background: #fff;
  padding: 48px 0;
}

.message-block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  line-height: 2.0;
}

.message-block p {
  margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE ADDITIONS (768px)
   ============================================ */
@media (max-width: 768px) {
  .sim-cards {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .compare-cards {
    grid-template-columns: 1fr;
  }

  .checklist-columns {
    grid-template-columns: 1fr;
  }

  .versus-table {
    font-size: 0.78rem;
  }

  .versus-table td,
  .versus-table th {
    padding: 8px 6px;
  }
}

/* ============================================
   UI UPGRADE OVERRIDES
   ============================================ */
:root {
  --lp-paper: #f8f4eb;
  --lp-paper-soft: #fffdfa;
  --lp-paper-tint: #f4f6fb;
  --lp-ink: #17213a;
  --lp-navy: #132349;
  --lp-navy-deep: #091227;
  --lp-gold: #c9a434;
  --lp-gold-soft: #f0de9e;
  --lp-line: rgba(19, 35, 73, 0.12);
  --lp-shadow: 0 24px 60px rgba(10, 17, 37, 0.08);
}

html {
  background: var(--lp-paper);
}

body {
  color: var(--lp-ink);
  background:
    radial-gradient(circle at top, rgba(201, 164, 52, 0.16), transparent 18%),
    linear-gradient(180deg, #f7f3ea 0%, #fcfbf7 18%, #f4f6fb 54%, #fbfaf6 100%);
  line-height: 1.95;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 860px;
  padding: 0 24px;
}

.site-header {
  position: relative;
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 216, 116, 0.14), transparent 24%),
    linear-gradient(180deg, #060b19 0%, #091227 58%, #0d1731 100%);
  padding-bottom: clamp(28px, 3vw, 44px);
}

.site-header::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(9, 18, 39, 0.66));
  pointer-events: none;
}

.hero-visual {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.hero {
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 215, 0, 0.14), transparent 22%),
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(155deg, #091227 0%, #132349 42%, #1c2f65 68%, #102040 100%);
  padding: 68px 0 82px;
}

.hero-pre {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.95rem, 4vw, 2.7rem);
  line-height: 1.5;
}

.hero-catch {
  font-size: 1.08rem;
}

.hero-badges li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.32);
  color: #fff3c1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.hero-note {
  color: rgba(255, 255, 255, 0.66);
}

.opening-strip {
  position: relative;
  z-index: 4;
  margin-top: clamp(-20px, -1.4vw, -12px);
  padding: 0 0 30px;
}

.opening-strip .container {
  max-width: 980px;
}

.opening-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 438px);
  grid-template-areas:
    "copy pillars"
    "copy cta";
  gap: 22px;
  align-items: start;
  padding: 28px 32px;
  background: rgba(255, 252, 246, 0.9);
  border: 1px solid rgba(201, 164, 52, 0.24);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(10, 17, 37, 0.14);
  backdrop-filter: blur(14px);
}

.opening-panel-copy {
  grid-area: copy;
  text-align: left;
  align-self: center;
}

.opening-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(19, 35, 73, 0.56);
  margin-bottom: 10px;
}

.opening-summary {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--lp-navy);
}

.opening-pillars {
  grid-area: pillars;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.opening-pillars li {
  min-height: 100%;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(19, 35, 73, 0.04), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(19, 35, 73, 0.1);
  text-align: center;
}

.opening-pillars strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--lp-navy);
  margin-bottom: 4px;
}

.opening-pillars span {
  display: block;
  font-size: 0.75rem;
  color: rgba(23, 33, 58, 0.72);
}

.opening-cta {
  grid-area: cta;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
}

.section-divider {
  height: 12px;
}

.divider-wave {
  background: linear-gradient(90deg, rgba(19, 35, 73, 0.06), rgba(201, 164, 52, 0.72), rgba(19, 35, 73, 0.06));
  opacity: 1;
}

.divider-gold {
  background: linear-gradient(90deg, transparent, rgba(201, 164, 52, 0.92), transparent);
  opacity: 1;
}

.section {
  position: relative;
  padding: clamp(74px, 8vw, 108px) 0;
  isolation: isolate;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 164, 52, 0.07), transparent 20%),
    radial-gradient(circle at 88% 100%, rgba(19, 35, 73, 0.05), transparent 26%);
  pointer-events: none;
  z-index: -1;
}

.section-title {
  position: relative;
  max-width: none;
  margin: 0 auto 22px;
  padding-top: 34px;
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.55rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--lp-navy);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.section-title::before {
  content: var(--section-kicker, "DIGITAL INCOME INFINITY");
  display: block;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(19, 35, 73, 0.48);
}

.section-title::after {
  content: '';
  display: block;
  width: 92px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 52, 0.88), transparent);
}

.section-subtitle,
.section-text {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-text {
  font-size: 1rem;
}

.section-problem { --section-kicker: "Problem"; background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(244, 246, 251, 0.92) 100%); }
.section-story { --section-kicker: "Story"; background: linear-gradient(180deg, rgba(255, 253, 250, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%); }
.section-market { --section-kicker: "Market"; background: linear-gradient(180deg, rgba(245, 247, 251, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%); }
.section-revenue { --section-kicker: "Asset Model"; background: radial-gradient(circle at top, rgba(201, 164, 52, 0.24), transparent 18%), linear-gradient(180deg, #091227 0%, #101b3e 100%); color: #e9eefb; }
.section-solution { --section-kicker: "System"; background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 252, 0.98) 100%); }
.section-steps { --section-kicker: "Workflow"; background: linear-gradient(180deg, rgba(248, 244, 235, 0.88) 0%, rgba(255, 255, 255, 0.96) 100%); }
.section-compare { --section-kicker: "Operation"; background: linear-gradient(180deg, rgba(248, 250, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%); }
.section-benefits { --section-kicker: "Features"; background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 251, 0.98) 100%); }
.section-versus { --section-kicker: "Comparison"; background: linear-gradient(180deg, rgba(247, 243, 234, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%); }
.section-not-for { --section-kicker: "Who"; background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 252, 0.98) 100%); }
.section-testimonials { --section-kicker: "Voice"; background: linear-gradient(180deg, rgba(249, 246, 240, 0.96) 0%, rgba(244, 246, 251, 0.98) 100%); }
.section-urgency { --section-kicker: "Urgency"; background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 243, 234, 0.96) 100%); }
.section-support { --section-kicker: "Support"; background: linear-gradient(180deg, rgba(244, 246, 251, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%); }
.section-faq { --section-kicker: "FAQ"; background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 252, 0.98) 100%); }
.section-bonus { --section-kicker: "Package"; background: linear-gradient(180deg, rgba(249, 246, 240, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%); }
.section-price { --section-kicker: "Offer"; background: radial-gradient(circle at top, rgba(201, 164, 52, 0.2), transparent 18%), linear-gradient(180deg, #0a1329 0%, #11204a 100%); color: #eef2ff; }
.section-message { --section-kicker: "Message"; background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 243, 234, 0.98) 100%); }
.section-latest-ai { --section-kicker: "Latest AI"; background: linear-gradient(180deg, rgba(247, 248, 252, 0.98) 0%, rgba(252, 250, 245, 0.98) 100%); }
.section-member-site { --section-kicker: "Member Site"; background: linear-gradient(180deg, rgba(252, 250, 245, 0.98) 0%, rgba(247, 248, 252, 0.98) 100%); }

.section-solution .container,
.section-steps .container,
.section-latest-ai .container,
.section-member-site .container {
  max-width: 980px;
}

.section-revenue .section-title,
.section-revenue .section-subtitle,
.section-price .section-title {
  color: #ffffff;
}

.section-revenue .section-title::before,
.section-price .section-title::before {
  color: rgba(255, 244, 196, 0.7);
}

.section-revenue .section-title::after,
.section-price .section-title::after {
  background: linear-gradient(90deg, transparent, rgba(255, 244, 196, 0.94), transparent);
}

.section-revenue .section-subtitle,
.section-price .price-comparison {
  color: rgba(235, 241, 255, 0.84);
}

.problem-list {
  max-width: 740px;
  display: grid;
  gap: 12px;
  margin: 34px auto;
}

.problem-list li {
  padding: 18px 20px 18px 52px;
  border: 1px solid rgba(229, 57, 53, 0.12);
  border-bottom: 1px solid rgba(229, 57, 53, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(10, 17, 37, 0.04);
}

.problem-icon {
  top: 18px;
}

.problem-answer,
.story-block,
.market-block,
.urgency-block,
.message-block {
  padding: 34px clamp(22px, 4vw, 40px);
  border-radius: 28px;
  border: 1px solid var(--lp-line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--lp-shadow);
}

.problem-answer {
  margin-top: 42px;
}

.story-block,
.market-block {
  max-width: 720px;
  margin-bottom: 24px;
}

.urgency-block,
.message-block {
  max-width: 720px;
  margin: 0 auto;
}

.story-highlight {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.2rem;
  line-height: 1.8;
}

.story-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 52, 0.92), transparent);
  margin: 34px auto;
}

.market-points li {
  background: linear-gradient(180deg, rgba(255, 248, 222, 0.88), rgba(255, 255, 255, 0.96));
  border-left: 4px solid var(--lp-gold);
  border-radius: 18px;
  border: 1px solid rgba(201, 164, 52, 0.16);
  box-shadow: 0 12px 28px rgba(10, 17, 37, 0.04);
}

.section-revenue::before,
.section-price::before {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 84% 0%, rgba(201, 164, 52, 0.14), transparent 24%),
    radial-gradient(circle at 80% 100%, rgba(255, 255, 255, 0.04), transparent 26%);
}

.revenue-card,
.solution-card,
.step-card,
.screenshot-item,
.benefit-item,
.testimonial-card,
.support-card,
.faq-item,
.bonus-item {
  border: 1px solid rgba(19, 35, 73, 0.08);
  box-shadow: var(--lp-shadow);
}

.revenue-card {
  padding: 34px 26px;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.revenue-card p {
  color: rgba(23, 33, 58, 0.84);
}

.revenue-card h3 em {
  color: rgba(23, 33, 58, 0.68);
}

.revenue-simulation {
  padding: 40px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.revenue-simulation h3 {
  color: #fff;
}

.sim-note {
  color: rgba(235, 241, 255, 0.68);
}

.sim-card {
  border: 1px solid rgba(201, 164, 52, 0.16);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(10, 17, 37, 0.08);
}

.sim-combined {
  color: rgba(235, 241, 255, 0.86);
}

.solution-card,
.step-card,
.benefit-item,
.support-card,
.bonus-item {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.94));
}

.solution-card,
.benefit-item {
  box-shadow: 0 18px 42px rgba(10, 17, 37, 0.06);
}

.step-card {
  padding: 34px 30px;
}

.step-image-placeholder,
.screenshot-item .step-image-placeholder {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(19, 35, 73, 0.06), rgba(201, 164, 52, 0.08));
  border: 1px dashed rgba(19, 35, 73, 0.18);
}

.screenshot-item .step-image-frame {
  margin-top: 0;
}

.screenshots-section,
.checklist-section,
.steps-summary {
  border-radius: 28px;
  border: 1px solid rgba(19, 35, 73, 0.08);
  box-shadow: var(--lp-shadow);
}

.screenshots-section {
  padding: 36px 28px;
  background: linear-gradient(180deg, rgba(247, 248, 252, 0.94), rgba(255, 255, 255, 0.98));
}

.screenshot-item {
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.screenshot-item p {
  margin-top: 12px;
  color: rgba(23, 33, 58, 0.7);
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.steps-summary,
.checklist-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 235, 0.92));
}

.checklist-columns {
  gap: 18px;
}

.compare-card {
  border-radius: 24px;
  box-shadow: var(--lp-shadow);
}

.compare-do {
  background: linear-gradient(180deg, rgba(232, 245, 233, 0.98), rgba(255, 255, 255, 0.96));
  border-color: rgba(102, 187, 106, 0.28);
}

.compare-dont {
  background: linear-gradient(180deg, rgba(252, 228, 236, 0.98), rgba(255, 255, 255, 0.96));
  border-color: rgba(239, 83, 80, 0.24);
}

.versus-table {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--lp-shadow);
}

.versus-table th {
  background: linear-gradient(135deg, #16274f, #233c7e);
}

.versus-table td {
  background: rgba(255, 255, 255, 0.92);
}

.for-you,
.not-for-list li {
  box-shadow: 0 14px 34px rgba(10, 17, 37, 0.05);
}

.not-for-list li {
  border: 1px solid rgba(19, 35, 73, 0.08);
  border-radius: 18px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.88);
}

.for-you {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(232, 245, 233, 0.98), rgba(255, 255, 255, 0.96));
}

.testimonial-card {
  position: relative;
  border-radius: 26px;
  padding: 28px 28px 26px;
  overflow: hidden;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: 'Shippori Mincho', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(201, 164, 52, 0.16);
}

.testimonial-avatar {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #132349, #29498f);
  box-shadow: 0 14px 24px rgba(19, 35, 73, 0.18);
}

.testimonial-meta strong {
  font-size: 0.98rem;
}

.support-card {
  position: relative;
  padding: 30px 22px;
  overflow: hidden;
}

.support-card::before,
.bonus-item::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(201, 164, 52, 0.92), rgba(19, 35, 73, 0.44));
}

.faq-item {
  border-radius: 20px;
}

.faq-question {
  padding: 20px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96));
}

.faq-answer {
  background: rgba(255, 255, 255, 0.92);
}

.bonus-list {
  max-width: 720px;
}

.bonus-item {
  position: relative;
  border-left: 1px solid rgba(19, 35, 73, 0.08);
  border-radius: 24px;
  padding: 28px 26px;
}

.bonus-main {
  background: linear-gradient(180deg, rgba(255, 248, 222, 0.96), rgba(255, 255, 255, 0.96));
  border-color: rgba(201, 164, 52, 0.18);
}

.section-cta {
  padding: 34px 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 164, 52, 0.18), transparent 22%),
    linear-gradient(135deg, #0a1329 0%, #152654 58%, #0f1d43 100%);
}

.section-cta::before {
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 10% 100%, rgba(201, 164, 52, 0.16), transparent 24%);
}

.section-cta .container {
  max-width: 940px;
  padding: 34px 40px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.cta-lead {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5dea2;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 12px;
  min-width: min(100%, 560px);
  padding: 20px 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #c9332b 0%, #a92522 48%, #7a1717 100%);
  box-shadow: 0 16px 34px rgba(139, 24, 24, 0.34);
  letter-spacing: 0.04em;
  overflow: hidden;
  will-change: transform, box-shadow, filter;
}

.cta-button::after {
  content: '›';
  font-size: 1.25em;
  line-height: 1;
}

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-large {
  min-width: min(100%, 620px);
  font-size: 1.25rem;
}

.cta-large--multiline {
  line-height: 1.45;
  padding-top: clamp(16px, 2.4vw, 22px);
  padding-bottom: clamp(16px, 2.4vw, 22px);
}

.cta-large--multiline br {
  display: block;
}

.price-note {
  margin: 14px auto 0;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(238, 242, 255, 0.78);
  letter-spacing: 0.04em;
}

.cta-scroll-button.is-teleporting {
  animation: cta-warp-pulse 0.56s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.cta-trust span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.04em;
}

.section-price .container {
  max-width: 980px;
}

.section-price {
  scroll-margin-top: 96px;
}

.section-price .price-benefits {
  max-width: 760px;
  display: grid;
  gap: 12px;
  margin: 28px auto 34px;
}

.section-price .price-benefits li {
  padding: 16px 18px 16px 44px;
  margin-bottom: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(235, 241, 255, 0.88);
}

.section-price .price-benefits li::before {
  left: 16px;
  color: #ffe79f;
}

.price-reassurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin: 0 auto 32px;
}

.price-reassurance-item {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.price-reassurance-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: #fff1bc;
  margin-bottom: 6px;
}

.price-reassurance-item span {
  display: block;
  font-size: 0.8rem;
  color: rgba(235, 241, 255, 0.74);
  line-height: 1.7;
}

.final-cta-visual {
  max-width: 780px;
  margin: 0 auto 28px;
}

.final-cta-visual picture,
.final-cta-visual img {
  display: block;
  width: 100%;
}

.final-cta-visual img {
  border-radius: 28px;
  border: 1px solid rgba(255, 244, 196, 0.18);
  box-shadow:
    0 30px 66px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.price-campaign {
  max-width: 760px;
  margin: 28px auto 22px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 232, 166, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 244, 196, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(8, 17, 48, 0.34);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.price-campaign-kicker {
  color: #ffe8a6;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.price-campaign-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}

.section-price .cta-lead {
  margin-top: 4px;
  color: #fff0bb;
}

.section-price .cta-trust span {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
}

.section-price.purchase-teleport-active .final-cta-visual img {
  animation: purchase-arrival-visual 1.05s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.section-price.purchase-teleport-active .cta-large {
  animation: purchase-arrival-button 1.18s cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes cta-warp-pulse {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  38% {
    transform: scale(0.95);
    filter: brightness(1.14);
  }
  72% {
    transform: scale(1.04);
    box-shadow: 0 18px 42px rgba(190, 35, 35, 0.4), 0 0 30px rgba(255, 214, 132, 0.3);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

@keyframes purchase-arrival-visual {
  0% {
    transform: translateY(18px) scale(0.98);
    opacity: 0.72;
    filter: saturate(1.12) brightness(1.08);
  }
  58% {
    transform: translateY(-5px) scale(1.018);
    opacity: 1;
    filter: saturate(1.18) brightness(1.14);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: none;
  }
}

@keyframes purchase-arrival-panel {
  0% {
    transform: translateY(16px) scale(0.975);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  }
  54% {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.28), 0 0 38px rgba(255, 229, 154, 0.32);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  }
}

@keyframes purchase-arrival-button {
  0% {
    transform: translateY(18px) scale(0.965);
    filter: brightness(1.02);
  }
  52% {
    transform: translateY(-4px) scale(1.03);
    filter: brightness(1.14);
    box-shadow: 0 18px 42px rgba(190, 35, 35, 0.42), 0 0 34px rgba(255, 222, 140, 0.32);
  }
  100% {
    transform: translateY(0) scale(1);
    filter: none;
    box-shadow: 0 16px 34px rgba(190, 35, 35, 0.32);
  }
}

.message-block {
  text-align: center;
}

@media (min-width: 901px) {
  .opening-summary {
    font-size: 1.22rem;
  }

  .opening-pillars strong {
    font-size: 1.06rem;
  }

  .opening-pillars span {
    font-size: 0.8rem;
  }

  .section-subtitle,
  .section-text {
    font-size: 1.06rem;
    line-height: 1.95;
  }

  .problem-list li,
  .problem-answer,
  .story-block,
  .market-block,
  .urgency-block,
  .message-block {
    font-size: 1.04rem;
    line-height: 2;
  }

  .story-points li,
  .market-points li,
  .solution-card p,
  .step-card p,
  .screenshot-item p,
  .benefit-item p,
  .compare-card li,
  .not-for-list li,
  .for-you,
  .testimonial-card p,
  .support-card p,
  .bonus-item p,
  .section-price .price-benefits li {
    font-size: 1.01rem;
    line-height: 1.9;
  }

  .price-comparison p,
  .price-reassurance-item span {
    font-size: 0.9rem;
    line-height: 1.85;
  }

  .faq-question {
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .faq-answer p {
    font-size: 0.98rem;
    line-height: 1.95;
  }

  .testimonial-meta strong,
  .support-card h3,
  .bonus-item h3 {
    font-size: 1.04rem;
  }

  .cta-button {
    font-size: 1.16rem;
  }

  .cta-large {
    font-size: 1.3rem;
  }

  .cta-trust span {
    font-size: 0.82rem;
  }
}

@media (max-width: 900px) {
  .opening-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "pillars"
      "cta";
  }

  .opening-cta {
    justify-self: stretch;
  }
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.1;
  }

  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 54px 0 68px;
  }

  .opening-strip {
    margin-top: 0;
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .opening-panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .opening-summary {
    font-size: 1rem;
  }

  .opening-pillars {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-title {
    max-width: none;
    padding-top: 28px;
    font-size: 1.55rem;
  }

  .problem-list li,
  .not-for-list li,
  .section-price .price-benefits li {
    padding-left: 44px;
  }

  .problem-answer,
  .story-block,
  .market-block,
  .urgency-block,
  .message-block,
  .screenshots-section,
  .checklist-section,
  .steps-summary,
  .testimonial-card,
  .support-card,
  .bonus-item {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .step-card {
    padding: 26px 20px;
  }

  .section-cta .container {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .cta-button,
  .cta-large,
  .opening-cta {
    width: 100%;
    min-width: 0;
    font-size: 0.98rem;
    padding: 18px 22px;
  }

  .section-price .cta-large {
    font-size: 0.88rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
  }

  .cta-trust {
    gap: 8px;
  }

  .cta-trust span {
    width: 100%;
  }

  .price-reassurance {
    grid-template-columns: 1fr;
  }

  .final-cta-visual {
    margin-bottom: 24px;
  }

  .final-cta-visual img {
    border-radius: 24px;
  }

  .price-campaign {
    margin: 22px auto 18px;
    padding: 17px 16px;
  }

  .price-campaign-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .price-campaign-text {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .versus-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.35rem;
  }

  .deadline-timer-segments {
    gap: 4px;
  }

  .deadline-timer-segments .seg {
    min-width: 38px;
    padding: 2px 4px 1px;
  }

  .deadline-timer-segments .seg-cap {
    font-size: 0.48rem;
  }

  .opening-summary {
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-scroll-button.is-teleporting,
  .section-price.purchase-teleport-active .final-cta-visual img,
  .section-price.purchase-teleport-active .cta-large {
    animation: none;
  }
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 354px;
    margin: 0 auto;
  }

  .hero-pre {
    margin-bottom: 18px;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .hero-title {
    font-size: clamp(1.56rem, 7.2vw, 1.84rem);
    line-height: 1.38;
    margin-bottom: 18px;
  }

  .hero-line1 {
    font-size: clamp(1.48rem, 6.6vw, 1.72rem);
    line-height: 1.34;
  }

  .hero-line2 {
    margin-top: 12px;
    font-size: clamp(1.7rem, 7.7vw, 2rem);
    line-height: 1.34;
  }

  .hero-title em {
    display: inline-block;
  }

  .hero-points {
    max-width: 344px;
    margin-bottom: 22px;
    padding: 15px 16px 16px;
    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
      rgba(5, 12, 31, 0.22);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
  }

  .hero-catch--main {
    gap: 8px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.08rem, 5.5vw, 1.34rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .hero-catch--sub {
    font-size: 0.93rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.86);
  }

  .hero-catch--sub strong {
    color: #fff6cf;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px;
  }

  .hero-badges li {
    min-height: 86px;
    padding: 14px 12px;
    border-radius: 22px;
    text-align: center;
    font-size: 0.78rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.28);
  }

  .hero-badges li:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .hero-badges strong {
    color: #fff5c7;
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .hero-badges span {
    color: rgba(255,255,255,0.72);
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .hero-note {
    margin-top: 0;
    font-size: 0.83rem;
    line-height: 1.72;
    color: rgba(255,255,255,0.64);
  }

  .hero-note strong {
    color: rgba(255,255,255,0.92);
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .hero-line1 {
    font-size: 1.42rem;
  }

  .hero-line2 {
    font-size: 1.68rem;
  }

  .hero-catch--main {
    font-size: 1.02rem;
  }

  .hero-badges strong {
    font-size: 0.92rem;
  }
}

@media (max-width: 768px) {
  .section-versus .section-subtitle {
    max-width: 18em;
    margin-left: auto;
    margin-right: auto;
  }

  .versus-table {
    display: block;
    margin-top: 24px;
    white-space: normal;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .versus-table thead {
    display: none;
  }

  .versus-table tbody {
    display: grid;
    gap: 14px;
  }

  .versus-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(19, 35, 73, 0.1);
    box-shadow: 0 16px 34px rgba(10, 17, 37, 0.08);
  }

  .versus-table td {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    min-height: 96px;
    padding: 14px 12px;
    border: 0;
    border-radius: 16px;
    text-align: left;
    white-space: normal;
    line-height: 1.5;
    font-size: 0.9rem;
  }

  .versus-table .vs-label {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 0 0 2px;
    border-radius: 0;
    background: transparent;
    color: var(--lp-navy);
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .versus-table .vs-old,
  .versus-table .vs-new {
    position: relative;
    padding-top: 34px;
  }

  .versus-table .vs-old::before,
  .versus-table .vs-new::before {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .versus-table .vs-old {
    color: rgba(23, 33, 58, 0.72);
    background: linear-gradient(180deg, rgba(245, 247, 252, 0.98), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(19, 35, 73, 0.08);
  }

  .versus-table .vs-old::before {
    content: "従来の方法";
    color: rgba(19, 35, 73, 0.52);
  }

  .versus-table .vs-new {
    color: var(--lp-navy);
    background: linear-gradient(180deg, rgba(255, 249, 219, 0.92), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(201, 164, 52, 0.24);
  }

  .versus-table .vs-new::before {
    content: "本ツール";
    color: rgba(19, 35, 73, 0.58);
  }
}

.site-header .hero-first-cta {
  position: absolute;
  right: clamp(56px, 7vw, 118px);
  bottom: clamp(125px, 10.6vw, 168px);
  z-index: 3;
  width: min(430px, 30vw);
  min-width: 330px;
}

.hero-mobile-stack .hero-mobile-stack__cta {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 17px 18px;
  font-size: 0.98rem;
}

.hero-mobile-stack .hero-mobile-stack__container {
  max-width: 470px;
  padding: 0 16px;
}

a:focus,
button:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffe27a;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(19, 35, 73, 0.34);
}

.support-card-note,
.bonus-item-note {
  margin-top: clamp(8px, 1.2vw, 12px);
  padding: 8px 12px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #1a237e;
  background: rgba(255, 232, 178, 0.36);
  border-left: 3px solid #c9a44d;
  border-radius: 6px;
  text-align: left;
}

/* ============================================
   READABILITY FIX: 中央寄せ要素の左寄せ化
   2026-04-25 改訂 (Stage 1 + Stage 2 + Round 3 後追い調整)
   ============================================
   設計方針:
   - 長文化しやすい本文段落 (`.message-block p` `.problem-answer p` `.support-card p`
     `.steps-summary p`) は **全幅で left**（デスクトップでも改行ジグザグが発生しやすいため）
   - 注釈・短文中央寄せでも改行で1〜2文字単独行が出る `.latest-ai-note` `.compare-note` も
     全幅で left に統一
   - SP のみ 1行が極端に短くなり改行が崩れる `.section-subtitle` `.section-text`
     `.solution-card p` は @media (max-width: 768px) でのみ left。デスクトップは中央寄せ維持で
     既存LP のプレミアム感を保つ
   - `.story-highlight` `.time-breakdown-note` `.market-sub-title` は短文宣言・注釈・h3タイトルの
     ため中央寄せ維持
   ============================================ */
.message-block p,
.problem-answer p,
.support-card p,
.steps-summary p,
.latest-ai-note,
.compare-note {
  text-align: left;
}

/* Round 3 例外: `.problem-question` は `.problem-answer` 直下にある「決め台詞型」短文宣言
   (`<p class="problem-question">…</p>`) のため、broad selector の左寄せから除外して中央寄せを維持。
   `.problem-answer p` の specificity (0,1,1) に勝つため `.problem-answer p.problem-question` (0,2,1) で記述 */
.problem-answer p.problem-question {
  text-align: center;
}

/* Stage 2: SP のみ左寄せ化（デスクトップは中央寄せ維持で美観確保）
   `.solution-card p` は機能カード本文で、デスクトップでは container 内で中央寄せが映えるが
   SP では狭すぎるため left に切替。`.support-card p` を全幅 left にしているのは、サポート文言が
   より長文化しやすい（30日サポート / 図解マニュアル / 即時利用開始 各 4-8 行）ため、
   デスクトップでも左寄せが望ましい判断 */
@media (max-width: 768px) {
  .section-subtitle,
  .section-text,
  .solution-card p {
    text-align: left;
  }
}
