/* =============================================================
   EXIT FACTOR JAPAN — LP Styles
   Brand-aligned per Exit Factor Brand Guidelines 2025
   Primary:   Navy #1F3044 / Orange #F07A22
   Secondary: Light Gray #D8DADD / Mid Gray #858F97 / Yellow #FCC449
   Typeface:  Poppins (EN) / Noto Sans JP (JP)
============================================================= */

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

:root {
  /* Brand primary */
  --navy:        #1F3044;
  --navy-mid:    #26405F;  /* lighter navy variant for .section-navy (cool, blue-leaning) */
  --orange:      #F07A22;
  --orange-dark: #D16616;  /* button hover state only */

  /* Brand secondary */
  --gray-light:  #D8DADD;
  --gray-mid:    #858F97;
  --yellow:      #FCC449;

  --white:       #ffffff;
  --off-white:   #F5F6F8;
  --gray-100:    #f0f2f5;
  --gray-600:    #6c757d;
  --gray-800:    #343a40;
  --text-dark:   #1a2436;
  --text-mid:    #3d4f63;

  --font-jp:    'Noto Sans JP', sans-serif;
  --font-en:    'Poppins', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.10);
  --shadow-md:  0 6px 24px rgba(0,0,0,.14);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.20);

  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(1rem, 1.4vw, 1.375rem); /* 16–22px (brand Body 22px target) */
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── CONTAINER ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-jp);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(240,122,34,.22);
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240,122,34,.30);
}

.btn-sm  { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg  { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-xl  { padding: 22px 48px; font-size: 1.15rem; border-radius: var(--radius-md); }

/* ── TYPOGRAPHY UTILITIES ── */
.highlight-orange { color: var(--orange); }
.highlight-white  { color: var(--white); }

/* ── SECTION BASE ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-light { background: var(--off-white); }
.section-dark  { background: var(--navy); }
.section-navy  { background: var(--navy-mid); }

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-label.light {
  color: rgba(255,255,255,.55);
}

/* ── SECTION TITLE ── */
.section-title {
  font-size: clamp(2rem, 4vw, 3.125rem); /* 32–50px (brand Subheader 50px target) */
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 56px;
}

.section-title.light {
  color: var(--white);
}

.section-title.center { text-align: center; }

/* ── STRONG QUOTES ── */
.strong-quote {
  position: relative;
  padding: 28px 32px;
  margin-top: 48px;
  border-radius: var(--radius-md);
}

.navy-quote {
  background: rgba(31,48,68,.06);
  border-left: 4px solid var(--navy);
}

.orange-quote {
  background: rgba(240,122,34,.07);
  border-left: 4px solid var(--orange);
}

.strong-quote p {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-dark);
}

.orange-quote p { color: var(--white); }

.orange-quote.center {
  text-align: center;
  border-left: none;
  border-top: 3px solid var(--orange);
  padding: 36px 48px;
}

.orange-quote.center p { font-size: 1.25rem; }
.orange-quote.large-quote p { font-size: 1.4rem; }

.quote-bar {
  width: 40px;
  height: 3px;
  background: var(--navy);
  margin-bottom: 16px;
}

.quote-bar-orange {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 16px;
}

.center-bar {
  margin: 0 auto 16px;
}

/* ── SECTION CTA ── */
.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}

.remaining-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
}

.remaining-inline.light {
  color: rgba(255,255,255,0.8);
}

.remaining-inline i {
  color: var(--orange);
}

/* ================================================================
   STICKY BADGE
================================================================ */
.sticky-badge {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 999;
  background: var(--orange);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(240,122,34,.30);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
  animation: badgePulse 2.5s infinite;
}

.sticky-badge:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.badge-arrow {
  font-size: 0.85rem;
  margin-left: 4px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 1px;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(240,122,34,.30); }
  50%       { box-shadow: 0 6px 22px rgba(240,122,34,.50); }
}

.badge-fire { font-size: 1.1rem; }
.badge-text strong { font-size: 1.1rem; }
.badge-label {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-left: 2px;
}

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(31,48,68,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 24px;
  height: 70px;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(31,48,68,1);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-remaining {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-remaining strong { font-size: 1rem; }
.nav-remaining i { color: var(--orange); }

.nav-cta-btn {
  display: none;
}

@media (min-width: 640px) {
  .nav-cta-btn { display: inline-flex; }
}

/* ================================================================
   HERO SECTION
================================================================ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(
      160deg,
      rgba(31,48,68,0.95) 0%,
      rgba(15,40,72,0.88) 50%,
      rgba(31,48,68,0.95) 100%
    ),
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&amp;q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(240,122,34,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(31,48,68,0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

/* Responsive line-break helpers */
.sp-br { display: none; }
.pc-br { display: inline; }
@media (max-width: 640px) {
  .sp-br { display: inline; }
  .pc-br { display: none; }
}

/* Prevent ugly mid-word breaks in Japanese headlines */
.section-title,
.hero-sub,
.hero-desc,
.founding-lead,
.why-lead,
.final-cta-title,
.final-cta-sub,
.cta-box-note,
.message-quote,
.message-body p,
.message-subheading,
.about-conclusion p,
.strong-quote p,
.issue-body,
.fit-col p,
.discovery-content-box p {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.chip-orange {
  background: var(--orange);
  color: var(--white);
}

.chip-white {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}

.chip-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.375rem); /* 40–70px (brand Header 70px target) */
  font-weight: 900;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-sub {
  font-size: clamp(1.15rem, 2.5vw, 1.875rem); /* 18–30px (brand Sub#2 30px target) */
  color: rgba(255,255,255,.85);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.70);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Hero Remaining Slots */
.hero-remaining-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}

.remaining-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.remaining-slots {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.slot {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.25);
  transition: transform var(--transition);
}

.slot-taken {
  background: var(--gray-mid);
  border-color: var(--gray-mid);
  position: relative;
}

.slot-taken::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
}

.slot-available {
  background: var(--orange);
  border-color: var(--orange);
  animation: slotGlow 2s infinite alternate;
}

@keyframes slotGlow {
  from { opacity: 0.8; }
  to   { opacity: 1; box-shadow: 0 0 8px rgba(240,122,34,.4); }
}

.remaining-note {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.remaining-filled { color: rgba(255,255,255,.5); }

.remaining-open {
  color: var(--orange);
}

.remaining-open strong {
  font-size: inherit;
}

/* Hero CTA */
.hero-cta-btn {
  display: inline-flex;
  font-size: 1.1rem;
}

.hero-cta-note {
  color: rgba(255,255,255,.5);
  font-size: 0.82rem;
  margin-top: 14px;
}

/* Hero Scroll */
.hero-scroll-indicator {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.35);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 22px; }
  50%       { opacity: 0.7; height: 34px; }
}

/* ================================================================
   SECTION 2 — SOCIAL ISSUE
================================================================ */
.issue-content { max-width: 680px; }

.issue-lead {
  font-size: 1.2rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.8;
}

.issue-problems {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  padding-left: 0;
}

.issue-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 1.05rem;
  font-weight: 700;
  border-left: 4px solid var(--navy);
  transition: transform var(--transition);
}

.issue-item:hover {
  transform: translateX(6px);
}

.issue-icon {
  color: var(--navy);
  font-size: 1.3rem;
  width: 30px;
  text-align: center;
}

.issue-body {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-top: 8px;
  margin-bottom: 0;
}

/* ================================================================
   SECTION 3 — ABOUT
================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.about-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), background var(--transition);
}

.about-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.10);
}

.about-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
}

.about-conclusion {
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240,122,34,.25);
}

.about-conclusion p {
  font-size: 1.25rem;
  color: rgba(255,255,255,.9);
  line-height: 1.9;
  font-weight: 500;
}

/* ================================================================
   SECTION 4 — FOUNDING
================================================================ */
.founding-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 680px;
}

.founding-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.benefit-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  transition: background var(--transition);
}

.benefit-item:hover {
  background: rgba(255,255,255,.09);
}

.benefit-num {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.6;
  line-height: 1;
  min-width: 52px;
}

.benefit-body h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.benefit-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* ================================================================
   SECTION 5 — IPO
================================================================ */
.ipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.ipo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ipo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ipo-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(240,122,34,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 18px;
}

.ipo-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.ipo-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.ipo-statement {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 28px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 8px;
}

.ipo-statement i { color: var(--orange); font-size: 1.2rem; }

/* ================================================================
   SECTION 6 — ROADMAP
================================================================ */
.roadmap-wrapper {
  overflow-x: auto;
  padding: 8px 16px 20px;  /* right buffer absorbs node-ipo scale + bar-ipo shadow */
  margin-bottom: 48px;
}

.roadmap-track {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 700px;
  padding: 20px 0;
}

.roadmap-step {
  flex: 1;
  display: flex;
  justify-content: center;
}

.roadmap-node {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  min-width: 110px;
  transition: transform var(--transition);
}

.roadmap-node:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.12);
}

.roadmap-year {
  display: block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}

.roadmap-value {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.5;
}

.roadmap-value strong {
  font-size: 1.15rem;
  color: var(--orange);
}

.node-ipo {
  background: rgba(240,122,34,.15);
  border-color: var(--orange);
  transform: scale(1.08);
  transform-origin: left center;
  margin-left: 8px;
}

.ipo-label {
  color: var(--orange) !important;
  font-size: 1rem !important;
}

.ipo-value strong {
  font-size: 1.3rem !important;
}

.roadmap-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,.2), rgba(255,255,255,.4));
  position: relative;
  flex-shrink: 0;
}

.roadmap-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(255,255,255,.4);
}

/* Bar chart (mobile-friendly alternative) */
.roadmap-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 200px;
  padding: 0 16px 8px;  /* right buffer absorbs bar-ipo box-shadow */
  border-bottom: 2px solid rgba(255,255,255,.1);
  margin-bottom: 40px;
}

.bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 8px;
}

.bar-fill {
  width: 100%;
  height: var(--h);
  background: rgba(255,255,255,.15);
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: height 1s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.bar-ipo .bar-fill {
  background: var(--orange);
  box-shadow: 0 0 14px rgba(240,122,34,.25);
}

.bar-label-top {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.bar-label-bottom {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}

/* ================================================================
   SECTION 7 — MODEL
================================================================ */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.model-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
}

.model-block-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.model-block-title i { color: var(--orange); }

.model-highlight-val {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 24px;
  line-height: 1.2;
}

.model-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.model-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.model-list li i {
  color: var(--orange);
  font-size: 0.85rem;
}

.model-revenue-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.revenue-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.revenue-dot {
  width: 10px;
  height: 10px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.dot-orange { background: var(--orange); }

.revenue-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.revenue-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin: 0;
}

/* ================================================================
   SECTION 8 — WHY NOW
================================================================ */
.why-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}

.why-card-num {
  font-family: var(--font-en);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.5;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
}

/* ================================================================
   SECTION 9 — FIT
================================================================ */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.fit-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
}

.fit-yes {
  border-top: 4px solid var(--navy);
}

.fit-no {
  border-top: 4px solid var(--gray-mid);
}

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

.fit-icon {
  font-size: 1.6rem;
  color: var(--navy);
}

.fit-icon.no { color: var(--gray-mid); }

.fit-col h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.fit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-mid);
}

.fit-list li i {
  color: var(--navy);
  margin-top: 3px;
  font-size: 0.9rem;
}

.no-list li i { color: var(--gray-mid); }

.fit-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gray-mid);
  background: var(--gray-100);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-self: center;
  margin-top: 100px;
  flex-shrink: 0;
}

/* ================================================================
   SECTION 10 — DISCOVERY SESSION
================================================================ */
.discovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.discovery-content-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.discovery-content-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.discovery-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.discovery-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,.8);
}

.discovery-list li i {
  color: var(--orange);
  font-size: 1rem;
}

.discovery-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,.75);
}

.detail-item i {
  color: var(--orange);
  width: 18px;
  text-align: center;
}

.discovery-cta-box {
  background: rgba(240,122,34,.04);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: sticky;
  top: 90px;
}

.cta-remaining-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: badgePulse 2.5s infinite;
}

.cta-remaining-badge i { color: var(--white); }
.cta-remaining-badge strong { font-size: 1.1rem; }

.cta-box-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta-main-btn {
  width: 100%;
  justify-content: center;
  line-height: 1.4;
  white-space: normal;
}

.cta-free-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
  margin-top: 14px;
}

/* ============= Discovery preview (video + topics grid) ============= */
.discovery-preview {
  margin-bottom: 56px;
}

.discovery-preview-lead {
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.discovery-video-wrap {
  max-width: 520px;
  margin: 0 auto 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 32px rgba(0,0,0,.35);
}

.discovery-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.discovery-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
}

.topic-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0,0,0,.2);
}

.topic-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.topic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================================================
   SECTION 11 — MESSAGE
================================================================ */
.message-box {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) 7fr;
  gap: 64px;
  align-items: start;
}

.message-photo-wrap {
  position: sticky;
  top: 100px;
}

.message-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-light);
  aspect-ratio: 4/5;
  box-shadow: 0 12px 32px rgba(31,48,68,.14);
}

.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.message-text-box {
  padding: 8px 0;
}

.message-quote-mark {
  font-size: 6rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 16px;
  font-family: var(--font-en);
}

.message-quote {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.55;
  border: none;
  margin-bottom: 32px;
  font-style: normal;
  letter-spacing: -0.01em;
}

.message-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(31,48,68,.12);
}

.author-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.author-title {
  font-size: 0.78rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
}

.message-body {
  color: var(--text-mid);
}

.message-body p {
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 18px;
}

.message-body p:last-child {
  margin-bottom: 0;
}

.message-body strong {
  color: var(--navy);
  font-weight: 700;
}

.message-subheading {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--navy);
  margin: 44px 0 22px;
  padding-left: 16px;
  border-left: 4px solid var(--orange);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.message-divider {
  border: none;
  height: 1px;
  background: rgba(31, 48, 68, 0.18);
  margin: 44px 0;
}

.message-divider + .message-subheading,
.message-divider + p {
  margin-top: 0;
}

.message-signature {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 48, 68, 0.18);
  text-align: right;
}

.message-signature .signature-line {
  margin: 0 0 4px;
  font-size: 0.92rem;
  color: rgba(31, 48, 68, 0.72);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.message-signature .signature-name {
  margin: 8px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text, #1f3044);
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .message-signature {
    margin-top: 32px;
    padding-top: 20px;
  }
  .message-signature .signature-line {
    font-size: 0.86rem;
  }
  .message-signature .signature-name {
    font-size: 1.05rem;
  }
}

/* ================================================================
   FINAL CTA SECTION
================================================================ */
.final-cta {
  text-align: center;
  padding: 120px 0;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,122,34,.15);
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 36px;
  animation: badgePulse 2.5s infinite;
}

.final-cta-badge i { color: var(--orange); }
.final-cta-badge strong { font-size: 1.1rem; }

.final-cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.final-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 48px;
}

.final-cta-btn {
  font-size: 1.15rem;
}

.final-cta-note {
  color: rgba(255,255,255,.4);
  font-size: 0.82rem;
  margin-top: 18px;
}

.final-divider {
  width: 80px;
  height: 2px;
  background: rgba(255,255,255,.1);
  margin: 44px auto 28px;
}

#discovery {
  padding-bottom: 56px;
}

.ef-logo-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.5;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--navy);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-inner {
  text-align: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,.3);
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,.18);
  line-height: 1.7;
}

/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   RESPONSIVE — TABLET
================================================================ */
@media (max-width: 900px) {
  .section { padding: 72px 0; }

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

  .fit-divider {
    margin: 8px auto;
    transform: rotate(90deg);
  }

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

  .discovery-cta-box {
    position: static;
  }

  .discovery-topics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .discovery-preview {
    margin-bottom: 40px;
  }

  .message-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .message-photo-wrap {
    position: static;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .message-photo {
    aspect-ratio: 4/5;
  }

  .message-author {
    justify-content: center;
    text-align: center;
  }

  .message-text-box {
    min-width: 0;
  }

  .roadmap-wrapper {
    display: none;
  }
}

/* ================================================================
   RESPONSIVE — MOBILE
================================================================ */
@media (max-width: 640px) {
  .section { padding: 60px 0; }

  .hero-headline   { font-size: 1.55rem; }
  .hero-sub        { font-size: 1rem; }
  .hero-desc       { font-size: 0.95rem; }
  .final-cta-title { font-size: 1.5rem; }
  .final-cta-sub   { font-size: 0.95rem; }

  .section-title { font-size: 1.5rem; margin-bottom: 36px; }

  /* Hero: center alignment for SP balance */
  .hero-content { text-align: center; }
  .hero-badge-row { justify-content: center; }
  .hero-remaining-box { padding: 18px 14px; }
  .remaining-slots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }
  .slot { width: 100%; height: 32px; }
  .remaining-note { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-cta-btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .about-conclusion { padding: 24px 16px; }
  .about-conclusion p { font-size: 1rem; line-height: 1.8; }

  .about-grid, .ipo-grid, .why-cards { grid-template-columns: 1fr; }

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

  .sticky-badge {
    top: auto;
    bottom: 16px;
    right: 16px;
    left: 16px;
    justify-content: center;
    border-radius: var(--radius-md);
  }

  .btn-xl {
    padding: 18px 24px;
    font-size: 1rem;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .btn-lg {
    padding: 16px 24px;
    font-size: 0.95rem;
  }


  .orange-quote.center { padding: 24px 20px; }
  .strong-quote { padding: 20px 20px; }

  .founding-benefits { gap: 14px; }
  .benefit-item { flex-direction: column; gap: 12px; padding: 20px; }
  .benefit-num { font-size: 1.8rem; }

  .discovery-content-box,
  .discovery-cta-box { padding: 24px 20px; }

  .message-quote-mark { font-size: 4rem; }
  .message-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    word-break: normal;
  }
  .message-body p {
    font-size: 0.95rem;
    line-height: 1.9;
    word-break: break-all;
  }
  .message-subheading {
    font-size: 1.15rem;
    margin: 32px 0 16px;
    word-break: normal;
  }

  .nav-remaining { display: none; }
}

@media (max-width: 400px) {
  .hero-headline   { font-size: 1.35rem; }
  .final-cta-title { font-size: 1.3rem; }
  .section-title   { font-size: 1.35rem; }
  .badge-label { display: none; }
}
