/* ============================================================
   WorldLens — About Page Styles (about.html)
   ============================================================ */

/* ============================================================
   About Hero
   ============================================================ */
.about-hero {
  position: relative;
  padding-block: 48px var(--space-2xl);
  text-align: center;
  overflow: visible;
}

.about-hero-glow {
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(232, 168, 56, 0.11) 0%,
    rgba(193, 125, 32, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
}

.about-hero .section-label {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.about-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-on-surface);
  line-height: 1.75;
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================================
   Mission Box
   ============================================================ */
.mission-section {
  padding-block: var(--space-lg) var(--space-xl);
}

.mission-box {
  background: var(--color-card-surface);
  border: none;
  border-top: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  text-align: center;
  box-shadow:
    0 0 80px rgba(232, 168, 56, 0.05),
    0 2px 40px rgba(0, 0, 0, 0.3);
}

.mission-box .section-label {
  margin-bottom: 24px;
}

.mission-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-white);
  margin-block: 0 2rem;
}

.mission-body {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.mission-body p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-on-surface);
  margin-bottom: 1rem;
}

.mission-body p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   Problem Section — 2×2 Grid
   ============================================================ */
.problem-section {
  padding-block: var(--space-xl) var(--space-2xl);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.problem-card {
  padding: 1.75rem;
  transition: border-color var(--transition-fast);
}

.problem-card:hover {
  border-color: rgba(232, 168, 56, 0.4);
}

.problem-icon {
  width: 28px;
  height: 28px;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.problem-icon svg {
  width: 100%;
  height: 100%;
}

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.problem-card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   Our Approach
   ============================================================ */
.approach-section {
  padding-block: var(--space-xl) var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.approach-content {
  max-width: 640px;
}

.approach-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--color-white);
  margin-block: 0.5rem 1.5rem;
  line-height: 1.2;
}

.approach-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-on-surface);
  margin-bottom: 1.25rem;
}

.approach-content p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   Values Grid
   ============================================================ */
.values-section {
  padding-block: var(--space-xl) var(--space-2xl);
}

.values-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.values-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  margin-top: 0.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 2rem 1.75rem;
}

.value-icon {
  width: 30px;
  height: 30px;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.value-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================================================
   Company Info Box
   ============================================================ */
.company-info-section {
  padding-bottom: var(--space-xl);
}

.company-info-box {
  background: var(--color-card-surface);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 2rem var(--space-xl);
  text-align: center;
}

.company-info-box p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-on-surface);
  margin-bottom: 0.875rem;
  max-width: 580px;
  margin-inline: auto;
}

.company-url {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   Waitlist CTA
   ============================================================ */
.about-cta {
  position: relative;
  overflow: visible;
  text-align: center;
  padding-block: var(--space-2xl);
}

.about-cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(232, 168, 56, 0.10) 0%,
    rgba(193, 125, 32, 0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.about-cta > .container-narrow {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}

.about-cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-on-surface);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

/* Waitlist form */
.waitlist-form {
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}

.form-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.form-row input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-on-surface);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-row input[type="email"]::placeholder {
  color: var(--color-muted);
}

.form-row input[type="email"]:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.07);
}

.waitlist-form.submitted .form-row input[type="email"],
.waitlist-form.submitted button {
  opacity: 0.6;
  cursor: default;
}

.form-note {
  font-size: 0.75rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.875rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .mission-box {
    padding: 40px 24px;
  }

  .approach-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }
}

@media (max-width: 560px) {
  .form-row {
    flex-direction: column;
  }

  .form-row .btn {
    width: 100%;
    justify-content: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   About CTA — editorial reward line
   ============================================================ */
.about-reward-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 14px 0 10px;
}

.about-reward-rule {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: rgba(232, 168, 56, 0.4);
}

.about-reward-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: #E8A838;
  white-space: nowrap;
}
