/* ==========================================================
   PREMIUM NAVY × GOLD デザイン
   ネイビー × ゴールド × Zen Maru Gothic / 高級感・力強さ
   ========================================================== */

:root{
  --navy: #0B1628;
  --navy-deep: #060D1A;
  --navy-mid: #16264A;
  --gold: #D4AF37;
  --gold-bright: #F2D171;
  --gold-deep: #A9812A;
  --ink: #EFE9D8;
  --ink-soft: #B9C0CE;
  --white: #FFFFFF;
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.18);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.45);
  --radius-card: 20px;
  --font-main: 'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
  --font-accent: 'Oswald', 'Zen Kaku Gothic New', sans-serif;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--font-main);
  background: var(--navy);
  color: var(--ink);
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- headings & shared ---------- */
.section{
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: var(--navy);
}
.section:nth-of-type(even){ background: var(--navy-deep); }

.section-title{
  font-family: var(--font-accent);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 600;
  text-align: center;
  margin: 0 0 40px;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-lead{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--ink-soft);
  font-size: 16px;
}

.eyebrow{
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.eyebrow-center{ text-align:center; }

/* ---------- reveal animation ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- decorative gold glow (replaces blobs) ---------- */
.blob{
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
}
.blob-1{
  width: 420px; height: 420px;
  top: -140px; left: -160px;
  background: var(--gold);
}
.blob-2{
  width: 320px; height: 320px;
  bottom: -120px; right: -120px;
  background: var(--gold);
  opacity: 0.12;
}
.blob-3{
  width: 380px; height: 380px;
  top: -80px; right: -180px;
  background: var(--gold);
  opacity: 0.14;
}
.blob-4{
  width: 460px; height: 460px;
  bottom: -200px; left: -180px;
  background: var(--gold);
  opacity: 0.14;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: none;
}
.btn-primary{
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--navy-deep);
  padding: 18px 36px;
  font-size: 17px;
  box-shadow: 0 12px 34px rgba(212, 175, 55, 0.4);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(212, 175, 55, 0.55);
}
.btn-cta{ width: fit-content; margin: 0 auto; }
.btn-cta-large{ padding: 22px 48px; font-size: 19px; }

.cta-center{
  display:flex;
  justify-content:center;
  margin-top: 48px;
}

.cta-note{
  text-align:center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 14px;
}

.btn-header{
  padding: 10px 22px;
  font-size: 14px;
  box-shadow: none;
}

/* ---------- header ---------- */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background: rgba(6, 13, 26, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.header-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 24px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.header-logo{
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.header-logo span{ color: var(--gold-bright); }

/* ---------- hero ---------- */
.hero{
  position: relative;
  padding: 150px 0 90px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.hero-inner{
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-title{
  font-family: var(--font-accent);
  font-size: clamp(32px, 6.5vw, 56px);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 24px;
  color: var(--white);
  text-shadow: 0 0 30px rgba(212,175,55,0.3);
  letter-spacing: 0.02em;
}
.hero-sub{
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--ink-soft);
  margin: 0 0 40px;
}

.event-badge{
  background: linear-gradient(180deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-gold);
  padding: 28px 24px;
  margin-bottom: 36px;
}
.badge-row{ margin-bottom: 16px; }
.badge-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
}
.badge-text{ line-height: 1.6; }
.badge-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  text-align: left;
}
.badge-item{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.badge-item i{ color: var(--gold); width: 18px; text-align:center; }

.benefit-list{
  list-style:none;
  padding:0;
  margin: 0 0 40px;
  text-align:left;
  display:inline-block;
}
.benefit-list li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--ink);
}
.benefit-list i{
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 50%;
  width: 22px; height: 22px;
  min-width: 22px;
  display:flex; align-items:center; justify-content:center;
  font-size: 11px;
  margin-top: 2px;
}

@media (max-width: 560px){
  .badge-grid{ grid-template-columns: 1fr; }
}

/* ---------- empathy section ---------- */
.empathy-lines{
  max-width: 560px;
  margin: 0 auto 36px;
  text-align:center;
}
.empathy-lines p{
  font-size: 17px;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 500;
}

.voice-quote{
  max-width: 620px;
  margin: 0 auto 36px;
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-card);
  padding: 32px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  border-left: 4px solid var(--gold);
}
.voice-quote p{
  margin:0 0 14px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.85;
}
.voice-quote cite{
  font-style:normal;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
}

.empathy-share{
  text-align:center;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 8px;
}
.empathy-turn{
  text-align:center;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0;
}

/* ---------- why section ---------- */
.layer-diagram{
  max-width: 420px;
  margin: 0 auto 24px;
}
.layer-item{
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 16px 24px;
  margin-bottom: 10px;
  text-align:center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  position: relative;
  color: var(--ink);
}
.layer-label{ font-weight: 700; font-size: 15px; }
.layer-touched{
  background: rgba(212,175,55,0.1);
  border: 2px dashed var(--gold);
}
.layer-tag{
  display:block;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 4px;
}
.layer-caption{
  max-width: 560px;
  margin: 0 auto 32px;
  text-align:center;
  color: var(--ink-soft);
  font-size: 15px;
}

.analogy-box{
  max-width: 560px;
  margin: 0 auto 32px;
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-card);
  padding: 26px 28px;
  text-align:center;
  box-shadow: var(--shadow-soft);
}
.analogy-box i{
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 12px;
}
.analogy-box p{ margin:0; font-size: 15px; color: var(--ink); }

.section-conclusion{
  text-align:center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  max-width: 560px;
  margin: 0 auto;
}
.section-conclusion strong{ color: var(--gold-bright); }

/* ---------- content grid (④) ---------- */
.content-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.content-card{
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  text-align:center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.content-card:hover{
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-4px);
}
.content-icon{
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-size: 24px;
  margin: 0 auto 18px;
}
.content-card h3{
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  color: var(--white);
}
.content-card p{
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}
.content-image{
  margin-top: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.25);
}

/* ---------- matrix visual (④ 緊急度×重要度マトリクス + 大きな×) ---------- */
.content-card-matrix{
  position: relative;
}
.matrix-visual{
  position: relative;
  margin: 22px auto 0;
  max-width: 300px;
  padding: 14px 14px 14px 40px;
}
.matrix-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 1;
}
.matrix-quad{
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 10px;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 6px;
  padding: 6px;
  text-align:center;
}
.matrix-quad i{
  color: var(--gold);
  font-size: 16px;
}
.matrix-quad span{
  font-size: 10px;
  color: var(--ink-soft);
  line-height: 1.3;
  font-weight: 500;
}
.matrix-axis{
  position: absolute;
  font-family: var(--font-accent);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
}
.matrix-axis-x{
  bottom: -6px;
  right: 14px;
}
.matrix-axis-y{
  top: 50%;
  left: -6px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
}
.matrix-cross{
  position: absolute;
  top: 14px; left: 40px; right: 14px; bottom: 14px;
  z-index: 2;
  pointer-events: none;
}
.matrix-cross-line{
  position: absolute;
  top: 50%; left: 50%;
  width: 138%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold-bright) 12%, var(--gold-bright) 88%, transparent);
  box-shadow: 0 0 14px rgba(242, 209, 113, 0.7);
  border-radius: 4px;
}
.matrix-cross-line-1{
  transform: translate(-50%, -50%) rotate(45deg);
}
.matrix-cross-line-2{
  transform: translate(-50%, -50%) rotate(-45deg);
}
.matrix-caption{
  margin-top: 16px !important;
  font-weight: 700;
  color: var(--gold-bright) !important;
  font-size: 13.5px !important;
}

@media (max-width: 420px){
  .matrix-visual{ max-width: 240px; padding-left: 32px; }
  .matrix-quad span{ font-size: 9px; }
}
.content-note{
  text-align:center;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
}
.content-note i{ margin-right: 8px; }

@media (max-width: 700px){
  .content-grid{ grid-template-columns: 1fr; }
}

/* ---------- challenge (⑤) ---------- */
.v-shape{
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto 48px;
  text-align:center;
}
.v-step{
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 24px 18px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: 15px;
  flex:1;
  color: var(--ink);
}
.v-step-bottom{
  margin-top: 40px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--navy-deep);
  border: none;
}
.v-num{
  display:block;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--gold);
}
.v-step-bottom .v-num{ color: var(--navy-deep); }

.challenge-features{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.feature-item{
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-card);
  padding: 28px 22px;
  text-align:center;
  box-shadow: var(--shadow-soft);
}
.feature-item i{
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 14px;
}
.feature-item p{ margin:0; font-size: 14px; color: var(--ink); }
.feature-item strong{ color: var(--gold-bright); }

.challenge-teaser{
  text-align:center;
  font-weight: 700;
  color: var(--gold);
  font-size: 16px;
}

@media (max-width: 700px){
  .challenge-features{ grid-template-columns: 1fr; }
  .feature-item{ text-align: left; }
  .feature-item i{ display:block; text-align:center; }
  .v-shape{ flex-direction: column; align-items:stretch; }
  .v-step-bottom{ margin-top: 0; }
}

/* ---------- evidence (⑥) ---------- */
.evidence-box{
  background: linear-gradient(180deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius-card);
  padding: 40px 30px;
  box-shadow: var(--shadow-gold);
  margin-bottom: 40px;
}
.evidence-stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.stat{
  text-align:center;
}
.stat-num{
  font-family: var(--font-accent);
  display:block;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 600;
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(212,175,55,0.3);
  letter-spacing: 0.02em;
}
.stat-num small{ font-size: 14px; font-weight: 700; }
.stat-label{
  display:block;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
}
.evidence-note{
  text-align:center;
  font-size: 14px;
  color: var(--ink-soft);
  margin:0;
}

@media (max-width: 700px){
  .evidence-stats{ grid-template-columns: repeat(2, 1fr); }
}

.theme-flow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  color: var(--gold);
}
.theme-tag{
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}
.theme-tag-active{
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--navy-deep);
  border: none;
}

.change-pattern{
  display:flex;
  justify-content:center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pattern-step{
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  display:flex; align-items:center; gap: 8px;
  color: var(--ink);
}
.pattern-num{
  background: var(--gold);
  color: var(--navy-deep);
  width: 22px; height: 22px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 12px;
  font-weight: 900;
}
.evidence-closing{
  text-align:center;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 700;
  color: var(--white);
}

/* ---------- voices (⑦) ---------- */
.voice-group{ margin-bottom: 56px; }
.voice-group-title{
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  display:flex;
  align-items:center;
  gap: 14px;
}
.voice-group-title span{
  font-family: var(--font-accent);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--navy-deep);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}
.voice-group-title-center{
  justify-content:center;
  text-align:center;
}

.voice-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.voice-card{
  background: var(--navy-mid);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  border-top: 3px solid var(--gold-deep);
  border-left: 1px solid rgba(212,175,55,0.15);
  border-right: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.voice-card-highlight{
  border-top: 3px solid var(--gold-bright);
  background: linear-gradient(180deg, #1A2C4A, var(--navy-mid));
  box-shadow: 0 8px 28px rgba(212,175,55,0.15);
}
.voice-text{
  font-size: 14.5px;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.8;
}
.voice-name{
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin:0;
}
.voice-name span{
  font-weight: 400;
  color: var(--ink-soft);
}

@media (max-width: 900px){
  .voice-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .voice-grid{ grid-template-columns: 1fr; }
}

.voice-montage{ margin: 48px 0 24px; }
.montage-grid{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content:center;
}
.montage-card{
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--ink);
  font-size: 13px;
  padding: 12px 18px;
  border-radius: 16px;
  display:flex;
  flex-direction: column;
  gap: 4px;
  max-width: 260px;
}
.montage-card em{
  font-style: normal;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  align-self: flex-end;
}

.voice-source{
  text-align:center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 32px;
}

/* ---------- for-you (⑧) ---------- */
.foryou-list{
  list-style:none;
  padding:0;
  margin: 0 auto 40px;
  max-width: 480px;
  display:grid;
  gap: 14px;
}
.foryou-list li{
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display:flex;
  align-items:center;
  gap: 14px;
  color: var(--ink);
}
.foryou-list i{ color: var(--gold); }

.foryou-honest{
  text-align:center;
  max-width: 460px;
  margin: 0 auto;
}
.foryou-honest p{ margin: 0 0 8px; font-size: 15px; color: var(--ink-soft); }
.foryou-answer{
  font-weight: 700;
  color: var(--gold-bright) !important;
  font-size: 17px !important;
}

/* ---------- organizer (⑨) ---------- */
.organizer-card{
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-gold);
  display:flex;
  gap: 32px;
  align-items:center;
}
.organizer-avatar{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.3), 0 8px 24px rgba(0,0,0,0.4);
}
.organizer-text p{ margin: 0 0 14px; font-size: 14.5px; color: var(--ink); }
.organizer-text strong{ color: var(--gold-bright); font-weight: 700; }
.organizer-note{
  font-weight: 700;
  color: var(--gold-bright) !important;
}

@media (max-width: 640px){
  .organizer-card{ flex-direction: column; text-align:left; padding: 32px 24px; }
  .organizer-avatar{ align-self:center; }
}

/* ---------- overview (⑩) ---------- */
.overview-table{
  max-width: 560px;
  margin: 0 auto 24px;
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.overview-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  gap: 20px;
}
.overview-row:last-child{ border-bottom:none; }
.overview-label{
  font-weight: 700;
  color: var(--gold);
  font-size: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  white-space: nowrap;
}
.overview-value{
  font-size: 14.5px;
  color: var(--ink);
  text-align: right;
}
.overview-note{
  text-align:center;
  color: var(--ink-soft);
  font-size: 14px;
}

/* ---------- apply (⑪) ---------- */
.section-apply{
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212,175,55,0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  text-align:center;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.apply-title{
  font-family: var(--font-accent);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.apply-reframe{
  max-width: 520px;
  margin: 0 auto 44px;
  color: var(--ink-soft);
  font-size: 15px;
}

.apply-steps{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.apply-step{
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  max-width: 200px;
  color: var(--ink);
}
.apply-step-num{
  display:block;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--navy-deep);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 10px;
  font-size: 13px;
  font-weight: 900;
}
.apply-arrow{ color: var(--gold); }

@media (max-width: 640px){
  .apply-steps{ flex-direction: column; }
  .apply-arrow{ transform: rotate(90deg); }
}

/* ---------- FAQ (⑫) ---------- */
.faq-list{
  max-width: 680px;
  margin: 0 auto;
  display:grid;
  gap: 14px;
}
.faq-item{
  background: var(--navy-mid);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  overflow:hidden;
}
.faq-question{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding: 22px 26px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
}
.faq-question i{
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] i{
  transform: rotate(180deg);
}
.faq-answer{
  max-height: 0;
  overflow:hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
}
.faq-answer p{
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--ink-soft);
}
.faq-item.is-open{
  border-color: rgba(212,175,55,0.5);
}
.faq-item.is-open .faq-answer{
  max-height: 400px;
}

/* ---------- postscript (⑬) ---------- */
.ps-block{
  max-width: 620px;
  margin: 0 auto 32px;
}
.ps-label{
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}
.ps-block p:not(.ps-label){
  font-size: 15px;
  color: var(--ink);
  margin: 0;
}

/* ---------- footer ---------- */
.site-footer{
  text-align:center;
  padding: 48px 24px 100px;
  color: var(--ink-soft);
  font-size: 13px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(212,175,55,0.15);
}
.footer-small{ margin-top: 8px; opacity: 0.7; }

/* ---------- sticky CTA (mobile) ---------- */
.sticky-cta{
  position: fixed;
  bottom: 0; left:0; right:0;
  z-index: 90;
  background: rgba(6,13,26,0.95);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.4);
  border-top: 1px solid rgba(212,175,55,0.3);
  display: none;
}
.btn-cta-sticky{
  width: 100%;
  justify-content:center;
  padding: 16px;
  font-size: 15px;
}
@media (max-width: 780px){
  .sticky-cta{ display:block; }
  body{ padding-bottom: 78px; }
}

/* ---------- responsive tweaks ---------- */
@media (max-width: 780px){
  .section{ padding: 64px 0; }
  .hero{ padding: 120px 0 60px; }
}
