/* ========== ABOUT PAGE – CINEMATIC NARRATION ========== */
.about-narrative {
  background: #000;
  overflow-x: hidden;
}

/* Act container – initially hidden, will be animated */
.act {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
  will-change: opacity, transform;
}

/* Content container – centered, with optional background for readability */
.act-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(2px);
  border-radius: 20px;
  padding: 2rem;
}

/* Override global .hero-line styles from sections.css */
.act .hero-line {
  position: relative !important;
  opacity: 1 !important;
  transform: none !important;
  display: block !important;
}

/* Typography */
.act h1,
.act h2,
.act .hero-line {
  font-family: 'Bebas Neue', 'Impact', 'Franklin Gothic Bold', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0.5rem 0;
  text-transform: uppercase;
}

/* First hero line (gold) */
.act h1,
.act .hero-line:first-of-type {
  font-size: clamp(48px, 8vw, 100px);
  color: #ffdf7e;
}

/* Subsequent hero lines (white) */
.act h2,
.act .hero-line:not(:first-of-type) {
  font-size: clamp(40px, 6vw, 80px);
  color: #fff;
}

.act .hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  text-transform: none;
}

.act .emphasis {
  color: #ffdf7e;
  font-size: clamp(40px, 7vw, 80px);
}

/* Founder section */
.founder-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.founder-image {
  position: relative;
  z-index: 2;
}
.founder-image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ffdf7e;
  box-shadow: 0 0 20px rgba(255,223,126,0.3);
  position: relative;
  z-index: 2;
}
.small {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}
.quote {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 500px;
  color: #ffdf7e;
}
.signature {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #fff;
}

/* CTA button */
#startStoryBtn {
  background: linear-gradient(135deg, #ffdf7e, #d4af37);
  color: #0a050f;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 60px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  margin-top: 2rem;
}
#startStoryBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}

/* ========== CREATIVE FORM ========== */
.form-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #0a070c, #020103);
  padding: 4rem 1rem;
}
.form-container {
  width: 100%;
  max-width: 500px;
  background: rgba(20,15,28,0.8);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.form-step {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}
.form-step.active {
  display: flex;
}
.form-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #ffdf7e;
  margin-bottom: 0.5rem;
}
.form-step p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}
.input-group {
  position: relative;
  margin: 0.5rem 0;
}
.input-group input, .input-group textarea {
  width: 100%;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212,175,55,0.4);
  color: #fff;
  font-size: 1rem;
  outline: none;
}
.input-group textarea {
  resize: vertical;
  min-height: 80px;
}
.input-group .focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffdf7e;
  transition: 0.3s;
}
.input-group input:focus ~ .focus-border,
.input-group textarea:focus ~ .focus-border {
  width: 100%;
}
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.options-grid button {
  background: rgba(20,15,28,0.7);
  border: 1px solid rgba(212,175,55,0.5);
  color: #ffdf7e;
  padding: 0.6rem 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.options-grid button.selected {
  background: #ffdf7e;
  color: #0a050f;
  border-color: #ffdf7e;
}
.next-step, .prev-step {
  background: none;
  border: 1px solid #ffdf7e;
  color: #ffdf7e;
  padding: 0.6rem 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.2s;
  width: fit-content;
  align-self: center;
}
.next-step.disabled, .prev-step.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.next-step:hover, .prev-step:hover {
  background: rgba(255,223,126,0.2);
}
.form-status {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ffdf7e;
}

/* ========== ACT GEOMETRY ========== */
.act-geometry-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.act-content {
  position: relative;
  z-index: 10;
}

/* Geometry elements */
.geo-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: gold;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px gold;
}
.geo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 3px solid gold;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px gold;
}
.geo-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: gold;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.geo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: gold;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px gold;
}
.geo-satellite {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: gold;
  border-radius: 50%;
  box-shadow: 0 0 10px gold;
}
.geo-line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background: gold;
  transform-origin: 0 50%;
  box-shadow: 0 0 6px gold;
}
.geo-hourglass {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 80px;
  opacity: 0.3;
}
.geo-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.6);
  background: radial-gradient(circle, rgba(255,215,0,0.2), transparent);
  box-shadow: 0 0 40px gold;
  z-index: 0;
}

/* Act 4 overlapping text */
.act.act-reality .act-content {
  max-width: none;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  overflow: visible;
}

.overlap-text-container {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlap-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  text-align: center;
  opacity: 0;
  margin: 0;
  padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .act h1, .act .hero-line:first-of-type { font-size: 40px; }
  .act h2, .act .hero-line:not(:first-of-type) { font-size: 28px; }
  .act .emphasis { font-size: 32px; }
  .quote { font-size: 1rem; }
  .form-step h3 { font-size: 1.5rem; }
  .overlap-line { width: 95%; }
}