/* ══════════════════════════════════════════════
   STELLA US — Design System v3.0
   Strategic Revision — Full Industrial Platform
══════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background-color: #F7F7F7;
  color: #1C1C1C;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── Variables ────────────────────────────── */
:root {
  --burgundy:      #6B1F2A;
  --burgundy-hover:#842837;
  --dark:          #1C1C1C;
  --dark-2:        #111111;
  --steel:         #6E6E73;
  --soft-white:    #F7F7F7;
  --oat:           #F2EDE8;
  --white:         #FFFFFF;
  --silver:        #B8B8B8;
  --section-pad:   120px;
  --container-max: 1280px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Container & Section ──────────────────── */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--section-pad) 0; }
.dark-section { background-color: #1a1a1a; }

/* ─── Typography ───────────────────────────── */
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-eyebrow::before {
  content: ''; display: inline-block;
  width: 32px; height: 2px;
  background: var(--burgundy); flex-shrink: 0;
}
.section-eyebrow.light { color: rgba(184,184,184,0.95); }
.section-eyebrow.light::before { background: var(--burgundy); }

.section-title {
  font-size: 2.25rem; font-weight: 700;
  color: var(--dark); line-height: 1.2; margin-bottom: 1.25rem;
}
.section-title.light { color: #ffffff; }

.section-desc { font-size: 1rem; color: var(--steel); max-width: 680px; line-height: 1.75; }
.section-desc.light { color: rgba(210,210,215,0.9); }

.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-eyebrow { justify-content: center; }
.section-header.centered .section-eyebrow::before { display: none; }
.section-header.centered .section-desc { margin: 0 auto; }

.body-text { font-size: 1rem; color: var(--steel); line-height: 1.8; margin-bottom: 1.25rem; }
.what-key-statement {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--dark);
  border-left: 3px solid var(--burgundy);
  padding-left: 1rem;
  line-height: 1.7;
}
.body-text.light-text { color: rgba(200,200,205,0.9); }

/* ─── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em; border-radius: 2px;
  transition: all var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--burgundy); color: var(--white); }
.btn-primary:hover { background: var(--burgundy-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,31,42,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--dark); border: 1.5px solid rgba(28,28,28,0.35); }
.btn-outline-light:hover { border-color: var(--dark); background: rgba(28,28,28,0.05); transform: translateY(-2px); }
.btn-large { padding: 1rem 2.5rem; font-size: 0.95rem; }

/* ─── Two-Col ──────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 48px; } }

/* ─── Utility ──────────────────────────────── */
.what-list { display: flex; flex-direction: column; gap: 0.9rem; }
.what-list li { display: flex; align-items: center; gap: 0.85rem; font-size: 0.95rem; color: var(--dark); font-weight: 500; }
.list-dot { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--burgundy); flex-shrink: 0; }

::selection { background: var(--burgundy); color: var(--white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 3px; }

/* ═══════════════════════════════════════════
   NAVIGATION — Always visible
═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0.95rem 0;
  background: rgba(10,5,7,0.88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(107,31,42,0.2);
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
}
.navbar.scrolled {
  background: rgba(8,3,5,0.97);
  padding: 0.7rem 0;
  border-bottom-color: rgba(107,31,42,0.38);
}
.nav-container {
  max-width: var(--container-max); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo .logo-text,
.footer-logo .logo-text {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--white);
  font-style: italic;
  text-transform: uppercase;
}
/* logo-usa — 네비게이션은 모두 같은 흰색 */
.logo-usa {
  color: inherit;
  font-style: inherit;
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links li a {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.6); letter-spacing: 0.05em;
  text-transform: none; transition: color var(--transition);
}
.nav-links li a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { position: relative; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--burgundy);
}
.nav-cta {
  background: var(--burgundy) !important; color: var(--white) !important;
  padding: 0.4rem 1rem; border-radius: 2px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--burgundy-hover) !important; color: var(--white) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); }

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(140deg, #060308 0%, #160809 40%, #110b0b 100%);
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 68% 48%, rgba(107,31,42,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(107,31,42,0.07) 0%, transparent 40%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(184,184,184,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,184,184,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--container-max); margin: 0 auto;
  padding: 160px 2rem 120px;
  padding-left: calc(2rem + 100px);
}
@media (max-width: 1280px) { .hero-content { padding: 140px 2rem 100px; } }

.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease 0.2s forwards;
}
.eyebrow-line { display: block; width: 48px; height: 2px; background: var(--burgundy); }
.eyebrow-text { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--burgundy); }

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  font-weight: 800; color: var(--white); line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s ease 0.35s forwards;
  max-width: 900px;
  white-space: nowrap;
}
.hero-title-line2 { color: rgba(255,255,255,0.55); display: block; white-space: nowrap; }

.hero-powered {
  font-size: 0.72rem; font-weight: 400;
  color: rgba(255,255,255,0.3); letter-spacing: 0.14em;
  text-transform: uppercase; margin-top: 1.5rem; margin-bottom: 2rem;
  opacity: 0; transform: translateY(16px); animation: fadeUp 0.9s ease 0.72s forwards;
}
.hero-subtitle {
  font-size: 1.15rem; font-weight: 500;
  color: rgba(255,255,255,0.75); max-width: 820px; line-height: 1.7;
  margin-bottom: 1rem;
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.45);
  max-width: 720px; line-height: 1.85; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s ease 0.65s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s ease 0.8s forwards;
}
.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 3; opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll-indicator span { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--silver), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* ═══════════════════════════════════════════
   STELLA DESCRIPTOR BAR (replaces credibility bar)
═══════════════════════════════════════════ */
.credibility-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(107,31,42,0.2);
  border-bottom: 1px solid rgba(184,184,184,0.07);
  padding: 1.75rem 0;
}
.cred-blocks { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.cred-block {
  flex: 1; min-width: 180px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0.75rem 1.5rem; gap: 0.4rem;
}
.cred-descriptor-icon {
  font-size: 1.2rem;
  color: var(--burgundy);
  margin-bottom: 0.1rem;
}
.cred-descriptor-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.01em;
  line-height: 1.1;
}
.cred-label { font-size: 0.68rem; font-weight: 500; color: rgba(184,184,184,0.7); text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.5; }
.cred-divider { width: 1px; height: 52px; background: rgba(184,184,184,0.12); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   BACKED BY STARION
═══════════════════════════════════════════ */
.backed-by-starion {
  background: var(--white);
  border-bottom: 1px solid rgba(28,28,28,0.07);
  padding: 5rem 0;
}

/* ═══════════════════════════════════════════
   WHAT IS STELLA US (NEW INTRO)
═══════════════════════════════════════════ */
.what-intro-section {
  background: var(--soft-white);
}
.what-intro-section .section-title {
  white-space: nowrap;
}
/* eyebrow 전체 너비 래퍼 — 화면 중앙 정렬 */
.what-eyebrow-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
/* What is Stella — eyebrow 중앙 정렬 + 양쪽 라인 */
.what-eyebrow-centered {
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 420px;
}
.what-eyebrow-centered::before { display: none; }
.what-eyebrow-centered .eyebrow-line { flex: 1; }
.what-intro-body {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.what-intro-text {
  font-size: 1.1rem;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
/* New what-intro text classes */
.what-intro-lead {
  font-size: 1.1rem;
  color: var(--steel);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.what-intro-focus {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.7;
  border-left: 3px solid var(--burgundy);
  padding: 0.85rem 1.25rem;
  background: rgba(107,31,42,0.05);
  border-radius: 0 3px 3px 0;
  margin-bottom: 1rem;
  text-align: left;
}
.what-intro-scale {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  text-align: left;
}
/* what-intro features grid */
.what-intro-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}
.what-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(28,28,28,0.07);
  border-top: 3px solid var(--burgundy);
}
.what-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 3px;
  background: rgba(107,31,42,0.07);
  display: flex; align-items: center; justify-content: center;
}
.what-feature-icon i { color: var(--burgundy); font-size: 1rem; }
.what-feature-body h4 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.4rem;
}
.what-feature-body p {
  font-size: 0.82rem; color: var(--steel);
  line-height: 1.65;
}

/* Starion partners row in backed-by-starion section */
/* Global Footprint Map */
.starion-map-wrap {
  margin-top: 2.5rem;
  text-align: center;
}
.starion-map-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.starion-map-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 2px 24px rgba(28,28,28,0.07);
}

.starion-partners-row {
  margin-top: 2.5rem;
  text-align: center;
}
.starion-partners-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 1.25rem;
}
.starion-badges {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.starion-badge {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(28,28,28,0.15);
  border-radius: 2px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--dark); background: var(--white);
  letter-spacing: 0.02em;
}
.starion-partners-sub {
  font-size: 0.88rem; color: var(--steel);
  max-width: 620px; margin: 0 auto;
  line-height: 1.7;
}
.starion-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.starion-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 0.9rem;
}
.starion-eyebrow::before, .starion-eyebrow::after {
  content: ''; display: inline-block;
  width: 24px; height: 2px;
  background: var(--burgundy); flex-shrink: 0;
}
.starion-headline {
  font-size: 2rem; font-weight: 700;
  color: var(--dark); letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.starion-lead {
  font-size: 1.1rem; font-weight: 600;
  color: var(--dark); max-width: 580px; margin: 0 auto 2rem;
  line-height: 1.6;
}
.starion-sub {
  font-size: 0.95rem; color: var(--steel);
  max-width: 640px; margin: 0 auto 1.25rem;
  line-height: 1.9;
}

/* Proof-point grid */
.starion-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(28,28,28,0.08);
  border: 1px solid rgba(28,28,28,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.starion-proof-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.75rem; padding: 2.5rem 1.5rem;
  background: var(--soft-white);
  transition: background var(--transition);
}
.starion-proof-item:hover { background: var(--white); }
.starion-proof-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(107,31,42,0.07);
  border-radius: 50%;
}
.starion-proof-icon i { color: var(--burgundy); font-size: 1.2rem; }
.starion-proof-body { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.starion-proof-num {
  font-size: 2rem; font-weight: 800;
  color: var(--dark); line-height: 1;
  letter-spacing: -0.02em;
}
.starion-proof-num span {
  font-size: 1rem; font-weight: 600;
  color: var(--burgundy); letter-spacing: 0;
}
.starion-proof-label {
  font-size: 0.7rem; font-weight: 500;
  color: var(--steel); text-transform: uppercase;
  letter-spacing: 0.1em; line-height: 1.5;
}

/* ═══════════════════════════════════════════
   THE INDUSTRIAL GAP  — white bg
═══════════════════════════════════════════ */
.gap-section { background: var(--white); }
.gap-body { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 1rem; }

.gap-highlight {
  margin-top: 2rem;
  border-left: 3px solid var(--burgundy);
  padding: 1.25rem 1.5rem;
  background: rgba(107,31,42,0.06);
}
.gap-highlight-text {
  font-size: 1.1rem; font-weight: 600; color: var(--dark); line-height: 1.5;
}

.barriers-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 1.5rem;
}
.barriers-list { display: flex; flex-direction: column; gap: 0; }
.barrier-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(28,28,28,0.08);
}
.barrier-row:last-child { border-bottom: none; }
.barrier-icon {
  width: 42px; height: 42px; border-radius: 3px; flex-shrink: 0;
  background: rgba(107,31,42,0.08); border: 1px solid rgba(107,31,42,0.25);
  display: flex; align-items: center; justify-content: center;
}
.barrier-icon i { color: var(--burgundy); font-size: 1rem; }
.barrier-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.barrier-content p { font-size: 0.84rem; color: var(--steel); line-height: 1.65; }

/* Gap closing statement */
.gap-closing-statement {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 3rem;
  padding: 0;
}
.gap-closing-statement p {
  font-size: 1.35rem; font-weight: 700;
  color: var(--dark); white-space: nowrap;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.gap-closing-line {
  display: block; flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(107,31,42,0.35), rgba(107,31,42,0.06));
}
.gap-closing-statement .gap-closing-line:last-child {
  background: linear-gradient(to left, rgba(107,31,42,0.35), rgba(107,31,42,0.06));
}

/* ═══════════════════════════════════════════
   WHAT IS STELLA US
═══════════════════════════════════════════ */
.what-section { background: var(--soft-white); }
.what-platform-box {
  background: var(--white); border: 1px solid rgba(184,184,184,0.3);
  border-left: 3px solid var(--burgundy); padding: 2.5rem;
}
.what-box-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--steel); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════
   HOW STELLA US WORKS  — oat bg
═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   HOW THE STELLA PLATFORM WORKS
═══════════════════════════════════════════ */
.stella-how-section { background: var(--oat); }
.stella-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.stella-how-card {
  background: var(--white);
  border: 1px solid rgba(184,184,184,0.25);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: var(--transition);
}
.stella-how-card:hover {
  border-color: rgba(107,31,42,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.stella-how-num {
  font-size: 0.72rem; font-weight: 700;
  color: var(--burgundy); letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.stella-how-icon {
  font-size: 1.5rem; color: rgba(107,31,42,0.25);
  margin-bottom: 1rem;
}
.stella-how-title {
  font-size: 1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.65rem;
}
.stella-how-desc {
  font-size: 0.88rem; color: var(--steel); line-height: 1.7;
}

.how-section { background: var(--oat); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: stretch;
}
.how-card {
  background: var(--white);
  border: 1px solid rgba(28,28,28,0.08);
  padding: 2.5rem 2rem;
  transition: background var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.how-card:hover { background: #fff8f8; box-shadow: 0 4px 24px rgba(107,31,42,0.08); }
.how-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--burgundy);
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.how-card:hover::after { transform: scaleX(1); }
.how-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--burgundy); margin-bottom: 1.5rem;
}
.how-icon {
  font-size: 1.8rem;
  color: rgba(28,28,28,0.25);
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}
.how-card:hover .how-icon { color: var(--burgundy); }
.how-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.85rem;
}
.how-card p {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.75;
  flex: 1;
}
.how-arrow {
  display: flex; align-items: center; justify-content: center;
  color: rgba(107,31,42,0.4); font-size: 0.85rem;
  align-self: center;
}

/* ═══════════════════════════════════════════
   PLATFORM DIAGRAM SECTION
═══════════════════════════════════════════ */
.platform-diagram-section { background: var(--white); }

.platform-diagram {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

/* Arrow connector */
.pd-arrow {
  text-align: center;
  color: var(--burgundy);
  font-size: 1.1rem;
  opacity: 0.5;
  padding: 0.65rem 0;
}

/* Base layer row */
.pd-layer {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(28,28,28,0.09);
  border-radius: 3px;
  overflow: hidden;
}

/* Layer label sidebar */
.pd-layer-label {
  width: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.5rem;
  background: rgba(28,28,28,0.04);
  border-right: 1px solid rgba(28,28,28,0.08);
}
.pd-layer-num {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel); writing-mode: vertical-rl;
  text-orientation: mixed; transform: rotate(180deg);
}

/* Layer content area */
.pd-layer-content {
  flex: 1;
  padding: 1.75rem 2rem;
}

/* Foundation layer */
.pd-layer--foundation {
  border-color: rgba(107,31,42,0.2);
}
.pd-layer--foundation .pd-layer-label {
  background: rgba(107,31,42,0.06);
  border-right-color: rgba(107,31,42,0.15);
}
.pd-layer--foundation .pd-layer-num { color: var(--burgundy); }

/* Platform layer */
.pd-layer--platform {
  border-color: var(--burgundy);
  background: var(--burgundy);
}
.pd-layer--platform .pd-layer-label {
  background: rgba(0,0,0,0.15);
  border-right-color: rgba(255,255,255,0.15);
}
.pd-layer--platform .pd-layer-num { color: rgba(255,255,255,0.7); }
.pd-layer--platform .pd-layer-content { padding: 1.5rem 2rem; }

/* Output layer */
.pd-layer--output {
  border-color: rgba(28,28,28,0.12);
  background: var(--soft-white);
}

/* Layer header row */
.pd-layer-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.pd-layer--platform .pd-layer-header { margin-bottom: 0; }

.pd-layer-icon {
  width: 44px; height: 44px; border-radius: 2px; flex-shrink: 0;
  background: rgba(107,31,42,0.08);
  border: 1px solid rgba(107,31,42,0.2);
  display: flex; align-items: center; justify-content: center;
}
.pd-layer-icon i { color: var(--burgundy); font-size: 1.1rem; }

.pd-layer-icon--platform {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}
.pd-layer-icon--platform i { color: rgba(255,255,255,0.9); }

.pd-layer-icon--output {
  background: rgba(107,31,42,0.07);
  border-color: rgba(107,31,42,0.18);
}
.pd-layer-icon--output i { color: var(--burgundy); }

.pd-layer-title {
  font-size: 1rem; font-weight: 700;
  color: var(--dark); line-height: 1.2; margin-bottom: 0.2rem;
}
.pd-layer--platform .pd-layer-title { color: var(--white); }
.pd-layer-sub {
  font-size: 0.82rem; color: var(--steel); line-height: 1.5;
}
.pd-layer--platform .pd-layer-sub { color: rgba(255,255,255,0.7); }

/* Foundation facts */
.pd-foundation-facts {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.pd-fact {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.84rem; color: var(--steel);
}
.pd-fact i { color: var(--burgundy); font-size: 0.65rem; flex-shrink: 0; }

/* Inputs grid */
.pd-inputs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pd-input-card {
  background: var(--soft-white);
  border: 1px solid rgba(28,28,28,0.07);
  border-radius: 2px;
  padding: 1.1rem 1rem;
}
.pd-input-icon {
  font-size: 1.1rem; color: var(--burgundy);
  margin-bottom: 0.6rem;
}
.pd-input-card h4 {
  font-size: 0.82rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.4rem; line-height: 1.3;
}
.pd-input-card p {
  font-size: 0.77rem; color: var(--steel); line-height: 1.6;
}

/* Output tags */
.pd-output-tags {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 0.25rem;
}
.pd-output-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 500;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(107,31,42,0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.pd-output-tag i { color: var(--burgundy); font-size: 0.72rem; }

/* ═══════════════════════════════════════════
   INDUSTRIAL FOUNDATION
═══════════════════════════════════════════ */
.foundation-section { background: var(--soft-white); }

/* Stats bar */
.foundation-stats {
  display: flex; align-items: center; justify-content: center;
  background: var(--burgundy); padding: 3rem 0; margin-bottom: 4rem; flex-wrap: wrap;
}
.fstat-item { flex: 1; min-width: 140px; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; padding: 1rem 1.5rem; text-align: center; }
.fstat-num { font-size: 1.85rem; font-weight: 800; color: var(--white); line-height: 1; }
.fstat-label { font-size: 0.68rem; font-weight: 500; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.4; }
.fstat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* Partners */
.partners-block { margin-bottom: 4rem; }
.partners-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); margin-bottom: 1.25rem; }
.partners-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.partner-badge {
  padding: 0.5rem 1.25rem; background: var(--white);
  border: 1px solid rgba(184,184,184,0.4); font-size: 0.88rem;
  font-weight: 600; color: var(--dark); letter-spacing: 0.03em;
  transition: all var(--transition);
}
.partner-badge:hover { border-color: var(--burgundy); color: var(--burgundy); }
.partners-sub { font-size: 0.92rem; color: var(--steel); line-height: 1.7; max-width: 100%; }

/* ══════════════════════════════════════════════
   GLOBAL FOOTPRINT — Interactive SVG Map
══════════════════════════════════════════════ */
.footprint-block { margin-bottom: 5rem; }
.footprint-header { margin-bottom: 1.5rem; }
.footprint-title { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.footprint-desc { font-size: 0.92rem; color: var(--steel); max-width: 100%; line-height: 1.7; }

/* ── Map Container ── */
.footprint-map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(184,184,184,0.35);
  border-radius: 3px;
  background: #f5f3f0;
  cursor: crosshair;
}
.footprint-map-bg {
  width: 100%;
  height: auto;
  /* PPT slide-3 map is 1138×318 px → ~3.57:1 ratio */
  aspect-ratio: 1138 / 318;
  max-height: 400px;
  object-fit: fill;
  object-position: center;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.footprint-map-container:hover .footprint-map-bg { opacity: 1; }

/* ── SVG overlay ── */
.footprint-map-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: all;
  overflow: visible;
}

/* ── Factory Markers — single unified colour: #E8394A ── */
.factory-marker { cursor: pointer; }

/* Pulse ring & core — colour set once, applied to all */
.pulse-ring  { fill: none; stroke-width: 1.5; }
.marker-core {
  filter: brightness(1);
  transition: filter 0.2s ease;
}

/* Unified colour token */
:root { --marker: #E8394A; }

/* Staggered pulse delays so markers don't all flash simultaneously */
.factory-marker:nth-child(1)  .pulse-ring { animation-delay: 0.00s; }
.factory-marker:nth-child(2)  .pulse-ring { animation-delay: 0.13s; }
.factory-marker:nth-child(3)  .pulse-ring { animation-delay: 0.26s; }
.factory-marker:nth-child(4)  .pulse-ring { animation-delay: 0.39s; }
.factory-marker:nth-child(5)  .pulse-ring { animation-delay: 0.52s; }
.factory-marker:nth-child(6)  .pulse-ring { animation-delay: 0.65s; }
.factory-marker:nth-child(7)  .pulse-ring { animation-delay: 0.78s; }
.factory-marker:nth-child(8)  .pulse-ring { animation-delay: 0.91s; }
.factory-marker:nth-child(9)  .pulse-ring { animation-delay: 1.04s; }
.factory-marker:nth-child(10) .pulse-ring { animation-delay: 1.17s; }
.factory-marker:nth-child(11) .pulse-ring { animation-delay: 1.30s; }
.factory-marker:nth-child(12) .pulse-ring { animation-delay: 1.43s; }
.factory-marker:nth-child(13) .pulse-ring { animation-delay: 1.56s; }
.factory-marker:nth-child(14) .pulse-ring { animation-delay: 1.69s; }
.factory-marker:nth-child(15) .pulse-ring { animation-delay: 1.82s; }
.factory-marker:nth-child(16) .pulse-ring { animation-delay: 1.95s; }
.factory-marker:nth-child(17) .pulse-ring { animation-delay: 2.08s; }
.factory-marker:nth-child(18) .pulse-ring { animation-delay: 2.21s; }
.factory-marker:nth-child(19) .pulse-ring { animation-delay: 2.34s; }

/* Hover glow state */
.factory-marker:hover .marker-core { filter: brightness(0.8) drop-shadow(0 0 4px rgba(232,57,74,0.5)); }

/* Inner core blink */
@keyframes coreGlow {
  0%, 100% { opacity: 1;   }
  50%      { opacity: 0.65; }
}
.marker-core { animation: coreGlow 2s ease-in-out infinite; }

/* ── Tooltip ── */
.map-tooltip .tooltip-bg {
  fill: rgba(28,28,28,0.9);
  stroke: rgba(107,31,42,0.8);
  stroke-width: 1;
}
.map-tooltip .tooltip-site {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  fill: #ffffff;
}
.map-tooltip .tooltip-country {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 400;
  fill: rgba(200,200,200,0.85);
}

/* ── Site count badge ── */
.map-site-count {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(107,31,42,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  display: flex; flex-direction: column; align-items: center;
}
.site-count-num {
  font-size: 1.6rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.site-count-label {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-top: 0.2rem;
}

/* Core Capabilities Image Grid */
.capabilities-block { margin-bottom: 4rem; }
.cap-block-title { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 2.5rem; }

.cap-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(184,184,184,0.2);
  border: 1px solid rgba(184,184,184,0.2);
}
.cap-image-card {
  background: var(--white); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--transition);
}
.cap-img-wrap {
  position: relative; height: 200px; overflow: hidden; flex-shrink: 0;
}
.cap-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease; filter: saturate(0.7) brightness(0.8);
}
.cap-image-card:hover .cap-img-wrap img { transform: scale(1.04); filter: saturate(0.85) brightness(0.9); }
.cap-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,5,7,0.55) 100%);
}
.cap-image-content { padding: 1.75rem; flex: 1; }
.cap-image-icon { font-size: 1.25rem; color: var(--burgundy); margin-bottom: 0.85rem; }
.cap-image-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; line-height: 1.3; }
.cap-image-content p { font-size: 0.83rem; color: var(--steel); line-height: 1.7; }

/* ── Cap Section Header ── */
.cap-header { margin-bottom: 3.5rem; }
.cap-block-title {
  font-size: 1.65rem; font-weight: 700;
  color: var(--dark); margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.cap-block-desc {
  font-size: 0.97rem; color: var(--steel);
  max-width: 100%; line-height: 1.8;
}

/* ── 4 Core Capabilities Grid ── */
.cap-four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(28,28,28,0.08);
  border: 1px solid rgba(28,28,28,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.cap-four-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  display: flex; flex-direction: column;
  transition: background var(--transition);
  position: relative;
}
.cap-four-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px; background: var(--burgundy);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.cap-four-card:hover { background: #fff8f8; }
.cap-four-card:hover::after { transform: scaleX(1); }
.cap-four-num {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; color: var(--burgundy);
  margin-bottom: 1.25rem;
}
.cap-four-icon {
  font-size: 1.7rem;
  color: rgba(28,28,28,0.2);
  margin-bottom: 1.1rem;
  transition: color var(--transition);
}
.cap-four-card:hover .cap-four-icon { color: var(--burgundy); }
.cap-four-card h4 {
  font-size: 0.98rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.75rem;
  line-height: 1.3;
}
.cap-four-card p {
  font-size: 0.84rem; color: var(--steel);
  line-height: 1.72; flex: 1;
}

/* ── Combination Logic Callout ── */
.cap-combination-logic {
  background: var(--burgundy);
  border-radius: 3px;
  margin-bottom: 3.5rem;
  overflow: hidden;
}
.cap-logic-inner {
  display: flex; align-items: flex-start;
  gap: 2.5rem; padding: 2.5rem 3rem;
}
.cap-logic-icon {
  font-size: 2rem; color: rgba(255,255,255,0.4);
  flex-shrink: 0; margin-top: 0.2rem;
}
.cap-logic-text h4 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.cap-logic-text p {
  font-size: 0.9rem; color: rgba(255,255,255,0.8);
  line-height: 1.8; max-width: 820px;
}

/* ── Sectors Enabled ── */
.cap-sectors { margin-bottom: 2rem; }
.cap-sectors-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 1.5rem;
}
.cap-sectors-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(28,28,28,0.08);
  border: 1px solid rgba(28,28,28,0.08);
  border-radius: 3px; overflow: hidden;
}
.cap-sector-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--soft-white);
  transition: background var(--transition);
}
.cap-sector-item:hover { background: var(--white); }
.cap-sector-icon {
  width: 42px; height: 42px; border-radius: 2px; flex-shrink: 0;
  background: rgba(107,31,42,0.07); border: 1px solid rgba(107,31,42,0.2);
  display: flex; align-items: center; justify-content: center;
}
.cap-sector-icon i { color: var(--burgundy); font-size: 1rem; }
.cap-sector-item h5 {
  font-size: 0.93rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.4rem; line-height: 1.3;
}
.cap-sector-item p {
  font-size: 0.82rem; color: var(--steel); line-height: 1.68;
}

/* Why This Matters */
.why-matters {
  background: #1a0d10;
  border-left: 4px solid var(--burgundy);
  border: 1px solid rgba(107,31,42,0.3);
  border-left: 4px solid var(--burgundy);
}
.why-matters-inner { padding: 3rem 3.5rem; }
.why-matters h3 { font-size: 1.2rem; font-weight: 700; color: #ffffff; margin-bottom: 1.75rem; }
.why-matters-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 3rem;
}
.why-matters-grid p {
  font-size: 0.92rem;
  color: #b0b0b6;
  line-height: 1.78;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184,184,184,0.1);
}
.why-matters-grid p:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }

/* ═══════════════════════════════════════════
   STRATEGIC OPPORTUNITY AREAS  — oat bg
═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   FOCUS SECTORS
═══════════════════════════════════════════ */
.focus-sectors-section { background: var(--white); }
.focus-sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
.focus-sector-card {
  background: var(--soft-white);
  border: 1px solid rgba(184,184,184,0.25);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.focus-sector-card:hover {
  border-color: var(--burgundy);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.focus-sector-icon {
  font-size: 1.75rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.focus-sector-title {
  font-size: 0.95rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.65rem;
  line-height: 1.3;
}
.focus-sector-desc {
  font-size: 0.84rem; color: var(--steel); line-height: 1.65;
}

.opportunities-section { background: var(--oat); }

/* Tier label rows */
.opp-tier { margin-bottom: 1.5rem; }
.opp-tier--strategic { margin-top: 4rem; }
.opp-tier-label { display: flex; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; }
.opp-tier-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 2px;
  flex-shrink: 0;
}
.opp-tier-tag--core {
  background: var(--burgundy); color: var(--white);
}
.opp-tier-tag--strategic {
  background: transparent;
  color: var(--steel);
  border: 1px solid rgba(110,110,115,0.4);
}
.opp-tier-desc {
  font-size: 0.875rem; color: var(--steel); line-height: 1.6;
  max-width: 100%;
}

/* Core grid — 4 columns */
.opp-grid--core {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(28,28,28,0.08);
  border: 1px solid rgba(28,28,28,0.08);
  margin-bottom: 0;
}

/* Strategic grid — 2 columns */
.opp-grid--strategic {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(28,28,28,0.06);
  border: 1px solid rgba(28,28,28,0.06);
}

/* Base card */
.opp-card {
  background: var(--white); padding: 2.25rem 1.75rem;
  position: relative; transition: background var(--transition);
}
.opp-card:hover { background: #fff8f8; }
.opp-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--burgundy);
  transition: height var(--transition);
}
.opp-card:hover::before { height: 100%; }

/* Strategic card variant — slightly muted */
.opp-card--strategic {
  background: var(--soft-white);
}
.opp-card--strategic:hover { background: var(--white); }
.opp-card--strategic::before { background: rgba(107,31,42,0.45); }
.opp-card--strategic .opp-num { color: var(--steel); }
.opp-card--strategic .opp-icon { color: rgba(28,28,28,0.15); }
.opp-card--strategic:hover .opp-icon { color: rgba(107,31,42,0.55); }
.opp-card--strategic .opp-title { color: rgba(28,28,28,0.75); }

.opp-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; color: var(--burgundy); margin-bottom: 1.1rem; }
.opp-icon { font-size: 1.65rem; color: rgba(28,28,28,0.2); margin-bottom: 0.9rem; transition: color var(--transition); }
.opp-card:hover .opp-icon { color: var(--burgundy); }
.opp-title { font-size: 0.97rem; font-weight: 700; color: var(--dark); margin-bottom: 0.85rem; line-height: 1.3; }
.opp-desc { font-size: 0.855rem; color: var(--steel); line-height: 1.78; }


/* ═══════════════════════════════════════════
   PARTNERSHIP
═══════════════════════════════════════════ */
.partnership-section { background: var(--soft-white); }
.partnership-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: start; }

.partnership-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

.who-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); margin-top: 1rem; margin-bottom: 2.25rem; }
.who-grid { display: flex; flex-direction: column; gap: 0; }
.who-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.85rem 0.25rem; border-bottom: 1px solid rgba(184,184,184,0.2);
}
.who-item:last-child { border-bottom: none; }
.who-icon {
  width: 42px; height: 42px; border-radius: 2px; flex-shrink: 0;
  background: rgba(107,31,42,0.08); border: 1px solid rgba(107,31,42,0.2);
  display: flex; align-items: center; justify-content: center;
}
.who-icon i { color: var(--burgundy); font-size: 1rem; }
.who-item h4 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.who-item p { font-size: 0.92rem; color: var(--steel); line-height: 1.75; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: #080506; padding: 5rem 0 2.5rem; border-top: 1px solid rgba(184,184,184,0.06); }
.footer-top {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px;
  margin-bottom: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(184,184,184,0.07);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-tagline { font-size: 0.85rem; color: var(--steel); line-height: 1.6; margin-top: 0.5rem; }
.footer-starion { font-size: 0.72rem; color: rgba(110,110,115,0.45); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(3, auto); gap: 3rem; justify-content: flex-end; }
.footer-col h5 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a { font-size: 0.82rem; color: var(--steel); transition: color var(--transition); white-space: nowrap; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.74rem; color: rgba(110,110,115,0.45); }
.footer-korea { font-size: 0.7rem; color: rgba(110,110,115,0.35); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.4rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.74rem; color: rgba(110,110,115,0.45); transition: color var(--transition); }
.footer-legal a:hover { color: var(--silver); }

/* ═══════════════════════════════════════════
   ANIMATIONS & REVEAL
═══════════════════════════════════════════ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay   { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .opp-grid--core { grid-template-columns: repeat(2, 1fr); }
  .opp-grid--strategic { grid-template-columns: repeat(2, 1fr); }
  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
  }
  .how-arrow { display: none; }
  .cap-image-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-four-grid { grid-template-columns: repeat(2, 1fr); }
  .gap-body { grid-template-columns: 1fr; gap: 3rem; }
  .why-matters-grid { grid-template-columns: 1fr; }
  .stella-how-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-sectors-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(8,3,5,0.98); flex-direction: column;
    justify-content: center; gap: 2rem; text-align: center; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .partnership-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .foundation-stats { flex-direction: column; gap: 2rem; padding: 2.5rem 1.5rem; }
  .fstat-divider { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .stella-how-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .starion-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-inputs-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-layer-label { width: 70px; }
  .what-intro-features { grid-template-columns: 1fr; gap: 1rem; }
  .strengths-grid { grid-template-columns: 1fr !important; gap: 1.25rem; }
  .strength-img-wrap { height: 200px; }
  .strength-card-body { padding: 1.25rem; }
}

@media (max-width: 680px) {
  .hero-title { font-size: 1.85rem !important; white-space: normal !important; }
  .section-title { font-size: 1.5rem; }
  .cred-blocks { flex-direction: column; gap: 1.5rem; }
  .cred-divider { display: none; }
  .stella-how-grid { grid-template-columns: 1fr; }
  .focus-sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .strengths-grid { grid-template-columns: 1fr; gap: 1rem; }
  .strength-img-wrap { height: 220px; }
  .strength-title { font-size: 1rem; }
  .strength-desc { font-size: 0.85rem; }
  .opp-grid--core { grid-template-columns: 1fr; }
  .opp-grid--strategic { grid-template-columns: 1fr; }
  .cap-image-grid { grid-template-columns: 1fr; }
  .cap-four-grid { grid-template-columns: 1fr; }
  .cap-sectors-grid { grid-template-columns: 1fr; }
  .cap-logic-inner { flex-direction: column; gap: 1rem; padding: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero-actions, .partnership-cta { flex-direction: column; }
  .btn { justify-content: center; }
  .starion-proof-grid { grid-template-columns: 1fr 1fr; }
  .starion-headline { font-size: 1.6rem; }
  .opp-tier-label { flex-direction: column; gap: 0.75rem; }
  .pd-inputs-grid { grid-template-columns: 1fr; }
  .pd-layer-label { display: none; }
  .pd-layer-header { gap: 0.85rem; }
  .pd-output-tags { gap: 0.4rem; }
  .pd-output-tag { font-size: 0.72rem; }
  .footprint-map-bg { max-height: 180px; }
  .map-site-count { top: 0.5rem; right: 0.5rem; padding: 0.35rem 0.7rem; }
  .site-count-num { font-size: 1.1rem; }
  .why-matters-inner { padding: 1.5rem; }
  .why-matters-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .gap-body { grid-template-columns: 1fr; gap: 2rem; }
  .container { padding: 0 1.25rem; }
  .section { padding: 60px 0; }
  .hero-content { padding: 120px 1.25rem 80px; }
  .backed-by-starion { padding: 3.5rem 0; }
  .starion-proof-grid { grid-template-columns: 1fr 1fr; }
  .cap-block-title { font-size: 1.35rem; }
  .cap-block-desc { font-size: 0.9rem; }
  .footer-links { grid-template-columns: 1fr; gap: 2rem; }
  .what-intro-features { grid-template-columns: 1fr; }
  .what-intro-focus, .what-intro-scale { text-align: center; }
  .what-intro-focus { border-left: none; border-top: 3px solid var(--burgundy); padding: 0.85rem; }
  .what-feature-item { padding: 1.25rem; }
  .starion-badges { gap: 0.5rem; }
  .starion-badge { font-size: 0.77rem; padding: 0.4rem 0.9rem; }
  .strengths-grid { grid-template-columns: 1fr !important; gap: 1.25rem; }
}

/* ═══════════════════════════════════════════
   WHAT IS STELLA US (two-col layout)
═══════════════════════════════════════════ */
.what-intro-section { background: var(--soft-white); }
.what-intro-section .what-platform-box {
  background: var(--white);
  border: 1px solid rgba(184,184,184,0.3);
  border-left: 3px solid var(--burgundy);
  padding: 2.5rem;
}
.what-box-label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════
   STARION CORE STRENGTHS SECTION
═══════════════════════════════════════════ */
.strengths-section { background: var(--oat); }

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.strength-card {
  background: var(--white);
  border: 1px solid rgba(28,28,28,0.07);
  border-top: 3px solid var(--burgundy);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.strength-card:hover {
  box-shadow: 0 8px 32px rgba(28,28,28,0.12);
  transform: translateY(-4px);
}

/* Image section of card */
.strength-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.strength-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.strength-card:hover .strength-img {
  transform: scale(1.05);
}
.strength-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(107,31,42,0.08) 0%,
    rgba(28,28,28,0.35) 100%
  );
}

/* Text body of card */
.strength-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.strength-num {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 0.75rem;
}
.strength-icon {
  width: 40px; height: 40px; border-radius: 3px;
  background: rgba(107,31,42,0.07);
  border: 1px solid rgba(107,31,42,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.strength-icon i { color: var(--burgundy); font-size: 1rem; }
.strength-title {
  font-size: 0.95rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.65rem;
  line-height: 1.3;
}
.strength-desc {
  font-size: 0.8rem; color: var(--steel);
  line-height: 1.7;
  flex: 1;
}

/* Combination Callout */
.strength-combination {
  background: var(--dark);
  border-radius: 3px;
  padding: 0;
  overflow: hidden;
}
.strength-comb-inner {
  display: flex; align-items: flex-start; gap: 2rem;
  padding: 2.5rem 3rem;
}
.strength-comb-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 3px;
  background: rgba(107,31,42,0.5);
  border: 1px solid rgba(107,31,42,0.6);
  display: flex; align-items: center; justify-content: center;
}
.strength-comb-icon i { color: #fff; font-size: 1.3rem; }
.strength-comb-text h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.6rem;
}
.strength-comb-text p {
  font-size: 0.88rem; color: rgba(200,200,205,0.85);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   SPW — HOW THE STELLA PLATFORM WORKS
   Photo-driven immersive redesign
═══════════════════════════════════════════ */

.spw-section {
  background: #0c090b;
  padding: 0 0 5rem;
  border-top: 1px solid rgba(107,31,42,0.15);
}
/* 화이트 배경 오버라이드 */
.spw-section--white {
  background: #ffffff;
  border-top: 1px solid rgba(28,28,28,0.08);
}

/* ── HEADER ── */
.spw-header {
  text-align: center;
  padding: 5rem 2rem 3.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.spw-eyebrow-center {
  justify-content: center;
  width: 100%;
}
.spw-eyebrow-center::before { display: none; }
.spw-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.spw-desc {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ══════════════════════════
   FLOW — 3 blocks full-width
══════════════════════════ */
.spw-flow {
  display: grid;
  grid-template-columns: 1fr 56px 1.15fr 56px 1fr;
  align-items: stretch;
  min-height: 480px;
}

/* ── BASE BLOCK ── */
.spw-block {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── photo layer ── */
.spw-block-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.spw-block:hover .spw-block-img { transform: scale(1.04); }

/* ── dark overlay ── */
.spw-block-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(10,4,6,0.82) 0%,
    rgba(10,4,6,0.65) 60%,
    rgba(10,4,6,0.85) 100%);
}

/* ── content above photo ── */
.spw-block-content {
  position: relative; z-index: 2;
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ── STARION block ── */
.spw-block--starion { background: #0e0a0c; }

/* ── STELLA block — NO photo, pure burgundy ── */
.spw-block--stella {
  background: linear-gradient(145deg, #6B1F2A 0%, #8B2535 35%, #6B1F2A 100%);
  box-shadow: inset 0 0 80px rgba(0,0,0,0.25);
  z-index: 2;
}
.spw-block--stella::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 30%, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.spw-block-content--stella { padding: 2.8rem 2.2rem; }

/* ── OUTPUT block ── */
.spw-block--output {
  background: linear-gradient(145deg, #0e0a0c 0%, #140c0e 100%);
}
.spw-block--output::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 80%, rgba(107,31,42,0.15) 0%, transparent 65%);
  pointer-events: none;
}

/* ── TAG eyebrow ── */
.spw-tag {
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.28rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1.1rem;
  align-self: flex-start;
}
.spw-tag--light {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}

/* ── NAME ── */
.spw-name {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.spw-name--stella {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  letter-spacing: 0.16em;
}
.spw-name--stella span {
  font-size: 0.65em;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.65);
  margin-left: 0.2em;
}
.spw-name--sm {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

/* ── SINCE / sub ── */
.spw-since {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
}

/* ── CAP LIST (Starion) ── */
.spw-caps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
  flex: 1;
  margin-bottom: 2rem;
}
.spw-caps li {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.spw-caps li:last-child { border-bottom: none; }
.spw-caps li i {
  font-size: 0.7rem;
  color: var(--burgundy);
  flex-shrink: 0;
}

/* ── STATS ROW (Starion) ── */
.spw-stats {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.spw-stat { display: flex; flex-direction: column; gap: 0.18rem; }
.spw-sn {
  font-size: 1.55rem; font-weight: 800;
  color: #fff; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.spw-sl {
  font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.38);
}
.spw-sdiv {
  width: 1px; height: 38px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── STELLA PILLARS ── */
.spw-pillars {
  display: flex; flex-direction: column; gap: 0.75rem;
  flex: 1;
  margin: 1.5rem 0;
}
.spw-pillar {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  transition: background 0.2s;
}
.spw-pillar:hover { background: rgba(255,255,255,0.13); }
.spw-pillar-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.spw-pillar-icon i { font-size: 0.9rem; color: #fff; }
.spw-pillar div { display: flex; flex-direction: column; gap: 0.2rem; }
.spw-pillar strong {
  font-size: 0.88rem; font-weight: 700;
  color: #fff; display: block;
}
.spw-pillar span {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.spw-stella-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
  margin-bottom: 0;
}
.spw-stella-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ── OUTPUT TAGS ── */
.spw-out-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-style: italic;
}
.spw-out-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  flex: 1; align-content: flex-start;
}
.spw-out-tags span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.74rem; font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(107,31,42,0.25);
  border: 1px solid rgba(107,31,42,0.4);
  padding: 0.38rem 0.75rem;
  border-radius: 3px;
  transition: all 0.2s;
}
.spw-out-tags span:hover {
  background: rgba(107,31,42,0.45);
  border-color: rgba(107,31,42,0.7);
  color: #fff;
}
.spw-out-tags span i { font-size: 0.7rem; color: var(--burgundy); }

/* ── ARROW CONNECTORS ── */
.spw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,4,6,0.95);
  border-left: 1px solid rgba(107,31,42,0.2);
  border-right: 1px solid rgba(107,31,42,0.2);
}
.spw-arr-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
}
.spw-arr-lbl {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.spw-arr-inner .fas {
  font-size: 1rem;
  color: var(--burgundy);
  opacity: 0.6;
  transform: rotate(90deg);
}

/* ══════════════════════════════════════
   BOTTOM: OPPORTUNITY CARDS — image grid
══════════════════════════════════════ */
.spw-opp-label {
  display: flex; align-items: center; gap: 1rem;
  margin: 4rem 0 2rem;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel);
}
.spw-opp-label-line {
  flex: 1; height: 1px;
  background: rgba(28,28,28,0.12);
}

.spw-opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(107,31,42,0.12);
  border-radius: 8px;
  overflow: hidden;
}

.spw-opp-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0e0a0c;
  cursor: default;
}

/* photo */
.spw-opp-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.35) saturate(0.7);
}
.spw-opp-card:hover .spw-opp-img {
  transform: scale(1.07);
  filter: brightness(0.55) saturate(0.85);
}

/* body */
.spw-opp-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(to top,
    rgba(6,2,4,0.92) 0%,
    rgba(6,2,4,0.55) 50%,
    transparent 100%);
  z-index: 2;
  transition: background 0.4s;
}

.spw-opp-icon {
  width: 34px; height: 34px;
  background: var(--burgundy);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
}
.spw-opp-card:hover .spw-opp-icon {
  opacity: 1;
  transform: translateY(0);
}
.spw-opp-icon i { font-size: 0.8rem; color: #fff; }

.spw-opp-body h4 {
  font-size: 0.92rem; font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.spw-opp-body p {
  font-size: 0.73rem;
  color: rgba(200,200,205,0.6);
  line-height: 1.55;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.spw-opp-card:hover .spw-opp-body p {
  max-height: 100px;
  opacity: 1;
}

/* ══════════════════════════════
   RESPONSIVE — SPW
══════════════════════════════ */
@media (max-width: 1100px) {
  .spw-opp-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .spw-flow {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .spw-block { min-height: 340px; }
  .spw-block--starion .spw-block-img { height: 100%; }
  .spw-arrow {
    min-height: 44px;
    border-left: none; border-right: none;
    border-top: 1px solid rgba(107,31,42,0.2);
    border-bottom: 1px solid rgba(107,31,42,0.2);
  }
  .spw-arr-inner { flex-direction: row; gap: 0.5rem; }
  .spw-arr-lbl { writing-mode: horizontal-tb; }
  .spw-arr-inner .fas { transform: rotate(0deg); }
  .spw-opp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .spw-opp-grid { grid-template-columns: 1fr 1fr; }
  .spw-opp-card { aspect-ratio: 3 / 2; }
  .spw-opp-body p { display: none; }
  .spw-opp-icon { opacity: 1; transform: none; }
  .spw-block-content { padding: 1.75rem 1.5rem; }
  .spw-name { font-size: 1.5rem; }
  .spw-name--stella { font-size: 1.7rem; }
}

/* ═══════════════════════════════════════════
   GLOBAL MAP SVG
═══════════════════════════════════════════ */
.starion-map-wrap {
  margin-top: 3rem;
}
.starion-map-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 1.25rem;
}

/* ── 새 이미지 기반 맵 ── */
.starion-map-new {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 4px 32px rgba(107,31,42,0.18);
}
.map-bg-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
.map-overlay-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── 새 지도 범례 바 ── */
.map-legend-bar {
  position: absolute;
  bottom: 0.8rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(28,28,28,0.07);
  border: 1px solid rgba(28,28,28,0.12);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 0.38rem 1.1rem;
  white-space: nowrap;
}
.map-legend-dot {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: #C8203F;
  box-shadow: 0 0 5px rgba(200,32,63,0.6);
  flex-shrink: 0;
}
.map-legend-txt {
  font-size: 0.68rem; font-weight: 500;
  color: rgba(28,28,28,0.6); letter-spacing: 0.04em;
}
.map-legend-sep {
  font-size: 0.68rem; color: rgba(28,28,28,0.3);
}
.map-legend-count {
  font-size: 0.7rem; font-weight: 700;
  color: rgba(28,28,28,0.75); letter-spacing: 0.06em;
}

/* 구 country tag (삭제됨) — 하위 호환 유지 */
.map-country-tag { display: none; }
.map-tag-kr { display: none; }
.map-tag-usa { display: none; }

/* Old legend (삭제됨) — 하위 호환 유지 */
.map-legend { display: none; }
.map-legend-item { display: none; }
.legend-dot-white { display: none; }
.legend-circle { display: none; }
.legend-dot { display: none; }
.legend-triangle { display: none; }

/* Old SVG map (fallback) */
.starion-svg-map:not(.starion-map-new) {
  position: relative;
  background: #faf7f5;
  border: 1px solid rgba(107,31,42,0.12);
  border-radius: 6px;
  overflow: hidden;
  padding: 1.5rem 1.5rem 3.5rem;
}
.world-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
}

/* Country label overlays (old) */
.map-country-labels {
  position: absolute; inset: 0; pointer-events: none;
}
.map-clabel {
  position: absolute;
  font-size: 0.65rem; font-weight: 700;
  color: rgba(107,31,42,0.7);
  text-transform: uppercase; letter-spacing: 0.06em;
  line-height: 1.4;
  background: rgba(250,247,245,0.75);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}
.map-clabel span {
  display: block; font-size: 0.6rem;
  color: rgba(107,31,42,0.45); font-weight: 500;
  text-transform: none; letter-spacing: 0;
}

@media (max-width: 680px) {
  .map-legend-bar { padding: 0.3rem 0.8rem; gap: 0.45rem; }
  .map-legend-txt, .map-legend-sep, .map-legend-count { font-size: 0.62rem; }
  .map-legend-dot { width: 7px; height: 7px; }
}

/* ═══════════════════════════════════════════
   HERO — Brand & Badge Components
═══════════════════════════════════════════ */
.hero-eyebrow-top {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.1s forwards;
}
.hero-eyebrow-dot {
  display: block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--burgundy); flex-shrink: 0;
}
.hero-eyebrow-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(184,184,184,0.65);
}

.hero-brand-lockup {
  margin-bottom: 0.6rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.2s forwards;
}
.hero-brand-name {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #FF3B55;
  display: inline-block;
  text-shadow: 0 0 40px rgba(255,59,85,0.6), 0 2px 0 rgba(255,59,85,0.25);
  -webkit-text-stroke: 0.5px rgba(255,59,85,0.3);
}
.hero-brand-name .hero-brand-usa {
  color: #FF3B55;
}

@media (max-width: 900px) {
  .hero-title { white-space: normal !important; font-size: clamp(2.2rem, 6.5vw, 4rem) !important; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem !important; white-space: normal !important; }
}

.hero-backed-badge {
  display: flex; align-items: center;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.9s ease 0.65s forwards;
}
.hero-backed-line {
  display: block; flex: 1; max-width: 60px; height: 1px;
  background: rgba(107,31,42,0.5);
}
.hero-backed-text {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(184,184,184,0.5);
  white-space: nowrap;
}
.hero-backed-text strong {
  color: rgba(184,184,184,0.75); font-weight: 700;
}
@media (max-width: 700px) {
  .hero-backed-text { white-space: normal; font-size: 0.67rem; }
  .hero-backed-line { max-width: 24px; }
}

/* ═══════════════════════════════════════════
   THE STELLA PLATFORM 3-COLUMN SECTION
═══════════════════════════════════════════ */
.stella-platform-section {
  background: var(--oat) !important;
  border-top: 2px solid rgba(107,31,42,0.12);
  border-bottom: 2px solid rgba(107,31,42,0.08);
  padding: 6rem 0;
}
.stella-platform-section .section-eyebrow { color: var(--burgundy); }
.stella-platform-section .section-eyebrow::before { background: var(--burgundy); }
.stella-platform-section .section-title { color: var(--dark); }
.stella-platform-section .section-desc { color: var(--steel); max-width: 620px; }
.stella-platform-section .section-header { margin-bottom: 3.5rem; }

.stella-platform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: transparent;
  border: none;
  border-radius: 0;
}

.stella-platform-col {
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column;
  gap: 0; position: relative;
  background: var(--white);
  border: 1px solid rgba(107,31,42,0.1);
  border-radius: 4px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.stella-platform-col:hover {
  box-shadow: 0 8px 32px rgba(107,31,42,0.1);
  transform: translateY(-4px);
}

.stella-platform-divider {
  width: 2rem;
  background: transparent;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stella-platform-divider::after {
  content: '';
  display: block;
  width: 1px;
  height: 60%;
  background: rgba(107,31,42,0.15);
}

.stella-platform-icon {
  width: 52px; height: 52px;
  border-radius: 4px;
  background: rgba(107,31,42,0.07);
  border: 1px solid rgba(107,31,42,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.stella-platform-icon i { color: var(--burgundy); font-size: 1.2rem; }

.stella-platform-title {
  font-size: 1.2rem; font-weight: 800;
  color: var(--burgundy); margin-bottom: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stella-platform-desc {
  font-size: 0.88rem; color: var(--steel);
  line-height: 1.85; flex: 1; margin-bottom: 1.5rem;
}

.stella-platform-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: auto;
}
.stella-platform-tags span {
  font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border: 1px solid rgba(107,31,42,0.25);
  color: var(--burgundy);
  border-radius: 2px;
  background: rgba(107,31,42,0.06);
}

@media (max-width: 900px) {
  .stella-platform-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stella-platform-divider {
    width: 100%; height: 0;
    display: none;
  }
  .stella-platform-col { padding: 2rem 1.75rem; }
    grid-template-rows: auto;
  }
  .stella-platform-divider {
    width: 100%; height: 1px;
    background: rgba(255,255,255,0.07);
  }
  .stella-platform-col { padding: 2rem 1.75rem; }
}

@media (max-width: 680px) {
  .stella-platform-col { padding: 1.75rem 1.25rem; }
  .stella-platform-title { font-size: 1rem; }
}
