/* ========================================
   SpaceX Style Page CSS - Shared Components
   ======================================== */
@charset "UTF-8";

/* Tokens loaded via tokens.css — page vars now use CSS custom properties directly */

/* Page root uses global vars from tokens.css */
.page-root {
  font-family: var(--font-sans);
  background: var(--page-bg);
  color: var(--page-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Content Section - Full Width */
.page-section {
  min-height: 100vh;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.page-section--white {
  background: #ffffff;
}

.page-section--gray {
  background: var(--page-bg-secondary);
}

.page-section--dark {
  background: var(--page-bg-dark);
  color: #ffffff;
}

.page-section--dark .page-section-title,
.page-section--dark .page-section-subtitle {
  color: #ffffff;
}

.page-section-container {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 0 40px;
}

.page-section-header {
  text-align: center;
  margin-bottom: 80px;
}

.page-section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--page-accent);
  margin-bottom: 20px;
  text-align: left;
}

.page-section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--page-text);
  margin-bottom: 16px;
  text-align: left;
}

/* About Company Section - Premium Layout */
/* Company Profile - Cutting-edge Layout */
.company-profile-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

.company-profile-bg-text {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  font-size: clamp(200px, 25vw, 400px);
  font-weight: 800;
  letter-spacing: -20px;
  color: rgba(0, 0, 0, 0.02);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.company-profile-layout {
  position: relative;
  z-index: 1;
}

.company-profile-header {
  margin-bottom: 80px;
}

.company-profile-header .page-section-eyebrow {
  margin-bottom: 16px;
}

.company-profile-header .page-section-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.company-profile-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--page-accent, #0066ff), #00aaff);
}

.company-profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.company-profile-text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.company-profile-lead {
  font-size: 20px;
  line-height: 1.8;
  color: var(--page-text, #1a1a1a);
  font-weight: 500;
}

.company-profile-slogan {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

.company-profile-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.cp-block {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px 32px 36px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.04) 0%, rgba(139, 92, 246, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cp-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
}

.cp-block:hover::before {
  opacity: 1;
}

.cp-block-num {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cp-block-body {
  position: relative;
  z-index: 1;
}

.cp-block-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--page-text, #1a1a1a);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cp-block-body p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--page-text-secondary, #666);
}

.company-profile-visual {
  position: sticky;
  top: 120px;
}

.company-profile-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
}

.company-profile-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.company-profile-img-wrapper:hover img {
  transform: scale(1.05);
}

.company-profile-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.company-profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.company-profile-stat {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.company-profile-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--page-accent, #0066ff);
}

.company-profile-stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--page-accent, #0066ff);
  line-height: 1;
  margin-bottom: 8px;
}

.company-profile-stat-label {
  font-size: 12px;
  color: var(--page-text-secondary, #888);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1100px) {
  .company-profile-blocks {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .company-profile-section {
    padding: 80px 0;
  }

  .company-profile-header {
    margin-bottom: 50px;
  }

  .cp-block {
    padding: 28px 24px;
  }

  .cp-block-num {
    font-size: 56px;
  }

  .company-profile-stats {
    grid-template-columns: 1fr;
  }
}

.page-section-subtitle {
  font-size: 18px;
  color: var(--page-text-secondary);
  max-width: 600px;
  margin: 0;
  text-align: left;
}

/* SpaceX Style Cards */
.page-card {
  background: #ffffff;
  border: 1px solid var(--page-border);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-card:hover::before {
  opacity: 1;
}

.page-card:hover::after {
  transform: scaleX(1);
}

.page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
}

.page-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(99, 102, 241, 0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-card:hover .page-card-icon {
  transform: translateY(-2px);
  background: rgba(99, 102, 241, 0.12);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.page-card-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--page-text);
  margin-bottom: 16px;
}

.page-card-text {
  font-size: 15px;
  color: var(--page-text-secondary);
  line-height: 1.7;
}

/* Grid Layouts */
.page-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.page-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.page-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.page-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.page-grid-2--reverse {
  direction: rtl;
}

.page-grid-2--reverse > * {
  direction: ltr;
}

.page-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Feature List */
.page-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--page-border);
}

.page-feature-item:last-child {
  border-bottom: none;
}

.page-feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 204, 0.08);
  border-radius: 8px;
  flex-shrink: 0;
}

.page-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--page-accent);
  stroke-width: 2;
  fill: none;
}

.page-feature-content {
  flex: 1;
}

.page-feature-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--page-text);
  margin-bottom: 6px;
}

.page-feature-text {
  font-size: 14px;
  color: var(--page-text-secondary);
  line-height: 1.6;
}

/* Stats Display */
.page-stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 100px);
}

.page-stat {
  text-align: center;
}

.page-stat-value {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  letter-spacing: -3px;
  color: var(--page-text);
  line-height: 1;
  margin-bottom: 12px;
}

.page-stat-label {
  font-size: 14px;
  color: var(--page-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Button */
.page-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.4s var(--page-ease);
}

.page-cta:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.page-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.page-cta:hover svg {
  transform: translateX(4px);
}

.page-cta--outline {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
}

.page-cta--outline:hover {
  background: #000000;
  color: #ffffff;
}

/* Numbered Section */
.page-number {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -2px;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.page-section--dark .page-number {
  color: rgba(255, 255, 255, 0.1);
}

/* Divider */
.page-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6366f1, transparent);
  margin: 40px auto;
  border-radius: 1px;
}

/* Highlight Box */
.page-highlight {
  background: var(--page-bg-secondary);
  border-left: 3px solid var(--page-accent);
  padding: 24px 32px;
  margin: 32px 0;
  font-size: 16px;
  color: var(--page-text-secondary);
  line-height: 1.7;
}

.page-highlight strong {
  color: var(--page-text);
}

/* Responsive */
@media (max-width: 1024px) {
  .page-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-section-container {
    padding: 0 24px;
  }

  .page-section {
    padding: 80px 0;
  }

  .page-grid-5,
  .page-grid-4,
  .page-grid-3,
  .page-grid-2 {
    grid-template-columns: 1fr;
  }

  .page-stats {
    flex-direction: column;
    gap: 40px;
  }
}

/* Animations */
@keyframes fairy_styleFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}

/* Scroll Reveal */
.page-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s var(--page-ease);
}

.page-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Dark Section Text */
.page-section--dark .page-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.page-section--dark .page-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.page-section--dark .page-card-title,
.page-section--dark .page-feature-title {
  color: #ffffff;
}

.page-section--dark .page-card-text,
.page-section--dark .page-feature-text {
  color: rgba(255, 255, 255, 0.6);
}

.page-section--dark .page-highlight {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--page-accent);
}

.page-section--dark .page-highlight strong {
  color: #ffffff;
}

.page-section--dark .page-feature-item {
  border-color: rgba(255, 255, 255, 0.1);
}

.page-section--dark .page-feature-icon {
  background: rgba(0, 102, 204, 0.2);
}

/* Dark Background Numbers */
.page-bg-number {
  position: absolute;
  font-size: clamp(200px, 40vw, 400px);
  font-weight: 800;
  letter-spacing: -20px;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ========================================
   New Hero Section Style
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--page-bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--page-accent);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fairy_styleFadeUp 1s var(--page-ease) 0.3s forwards;
}

.hero h1 {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.15;
  color: var(--page-text);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero h1 span:not(.rainbow-text) {
  display: block;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fairy_styleFadeUp 1s var(--page-ease) forwards;
}

.hero h1 span:nth-child(1):not(.rainbow-text) { animation-delay: 0.4s; }
.hero h1 span:nth-child(2):not(.rainbow-text) { animation-delay: 0.55s; }
.hero h1 span:nth-child(3):not(.rainbow-text) { animation-delay: 0.7s; }

/* Hero title inline - Chinese version */
.hero-title-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-title-inline span:not(.rainbow-text) {
  display: block;
  text-align: center;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.rainbow-text {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #fda085 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800 !important;
  animation: rainbowShift 4s ease-in-out infinite alternate;
}

@keyframes rainbowShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.hero-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--page-text-secondary);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: fairy_styleFadeUp 1s var(--page-ease) 0.85s forwards;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: fairy_styleFadeUp 1s var(--page-ease) 1s forwards;
}

.metric-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-item b {
  font-size: 18px;
  font-weight: 700;
  color: var(--page-text);
  letter-spacing: -0.5px;
}

.metric-item span {
  font-size: 13px;
  color: var(--page-text-tertiary);
  letter-spacing: 0.5px;
}

/* Scroll Indicator */
.page-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fairy_styleFadeUp 1s var(--page-ease) 1.2s forwards;
}

.page-scroll-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--page-text-tertiary);
}

.page-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--page-text) 0%, transparent 100%);
  position: relative;
}

.page-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--page-text);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero h1,
  .page-hero h1 {
    letter-spacing: -1px;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 24px;
  }

  .metric-item b {
    font-size: 16px;
  }
}

/* ========================================
   Page Hero Section (alias for .hero)
   ======================================== */
.page-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--page-bg);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  display: none;
}

/* Contact-Us split composition: left black mask */
.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.page-hero-content--left {
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 60px;
  margin-top: 15vh;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--page-accent);
  margin-bottom: 32px;
  opacity: 1;
}

.page-hero-title {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.15;
  color: var(--page-text);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.page-hero-title span {
  display: block;
  opacity: 1;
  transform: none;
}

.page-hero-subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--page-text);
  line-height: 1.2;
  max-width: 1200px;
  margin: 0 auto 60px;
  opacity: 1;
}

.sub-item {
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--page-text);
  white-space: nowrap;
}

.sub-sep, .sub-eq {
  color: var(--page-accent);
  opacity: 1;
  font-weight: 400;
  font-size: 1.2em;
}

.sub-brand {
  font-weight: 900;
  letter-spacing: 0.05em;
  display: inline-block;
  background: linear-gradient(135deg, #00d2ff 0%, #3a73d4 50%, #0055ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 24px;
  border-left: 2px solid var(--page-accent);
  margin-left: 8px;
  white-space: nowrap;
}

.page-hero .page-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 1;
}

.page-hero .page-scroll-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--page-text-tertiary);
}

.page-hero .page-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--page-text) 0%, transparent 100%);
  position: relative;
}

.page-hero .page-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--page-text);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ========================================
   Editorial Light Hero
   ======================================== */
.page-hero--editorial {
  background: #FAFAF7;
}

.page-hero--editorial .page-hero-bg,
.page-hero--editorial .page-hero-overlay {
  display: none;
}

/* Typography */
.page-hero--editorial .page-hero-eyebrow {
  color: #6B6B6B;
  font-weight: 500;
}

.page-hero--editorial .page-hero-title {
  color: #18181B;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.page-hero--editorial .sub-item {
  color: #18181B;
  font-weight: 500;
}

.page-hero--editorial .sub-sep,
.page-hero--editorial .sub-eq {
  color: #A1A1A1;
  font-weight: 300;
}

.page-hero--editorial .sub-brand {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--page-accent);
  border-left-color: var(--page-accent);
}

.page-hero--editorial .page-hero-subtitle {
  color: #18181B;
}

.page-hero--editorial .page-scroll-text {
  color: #999;
}

.page-hero--editorial .page-scroll-line {
  background: linear-gradient(to bottom, #999 0%, transparent 100%);
}

.page-hero--editorial .page-scroll-line::after {
  background: #999;
}

/* ========================================
   Contact Hero - Premium Split Layout
   ======================================== */
.contact-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #000;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.contact-hero:hover .contact-hero-bg {
  transform: scale(1);
}

.contact-hero-mask {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 80%, transparent 100%);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-hero-text {
  padding-right: 40px;
}

.contact-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.contact-hero-title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.contact-hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.contact-hero-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Premium Contact Info Cards */
.contact-info-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-info-card:nth-child(1) { animation: fadeUp 0.8s ease 0.6s forwards; }
.contact-info-card:nth-child(2) { animation: fadeUp 0.8s ease 0.75s forwards; }

.contact-info-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-6px);
}

.contact-info-card:hover::before {
  opacity: 1;
}

/* Card Variants */
.contact-info-card--bj { border-left: 3px solid rgba(96, 180, 255, 0.4); }
.contact-info-card--wh { border-left: 3px solid rgba(96, 220, 160, 0.4); }

.contact-info-card--bj:hover { border-left-color: rgba(96, 180, 255, 0.8); }
.contact-info-card--wh:hover { border-left-color: rgba(96, 220, 160, 0.8); }

.contact-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.contact-info-label {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.contact-info-accent {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), transparent);
  border-radius: 1px;
}

.contact-info-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05), transparent);
  margin-bottom: 24px;
}

.contact-info-content {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.contact-info-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.contact-info-map {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-card:hover .contact-info-map img {
  transform: scale(1.08);
}

.map-zoom-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 2;
}

.contact-info-map:hover .map-zoom-btn {
  opacity: 1;
}

.map-zoom-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.map-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.map-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.map-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.map-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

.map-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.map-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  object-fit: contain;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-info-icon svg {
  opacity: 0.8;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}

.contact-info-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.contact-info-value {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.contact-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
  z-index: 10;
}

.contact-scroll-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.contact-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, transparent 100%);
  position: relative;
}

.contact-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: rgba(255,255,255,0.8);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}

@media (max-width: 1024px) {
  .contact-hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 40px;
  }

  .contact-hero-mask {
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.6) 100%);
  }

  .contact-hero-text {
    padding-right: 0;
    text-align: center;
  }

  .contact-hero-subtitle br {
    display: none;
  }

  .contact-hero-info {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    min-height: 700px;
  }

  .contact-hero-content {
    padding: 0 24px;
  }

  .contact-info-card {
    padding: 24px;
  }

  .contact-info-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .contact-info-map {
    width: 100%;
    height: 140px;
    order: -1;
  }
}

/* ========================================
   SpaceX Applications Section (Core Tech)
   ======================================== */
.fairy_style-applications {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.fairy_style-applications .section-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.fairy_style-applications .applications-header {
  margin-bottom: 100px;
}

.fairy_style-applications .applications-header h2 {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--page-accent);
  margin-bottom: 24px;
}

.fairy_style-applications .applications-header p {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.1;
  color: #1d1d1f;
  max-width: 700px;
}

.fairy_style-applications .bg-numbers {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  font-size: clamp(300px, 40vw, 600px);
  font-weight: 700;
  letter-spacing: -20px;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

.fairy_style-applications .applications-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fairy_style-applications .application-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: start;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fairy_style-applications .application-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.fairy_style-applications .application-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(0, 102, 204, 0.08), transparent);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fairy_style-applications .application-item:hover::before {
  width: 100%;
}

.fairy_style-applications .app-number {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -2px;
  color: rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.fairy_style-applications .application-item:hover .app-number {
  color: var(--page-accent);
  transform: translateX(10px);
}

.fairy_style-applications .app-content {
  position: relative;
  z-index: 2;
}

.fairy_style-applications .app-content h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -1px;
  color: #1d1d1f;
  margin-bottom: 16px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fairy_style-applications .application-item:hover .app-content h3 {
  transform: translateX(10px);
}

.fairy_style-applications .app-content p {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #6e6e73;
  line-height: 1.7;
  max-width: 500px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fairy_style-applications .application-item:hover .app-content p {
  transform: translateX(10px);
  color: #1d1d1f;
}

.fairy_style-applications .app-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.fairy_style-applications .app-arrow svg {
  width: 20px;
  height: 20px;
  stroke: rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fairy_style-applications .application-item:hover .app-arrow {
  background: var(--page-accent);
  border-color: var(--page-accent);
  transform: rotate(-45deg);
}

.fairy_style-applications .application-item:hover .app-arrow svg {
  stroke: #ffffff;
}

/* Scroll animations for SpaceX applications */
.fairy_style-applications .animate-in {
  opacity: 0;
  transform: translateY(60px);
}

.fairy_style-applications .animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fairy_style-applications .animate-in.delay-1 { transition-delay: 0.15s; }
.fairy_style-applications .animate-in.delay-2 { transition-delay: 0.3s; }
.fairy_style-applications .animate-in.delay-3 { transition-delay: 0.45s; }

/* Responsive */
@media (max-width: 1024px) {
  .fairy_style-applications .section-container {
    padding: 0 40px;
  }

  .fairy_style-applications .application-item {
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding: 48px 0;
  }

  .fairy_style-applications .app-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .fairy_style-applications {
    padding: 80px 0;
  }

  .fairy_style-applications .section-container {
    padding: 0 24px;
  }

  .fairy_style-applications .applications-header {
    margin-bottom: 60px;
  }

  .fairy_style-applications .applications-header p {
    letter-spacing: -2px;
  }

  .fairy_style-applications .application-item {
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 36px 0;
  }

  .fairy_style-applications .bg-numbers {
    right: -50px;
    letter-spacing: -10px;
  }
}

/* === Vision Section === */
.vision-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.04), transparent);
}

.vision-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.04), transparent);
}

.vision-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.vision-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.vision-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #007aff);
}

.vision-eyebrow-line:last-child {
  background: linear-gradient(90deg, #007aff, transparent);
}

.vision-eyebrow-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #007aff;
}

.vision-motto {
  font-family: var(--page-font-heading);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  background: var(--jewel-500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 72px;
}

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

.vision-card {
  padding: 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: 1px solid rgba(0,0,0,0.06);
  background: #ffffff;
}

.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.vision-card-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  min-width: 72px;
  position: relative;
  flex-shrink: 0;
}

.vision-card-body {
  flex: 1;
  padding: 48px 56px 48px 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.vision-card-label {
  font-family: var(--page-font-heading);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  flex-shrink: 0;
  color: #0a0a14;
}

.vision-card-divider {
  width: 1px;
  height: 36px;
  border-radius: 1px;
  flex-shrink: 0;
}

.vision-card-desc {
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.2px;
  font-weight: 400;
  flex: 1;
  color: #6b6b8a;
}

.vision-card-num {
  font-family: var(--page-font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Red — Mission */
.vision-card--red .vision-card-num-wrap {
  background: linear-gradient(135deg, rgba(255,55,95,0.06), rgba(255,55,95,0.02));
  border-right: 1px solid rgba(255,55,95,0.08);
}
.vision-card--red .vision-card-num { color: rgba(255,55,95,0.5); }
.vision-card--red .vision-card-divider { background: rgba(255,55,95,0.3); }

/* Blue — Vision */
.vision-card--blue .vision-card-num-wrap {
  background: linear-gradient(135deg, rgba(0,122,255,0.06), rgba(0,122,255,0.02));
  border-right: 1px solid rgba(0,122,255,0.08);
}
.vision-card--blue .vision-card-num { color: rgba(0,122,255,0.5); }
.vision-card--blue .vision-card-divider { background: rgba(0,122,255,0.3); }

/* Purple — Values */
.vision-card--purple .vision-card-num-wrap {
  background: linear-gradient(135deg, rgba(88,86,214,0.06), rgba(88,86,214,0.02));
  border-right: 1px solid rgba(88,86,214,0.08);
}
.vision-card--purple .vision-card-num { color: rgba(88,86,214,0.5); }
.vision-card--purple .vision-card-divider { background: rgba(88,86,214,0.3); }

.vision-card-label {
  font-family: var(--page-font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.vision-card-divider {
  width: 1px;
  height: 40px;
  border-radius: 1px;
  flex-shrink: 0;
}

.vision-card-desc {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.3px;
  font-weight: 500;
  flex: 1;
}

/* === Responsive === */
@media (max-width: 768px) {
  .vision-section {
    padding: 100px 0;
  }

  .vision-section-inner {
    padding: 0 24px;
  }

  .vision-motto {
    margin-bottom: 56px;
  }

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

  .vision-card {
    flex-direction: column;
    align-items: stretch;
  }

  .vision-card-num-wrap {
    flex-direction: row;
    min-width: unset;
    padding: 20px 24px;
    gap: 12px;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .vision-card-body {
    padding: 24px 28px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .vision-card-divider {
    width: 36px;
    height: 1px;
  }

  .vision-card-label {
    font-size: 30px;
  }
}
