/* ════════════════════════════════════════════════════════════
   MOJOOD — about.css
   Page-specific styles for the About / Story page
   ════════════════════════════════════════════════════════════ */


/* ── SHARED UTILITY ───────────────────────────────────────── */
.chapter-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--gap-xl);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: var(--gap-xxl);
}

.text-acid { color: var(--acid-text, #5A8A10); }
.text-plasma { color: var(--plasma); }

.chapter-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.chapter-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--acid-text, #5A8A10);
  white-space: nowrap;
}

.chapter-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,255,0,0.3), transparent);
}

/* ── ABOUT HERO ───────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 48px 100px;
  overflow: hidden;
  background: var(--bg);
}

.about-hero-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.about-hero-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-4);
}

.about-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--acid);
  padding: 4px 12px;
  border: 1px solid rgba(212,255,0,0.3);
  border-radius: 20px;
}

.about-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
}

.ah-line {
  overflow: hidden;
  display: block;
}

.ah-word {
  display: inline-block;
  color: var(--ink);
}

.ah-word:nth-child(1) { animation-delay: 0.3s; }
.ah-word:nth-child(2) { animation-delay: 0.42s; }

.ah-line:nth-child(2) .ah-word:nth-child(1) { animation-delay: 0.5s; }
.ah-line:nth-child(2) .ah-word:nth-child(2) { animation-delay: 0.62s; }

.ah-line:nth-child(3) .ah-word:nth-child(1) { animation-delay: 0.7s; }
.ah-line:nth-child(3) .ah-word:nth-child(2) { animation-delay: 0.82s; }

.ah-accent { color: var(--acid); }

.ah-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(15,14,13,0.25);
}

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

.about-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-2);
  max-width: 560px;
  line-height: 1.8;
}

.about-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.about-hero-scroll span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--mid), transparent);
  animation: scrollPulse 2s ease-in-out 1.5s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Floating grid marks */
.hero-grid-mark {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--border);
  border-style: solid;
}

.gm-tl { top: 80px; left: 48px; border-width: 1px 0 0 1px; }
.gm-tr { top: 80px; right: 48px; border-width: 1px 1px 0 0; }
.gm-bl { bottom: 80px; left: 48px; border-width: 0 0 1px 1px; }
.gm-br { bottom: 80px; right: 48px; border-width: 0 1px 1px 0; }

/* Ambient orbs */
.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(90,138,16,0.08) 0%, transparent 70%);
  top: -100px;
  right: -200px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,75,31,0.04) 0%, transparent 70%);
  bottom: 50px;
  left: 20%;
}

.about-hero > * { position: relative; z-index: 1; }

/* ── ABOUT CHAPTERS ───────────────────────────────────────── */
.about-chapter {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.about-chapter-dark {
  background: var(--bg-2);
}

.chapter-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.chapter-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 32px;
}

.highlight-word {
  color: var(--acid);
  position: relative;
  display: inline-block;
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--acid);
  opacity: 0.4;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.highlight-word.revealed::after {
  transform: scaleX(1);
}

.chapter-body {
  color: var(--ink-3);
  line-height: 1.9;
  font-size: 1rem;
}

.chapter-body p { margin-bottom: 20px; }
.chapter-body p:last-child { margin-bottom: 0; }

.chapter-stat-row {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.chapter-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--acid);
  line-height: 1;
  margin-bottom: 6px;
}

.chapter-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* Visual card */
.about-visual-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  overflow: hidden;
  transition: border-color 0.4s;
}

.about-visual-card:hover {
  border-color: rgba(212,255,0,0.3);
}

.card-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212,255,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,255,0,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.vc-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.about-svg {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.vc-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ── TIMELINE ─────────────────────────────────────────────── */
.about-timeline {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.timeline-track {
  position: relative;
  padding-left: 120px;
}

.timeline-spine {
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--acid), rgba(212,255,0,0.05));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding-bottom: 72px;
  align-items: start;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.ti-year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--acid);
  text-align: right;
  margin-top: 4px;
  grid-column: 1;
}

.ti-dot {
  position: absolute;
  left: -46px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px rgba(212,255,0,0.3);
}

.ti-dot-future {
  background: transparent;
  border: 2px solid rgba(212,255,0,0.4);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px rgba(212,255,0,0.15);
}

.ti-content {
  grid-column: 2;
}

.ti-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ti-content p {
  color: var(--ink-3);
  line-height: 1.8;
  font-size: 0.95rem;
}

.ti-upcoming .ti-title { color: var(--ink-4); }
.ti-upcoming .ti-content p { color: var(--ink-4); }

/* ── BELIEFS ──────────────────────────────────────────────── */
.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.belief-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}

.belief-headline p {
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.8;
}

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

.belief-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.35s;
  cursor: default;
}

.belief-card:hover {
  border-color: rgba(212,255,0,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.belief-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.belief-icon svg {
  width: 40px;
  height: 40px;
}

.belief-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.belief-card p {
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.7;
}

/* ── WHO WE SERVE ─────────────────────────────────────────── */
.about-serve {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.serve-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.35s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.serve-card:hover {
  background: var(--surface-raised);
}

.serve-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.serve-card-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.serve-icon {
  width: 48px;
  height: 48px;
  color: var(--ink-3);
  transition: color 0.3s;
}

.serve-card:hover .serve-icon {
  color: var(--ink);
}

.serve-icon svg {
  width: 48px;
  height: 48px;
}

.serve-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--acid-text, #5A8A10);
}

.serve-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.serve-card p {
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.7;
  flex: 1;
}

.serve-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--acid-text, #5A8A10);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: auto;
}

.serve-link:hover { opacity: 0.7; }

/* ── PARTNERS ─────────────────────────────────────────────── */
.about-partners {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

.partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: all 0.35s;
  cursor: default;
}

.partner-card:hover {
  border-color: rgba(212,255,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.partner-initial {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.partner-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.partner-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ── CTA BAND ─────────────────────────────────────────────── */
.about-cta {
  padding: 120px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.about-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid-text, #5A8A10);
  margin-bottom: 24px;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}

.cta-body {
  font-size: 1.05rem;
  color: var(--ink-3);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-location {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,255,0,0.07) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,75,31,0.04) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ABOUT.JS PARALLAX TARGET ─────────────────────────────── */
[data-parallax-about] {
  will-change: transform;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .beliefs-grid { grid-template-columns: 1fr; }
  .belief-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-hero { padding: 140px 24px 80px; }
  .chapter-split { grid-template-columns: 1fr; gap: 48px; }
  .chapter-right { display: none; }
  .timeline-track { padding-left: 80px; }
  .timeline-spine { left: 48px; }
  .ti-dot { left: -38px; }
}

@media (max-width: 768px) {
  .about-chapter, .about-timeline, .about-serve, .about-partners, .about-cta { padding: 80px 0; }
  .serve-grid { grid-template-columns: 1fr; border-radius: 0; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .belief-cards { grid-template-columns: 1fr; }
  .chapter-stat-row { gap: 20px; }
  .about-hero-scroll { display: none; }
  .about-cta { padding: 80px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
}


/* Force dark background on all about sections */
.about-chapter,
.about-chapter-dark,
.about-timeline,
.about-serve,
.about-partners,
.about-cta {
  color: var(--ink);
}

/* Serve cards dark */
.serve-card { background: var(--bg); }
.serve-card:hover { background: var(--surface); }

/* Partner cards dark */
.partner-card { background: var(--surface); }
.partner-card:hover { border-color: rgba(212,255,0,0.3); }

/* Review cards dark */
.review-card-about { background: var(--surface); border-color: var(--border); }

/* Timeline spine always acid */
.timeline-spine { background: linear-gradient(to bottom, #D4FF00, rgba(212,255,0,0.05)); }

/* Belief cards always dark */
.belief-card { background: var(--surface-raised) !important; border-color: var(--border) !important; }
.belief-card h3 { color: var(--ink); }
.belief-card p { color: var(--ink-3); }


/* About page body is always dark - override the light navbar */
  background: rgba(13,13,15,0.95);
  border-bottom-color: var(--border);
}
  background: rgba(13,13,15,0.99);
}
