/* ========================================
   RASHINBAN LP — style.css
   黒ベース × オレンジアクセント × 羅針盤テーマ
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --black-mid: #1c1c1c;
  --border: rgba(200, 129, 26, 0.18);
  --border-light: rgba(200, 129, 26, 0.08);
  --orange: #C8811A;
  --orange-light: #e09530;
  --orange-glow: rgba(200, 129, 26, 0.15);
  --orange-pale: rgba(200, 129, 26, 0.07);
  --white: #ffffff;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-20: rgba(255, 255, 255, 0.2);
  --text: #e8e0d5;
  --text-muted: #9e9080;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-display: 'Cinzel', serif;
  --section-pad: 120px;
  --container: 1100px;
  --radius: 4px;
  --radius-lg: 12px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 700;
  color: var(--white);
}

em {
  font-style: normal;
  color: var(--orange-light);
}

/* ==============================
   強調テキスト ユーティリティ
   ============================== */

/* オレンジアンダーライン強調 */
.hl {
  position: relative;
  display: inline;
  color: var(--white);
  font-weight: 500;
}

.hl::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
}

/* オレンジ背景マーカー強調 */
.mk {
  background: linear-gradient(transparent 55%, rgba(200, 129, 26, 0.28) 55%);
  color: var(--white);
  font-weight: 500;
  padding-bottom: 1px;
}

/* 大字強調（キャッチ内の数字・実績など） */
.big-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: inline-block;
  margin-right: 4px;
}

.big-num-unit {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* プルクォート（大型引用ボックス）*/
.pull-quote {
  position: relative;
  padding: 40px 48px 40px 60px;
  margin: 48px 0;
  border-left: 3px solid var(--orange);
  background: linear-gradient(135deg, rgba(200, 129, 26, 0.06) 0%, rgba(200, 129, 26, 0.02) 100%);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
}

.pull-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 2;
  color: var(--white);
  margin: 0;
}

.pull-quote cite {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 16px;
  font-style: normal;
}

/* インライン強調バッジ */
.badge-inline {
  display: inline-block;
  background: rgba(200, 129, 26, 0.12);
  border: 1px solid rgba(200, 129, 26, 0.3);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 3px;
  margin: 0 2px;
  vertical-align: middle;
}

/* ==============================
   視線誘導デザイン
   ============================== */

/* セクション→セクション縦ライン誘導 */
.section-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: -20px auto 0;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.section-connector__line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), rgba(200, 129, 26, 0.1));
}

.section-connector__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(200, 129, 26, 0.6);
}

/* セクション内 水平区切りデコレーター */
.deco-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
}

.deco-rule::before,
.deco-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 129, 26, 0.25), transparent);
}

/* リード文（セクション冒頭の目を引く大きな1文）*/
.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--white-80);
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 2px solid rgba(200, 129, 26, 0.4);
}

/* ステップ矢印ガイド（読み進め促進）*/
.read-guide {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  color: var(--orange);
  opacity: 0.7;
  margin: 32px 0 0;
}

.read-guide svg {
  width: 20px;
  height: 20px;
  animation: bounceDown 1.8s ease-in-out infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* キーメッセージ（中央揃えの大型テキストブロック）*/
.key-message {
  text-align: center;
  padding: 56px 40px;
  margin: 60px 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 129, 26, 0.07), transparent 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.key-message p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 2;
  color: var(--white);
  margin: 0;
}

.key-message p+p {
  margin-top: 16px;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  color: var(--white-60);
  font-family: var(--font-sans);
}

/* 数値実績ハイライトバー */
.stat-bar {
  display: flex;
  gap: 0;
  margin: 48px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-bar__item {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--black-card);
  transition: background 0.3s;
}

.stat-bar__item:last-child {
  border-right: none;
}

.stat-bar__item:hover {
  background: rgba(200, 129, 26, 0.05);
}

.stat-bar__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-bar__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  line-height: 1.6;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--dark {
  background: var(--black-soft);
}

/* ---------- Typography Helpers ---------- */
.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--orange);
  margin-bottom: 16px;
  opacity: 0.9;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 40px;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 32px;
}

.section-lead {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--white-80);
  margin-bottom: 32px;
  max-width: 760px;
}

.section-text {
  font-size: 1rem;
  line-height: 2.1;
  color: var(--white-60);
  max-width: 760px;
  margin-bottom: 32px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: linear-gradient(135deg, var(--orange), #a06010);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1px solid rgba(200, 129, 26, 0.5);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 129, 26, 0.35);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-compass {
  width: 32px;
  height: 32px;
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--white);
}

.nav-cta {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--orange-glow);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 129, 26, 0.06) 0%, transparent 70%), var(--black);
  padding: 160px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* 星空 */
.star-field {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 35%, rgba(255, 255, 255, 0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 75%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 80%, rgba(255, 255, 255, 0.25) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 88%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 45%, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}

/* 海の水平線 */
.ocean-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: repeating-linear-gradient(to bottom,
      transparent,
      transparent 12px,
      rgba(200, 129, 26, 0.04) 12px,
      rgba(200, 129, 26, 0.04) 13px);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.compass-bg {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  pointer-events: none;
  transform-origin: center center;
}

.compass-giant {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--orange);
  margin-bottom: 40px;
}

.hero-eyebrow .line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--orange);
  opacity: 0.4;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-title em {
  color: var(--orange-light);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--white-60);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero-divider {
  width: 200px;
  margin: 32px 0;
}

.hero-divider svg {
  width: 100%;
}


/* YouTube 埋め込みのデザイン */
.hero-video-container {
  width: 100%;
  max-width: 820px;
  margin: 48px 0;
  position: relative;
  z-index: 5;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
  /* 境界をぼかすマスク処理 */
  mask-image: radial-gradient(circle, black 65%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, black 65%, transparent 100%);
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.9) contrast(1.1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: radial-gradient(circle, transparent 40%, rgba(10, 10, 10, 0.3) 100%);
}

@media (max-width: 768px) {
  .hero-video-container {
    max-width: 100%;
    margin: 32px 0;
  }
}

.hero-body {
  font-size: 1rem;
  line-height: 2.15;
  color: var(--white-70, rgba(255, 255, 255, 0.7));
  margin-bottom: 32px;
}

.hero-body--light {
  color: var(--white-60);
}

.hero-quote {
  border-left: 2px solid var(--orange);
  padding: 20px 0 20px 28px;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--white);
  margin: 36px 0;
  background: linear-gradient(90deg, rgba(200, 129, 26, 0.05), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hero-community-name {
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 2;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero-rashinban {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--orange-light);
  margin-top: 8px;
}

.hero-btn {
  font-size: 0.9rem;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--white-40);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ---------- Pain Section ---------- */
.pain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 48px 0;
}

.hero-slider-track {
  display: flex;
  width: calc(450px * 4);
  /* 画像幅 * 枚数（実質2枚×2セット） */
  animation: scrollSlide 40s linear infinite;
}

.hero-slide {
  width: 450px;
  flex-shrink: 0;
  padding: 0 10px;
}

.hero-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
  background: var(--black-mid);
}

/* 1枚の画像（上下2段）から特定のシーンを抽出 */
.hero-slide:nth-child(2n+1) img {
  object-position: center top;
  /* 上段：合宿の様子 */
}

.hero-slide:nth-child(2n) img {
  object-position: center bottom;
  /* 下段：事例検討会の様子 */
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}

.pain-item:hover {
  border-color: rgba(200, 129, 26, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(200, 129, 26, 0.08);
}

.pain-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.6;
}

.pain-item p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--white-60);
}

.pain-conclusion {
  font-size: 1.15rem;
  color: var(--white);
  text-align: center;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--orange-pale);
  margin-bottom: 48px;
}

/* Direction Cards */
.direction-cards {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.direction-card {
  flex: 1;
  min-width: 260px;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid;
}

.direction-card--good {
  border-color: rgba(200, 129, 26, 0.4);
  background: linear-gradient(135deg, rgba(200, 129, 26, 0.06), transparent);
}

.direction-card--bad {
  border-color: rgba(100, 80, 60, 0.3);
  background: rgba(0, 0, 0, 0.3);
}

.direction-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.direction-badge--good {
  background: rgba(200, 129, 26, 0.15);
  color: var(--orange);
  border: 1px solid rgba(200, 129, 26, 0.3);
}

.direction-badge--bad {
  background: rgba(80, 70, 60, 0.2);
  color: var(--text-muted);
  border: 1px solid rgba(80, 70, 60, 0.3);
}

.direction-icon {
  margin-bottom: 20px;
}

.direction-icon svg {
  width: 80px;
  height: 80px;
}

.direction-icon--bad svg {
  opacity: 0.5;
}

.direction-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.direction-card--bad h3 {
  color: var(--white-60);
}

.direction-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--white-60);
}

.direction-vs {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--orange);
  opacity: 0.5;
  flex-shrink: 0;
}

.pain-last {
  text-align: center;
}

/* ---------- Story Section ---------- */
.story-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.story-image-placeholder {
  position: sticky;
  top: 100px;
}

.placeholder-box {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--black-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.placeholder-box svg {
  width: 64px;
  height: 64px;
}

.story-text p {
  font-size: 1rem;
  line-height: 2.15;
  color: var(--white-60);
  margin-bottom: 24px;
}

.story-highlight {
  font-family: var(--font-serif);
  font-size: 1.1rem !important;
  color: var(--white) !important;
  padding: 24px 28px;
  border-left: 2px solid var(--orange);
  background: var(--orange-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 2 !important;
}

/* ---------- About / Futures ---------- */
.about-description {
  max-width: 760px;
  margin-bottom: 40px;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 2.1;
  color: var(--white-70, rgba(255, 255, 255, 0.7));
}

.futures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.future-card {
  padding: 40px 32px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.future-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.future-card:hover::before {
  opacity: 1;
}

.future-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 129, 26, 0.1);
  border-color: rgba(200, 129, 26, 0.35);
}

.future-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200, 129, 26, 0.08);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.future-icon {
  margin-bottom: 24px;
}

.future-icon svg {
  width: 60px;
  height: 60px;
}

.future-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.5;
}

.future-card p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--white-60);
}

/* ---------- Interview Section ---------- */
.interview-questions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin: 48px 0;
}

.interview-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.interview-question:hover {
  border-color: rgba(200, 129, 26, 0.4);
  background: rgba(200, 129, 26, 0.04);
}

.q-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(200, 129, 26, 0.1);
  border: 1px solid rgba(200, 129, 26, 0.25);
  padding: 6px 10px;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
}

.interview-question p {
  font-size: 0.92rem;
  color: var(--white-80);
  line-height: 1.7;
}

.interview-note {
  padding: 48px;
  background: linear-gradient(135deg, rgba(200, 129, 26, 0.05), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.interview-note p {
  font-size: 1rem;
  line-height: 2.1;
  color: var(--white-60);
  margin-bottom: 20px;
}

.interview-sequence {
  font-family: var(--font-serif);
  font-size: 1.1rem !important;
  color: var(--white) !important;
  text-align: center;
  padding: 24px;
  background: rgba(200, 129, 26, 0.06);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  line-height: 2.2 !important;
}

/* ---------- Voices Section ---------- */
.voice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.voice-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
}

.voice-card:hover {
  border-color: rgba(200, 129, 26, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.voice-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
}

.voice-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--black-mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder svg {
  width: 40px;
  height: 40px;
}

.voice-meta h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.voice-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.voice-body {
  padding: 24px 32px;
}

.voice-qa {
  margin-bottom: 20px;
}

.voice-q {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 8px;
  font-weight: 500;
}

.voice-a {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--white-60);
}

.voice-result {
  padding: 16px 32px;
  background: linear-gradient(90deg, rgba(200, 129, 26, 0.1), transparent);
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-result span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ---------- Target Section ---------- */
.target-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}

.target-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  align-self: stretch;
  min-height: 300px;
}

.target-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 32px;
}

.target-list {
  list-style: none;
}

.target-list li {
  font-size: 0.92rem;
  line-height: 1.8;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  color: var(--white-60);
}

.target-list--yes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
}

.target-list--no li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: 13px;
  color: rgba(120, 90, 70, 0.6);
  font-size: 0.9rem;
}

/* ---------- Selection Section ---------- */
.selection-content {
  max-width: 760px;
}

.selection-content p {
  font-size: 1rem;
  line-height: 2.1;
  color: var(--white-60);
  margin-bottom: 24px;
}

.selection-criteria {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 36px 0;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.criteria-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
  width: 32px;
}

.criteria-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
}

.selection-note {
  color: var(--white-60);
  font-size: 0.95rem;
  line-height: 2;
}

.selection-quote {
  margin-top: 40px;
  border-left: 2px solid var(--orange);
  padding: 20px 28px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: normal;
  color: var(--white-80);
  background: var(--orange-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 2;
}

.selection-quote span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: var(--font-sans);
}

/* ---------- Flow Section ---------- */
.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 48px 0;
  max-width: 640px;
}

.flow-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 32px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  transition: all 0.3s;
}

.flow-step:hover {
  border-color: rgba(200, 129, 26, 0.4);
}

.flow-step--last {
  border-color: rgba(200, 129, 26, 0.35);
  background: rgba(200, 129, 26, 0.05);
}

.flow-arrow {
  width: 24px;
  height: 40px;
  margin-left: 52px;
  opacity: 0.6;
}

.flow-arrow svg {
  width: 24px;
  height: 40px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  min-width: 48px;
  line-height: 1;
  margin-top: 4px;
}

.step-content h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.step-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.step-content p:last-child {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--white-60);
}

.flow-info {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.flow-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flow-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  font-family: var(--font-display);
}

.flow-info-value {
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-serif);
}

/* ---------- Profile Section ---------- */
.profile-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.profile-image-area {
  position: sticky;
  top: 100px;
}

.profile-placeholder {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--black-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.profile-placeholder svg {
  width: 80px;
  height: 80px;
}

.profile-name-block {
  margin-bottom: 32px;
}

.profile-org {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.profile-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin: 8px 0 4px;
}

.profile-en {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--orange);
}

.profile-body p {
  font-size: 0.95rem;
  line-height: 2.15;
  color: var(--white-60);
  margin-bottom: 20px;
}

/* ---------- CTA Section ---------- */
.cta {
  background: radial-gradient(ellipse at 50% 100%, rgba(200, 129, 26, 0.08), transparent 60%), var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-compass {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.6;
}

.cta-compass svg {
  width: 100%;
  height: 100%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 40px;
}

.cta-body {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--white-60);
  max-width: 680px;
  margin: 0 auto 32px;
}

.cta-body em {
  color: var(--orange-light);
  display: block;
  margin: 8px 0;
}

.cta-closing {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white-80);
  line-height: 2;
  margin-bottom: 60px;
}

/* Google Form Placeholder */
.form-placeholder {
  max-width: 760px;
  margin: 0 auto 48px;
  border: 1px dashed rgba(200, 129, 26, 0.3);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  background: rgba(200, 129, 26, 0.03);
}

.form-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.form-placeholder p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-hint {
  font-size: 0.78rem !important;
  color: rgba(120, 100, 80, 0.6) !important;
  font-family: monospace;
  word-break: break-all;
}

.btn-cta {
  font-size: 1rem;
  padding: 22px 56px;
  box-shadow: 0 4px 40px rgba(200, 129, 26, 0.25);
}

/* ---------- Footer ---------- */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--black-soft);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--white);
}

.footer-logo svg {
  width: 28px;
  height: 28px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(100, 85, 70, 0.6);
}

/* ---------- Scroll Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.pain-item[data-delay="100"] {
  transition-delay: 0.1s;
}

.pain-item[data-delay="200"] {
  transition-delay: 0.2s;
}

.pain-item[data-delay="300"] {
  transition-delay: 0.3s;
}

.pain-item[data-delay="400"] {
  transition-delay: 0.4s;
}

.interview-question[data-delay="80"] {
  transition-delay: 0.08s;
}

.interview-question[data-delay="160"] {
  transition-delay: 0.16s;
}

.interview-question[data-delay="240"] {
  transition-delay: 0.24s;
}

.interview-question[data-delay="320"] {
  transition-delay: 0.32s;
}

.interview-question[data-delay="400"] {
  transition-delay: 0.40s;
}

.interview-question[data-delay="480"] {
  transition-delay: 0.48s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .compass-bg {
    right: -200px;
    width: 500px;
    height: 500px;
  }

  .futures-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .target-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .compass-bg {
    display: none;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-image-placeholder {
    position: relative;
    top: auto;
    max-width: 240px;
  }

  .futures-grid {
    grid-template-columns: 1fr;
  }

  .voice-cards {
    grid-template-columns: 1fr;
  }

  .profile-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .profile-image-area {
    position: relative;
    top: auto;
    max-width: 220px;
  }

  .direction-cards {
    flex-direction: column;
  }

  .direction-vs {
    text-align: center;
    width: 100%;
  }

  .interview-questions {
    grid-template-columns: 1fr;
  }

  .interview-note {
    padding: 28px;
  }

  .hero-quote {
    padding: 16px 0 16px 20px;
  }

  .btn-cta {
    padding: 18px 32px;
    font-size: 0.88rem;
  }

  .flow-info {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .pain-list {
    grid-template-columns: 1fr;
  }

  /* drift-layout モバイル対応 */
  .drift-layout {
    flex-direction: column;
    gap: 40px;
  }

  .drift-visual {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .drift-texts {
    padding-left: 16px;
  }

  .drift-item::before {
    display: none;
  }

  .future-card {
    padding: 28px 24px;
  }
}

/* ==========================================
   Drift Layout — 方角がズレていくビジュアル
   ========================================== */

.drift-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 48px 0;
}

/* 左カラム：SVGビジュアル */
.drift-visual {
  position: relative;
  flex-shrink: 0;
  width: 360px;
  max-width: 360px;
}

.drift-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(200, 129, 26, 0.06));
}

.drift-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 129, 26, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* 右カラム：テキストリスト */
.drift-texts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* 縦の連結ライン */
.drift-texts::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom,
      transparent,
      rgba(200, 129, 26, 0.25) 15%,
      rgba(200, 129, 26, 0.25) 85%,
      transparent);
}

.drift-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0 20px 0;
  position: relative;
  border-bottom: 1px solid rgba(200, 129, 26, 0.06);
  transition: all 0.3s ease;
}

.drift-item:last-child {
  border-bottom: none;
}

.drift-item:hover .drift-content {
  transform: translateX(4px);
}

/* ドット（縦ライン上） */
.drift-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid rgba(200, 129, 26, 0.3);
  box-shadow: 0 0 8px rgba(200, 129, 26, 0.3);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.drift-content {
  display: flex;
  align-items: baseline;
  gap: 16px;
  transition: transform 0.3s ease;
  padding-left: 12px;
}

.drift-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--orange);
  opacity: 0.6;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 2px;
}

.drift-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--white-80);
  margin: 0;
}

.drift-content p strong {
  color: var(--white);
  font-weight: 600;
}

/* スクロールアニメーション対応 */
.drift-item.fade-in {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.drift-item.fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   Spiral UI — 船が円を描いている俯瞰図
   ========================================== */

.spiral-ui {
  display: flex;
  gap: 0;
  margin: 48px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200, 129, 26, 0.2);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4), inset 0 0 60px rgba(0, 0, 0, 0.2);
  background: #0e0e0e;
}

/* 左：ビジュアルエリア */
.spiral-visual {
  position: relative;
  flex-shrink: 0;
  width: 360px;
  background: #080c08;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(200, 129, 26, 0.15);
  padding: 20px;
  overflow: hidden;
}

.spiral-svg {
  width: 100%;
  max-width: 280px;
  display: block;
}

@keyframes orbitSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.spiral-animation-group {
  transform-origin: 200px 200px;
  animation: orbitSpin 8s linear infinite;
}

@keyframes pulseTrack {

  0%,
  100% {
    stroke-opacity: 0.2;
  }

  50% {
    stroke-opacity: 0.6;
  }
}

.spiral-track {
  animation: pulseTrack 4s ease-in-out infinite;
}

.spiral-caption {
  margin-top: 24px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--orange);
  background: rgba(200, 129, 26, 0.1);
  border: 1px solid rgba(200, 129, 26, 0.2);
  border-radius: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: floatCaption 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes floatCaption {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* 右：ナビパネル */
.spiral-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spiral-alert-header {
  padding: 20px 24px;
  font-size: 1rem;
  color: var(--orange);
  font-weight: bold;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(200, 129, 26, 0.08);
}

.spiral-alerts {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.spiral-alert {
  display: flex;
  align-items: flex-start;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
  border-left: 2px solid transparent;
}

.spiral-alert:hover {
  background: rgba(200, 129, 26, 0.06);
  border-left: 2px solid var(--orange);
}

.spiral-alert-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white-80);
}

.spiral-alert-text strong {
  color: var(--white);
  font-weight: 600;
  display: inline-block;
  margin-top: 2px;
}

.spiral-restart-hint {
  padding: 16px 20px;
  border-top: 1px solid rgba(200, 129, 26, 0.12);
  font-size: 0.75rem;
  color: rgba(200, 129, 26, 0.6);
  background: rgba(200, 129, 26, 0.03);
}

.spiral-restart-hint em {
  font-style: italic;
  color: rgba(200, 129, 26, 0.8);
}

/* fade-in API */
.spiral-alert.fade-in {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.spiral-alert.fade-in.visible {
  opacity: 1;
  transform: translateX(0);
}

/* モバイル対応 */
/* ==========================================
   Success Path — 成功ルートのアニメーション
   ========================================== */

.success-visual {
  width: 100%;
  padding: 20px 0;
  background: rgba(200, 129, 26, 0.03);
  border-radius: 8px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(200, 129, 26, 0.1);
}

.success-path-svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

.milestone-labels text {
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
}

.success-ship polygon {
  filter: drop-shadow(0 0 4px rgba(232, 161, 58, 0.4));
}

/* 比較図カードの共通調整 */
.direction-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.direction-icon {
  width: 100%;
  min-height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.direction-icon svg {
  max-width: 280px;
  width: 100%;
}

@media (max-width: 768px) {
  .spiral-ui {
    flex-direction: column;
  }

  .spiral-visual {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(200, 129, 26, 0.15);
    padding: 30px 20px;
  }

  .spiral-svg {
    max-width: 220px;
  }
}