/* =============================================================
   GATE & GUIDE — ABOUT US PAGE STYLES
   ============================================================= */

/* -------------------------------------------------------------
   SECTION 1 — PAGE HERO
   ------------------------------------------------------------- */
.about-hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}
.dots-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(20rem, 35vw, 40rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.018);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  line-height: 1;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Badge with Pulsing Green Dot */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(249, 123, 61, 0.12);
  border: 1px solid rgba(249, 123, 61, 0.3);
  color: var(--color-orange);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-green);
  border-radius: 50%;
  display: inline-block;
}
.badge-dot.pulsing {
  box-shadow: 0 0 0 rgba(0, 192, 96, 0.4);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 192, 96, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(0, 192, 96, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 192, 96, 0);
  }
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}
.about-hero-title .title-line {
  display: block;
}
.about-hero-title .title-italic {
  font-style: italic;
}
.about-hero-title .title-highlight {
  font-style: italic;
  color: var(--color-orange);
}

.hero-subtext {
  max-width: 580px;
  margin: 1.75rem auto 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(245, 244, 240, 0.55);
  text-align: center;
  text-wrap: pretty;
}

/* Stat pills row */
.about-hero-pills {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
.hero-stat-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1rem 2.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 160px;
  transition: all 0.3s ease;
}
.hero-stat-pill:hover {
  border-color: rgba(249, 123, 61, 0.3);
  background: rgba(249, 123, 61, 0.06);
}
.hero-stat-pill .pill-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-orange);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-pill .pill-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.3);
}

/* Prevent horizontal overflow from layout columns & slide reveals */
.about-origin-section,
.about-mission-vision-section,
.about-values-section,
.about-team-section,
.about-credibility-section,
.about-cta-section {
  overflow: hidden;
}

/* -------------------------------------------------------------
   SECTION 2 — COMPANY HERITAGE BAND
   ------------------------------------------------------------- */
.about-heritage-section {
  background-color: var(--color-orange);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.heritage-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.heritage-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* -------------------------------------------------------------
   SECTION 3 — ORIGIN STORY
   ------------------------------------------------------------- */
.about-origin-section {
  background-color: var(--color-bg-primary);
}
.origin-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 4.5rem;
  align-items: center;
}

/* Left Visual Timeline Card */
.milestones-card {
  background: var(--color-bg-dark);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.milestones-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
/* Timeline Grid and Spacing */
#origin-story, .origin-section, #about-origin {
  padding-top: var(--space-2xl);
}
.timeline-card {
  margin-top: 0;
  align-self: flex-start;
}

.timeline {
  position: relative;
  padding-left: 1.75rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px; /* Centered exactly at dot x coordinate (-28px + 5px - 1px) */
  top: 11px; /* Starts exactly at center of current dot */
  height: calc(100% + 2rem); /* Reaches center of next dot */
  width: 2px;
  opacity: 0.25;
  z-index: 1;
}
.timeline-item:nth-child(1)::before {
  background: linear-gradient(to bottom, var(--color-orange), var(--color-green));
}
.timeline-item:nth-child(2)::before {
  background: linear-gradient(to bottom, var(--color-green), var(--color-orange));
}
.timeline-item:nth-child(3)::before {
  background: linear-gradient(to bottom, var(--color-orange), var(--color-green));
}
.timeline-item:last-child::before {
  display: none; /* Stops exactly at the last dot */
}

/* Global-like helpers for text colors since features.css is not linked */
.text-orange {
  color: var(--color-orange) !important;
}
.text-green {
  color: var(--color-green) !important;
}

.timeline-item {
  position: relative;
  padding-left: 0;
  margin-bottom: 2rem;
}

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

.timeline-dot {
  position: absolute;
  left: -1.75rem;
  top: 0.375rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Dot colors & subtle rings */
.timeline-dot.dot-orange {
  background-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(249, 123, 61, 0.15);
}
.timeline-dot.dot-green {
  background-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(0, 192, 96, 0.15);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.timeline-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(245, 244, 240, 0.85);
  margin-bottom: 0.375rem;
  margin-top: 0.25rem;
}

.timeline-body {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245, 244, 240, 0.4);
  line-height: 1.75;
}

.origin-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Right Content Column */
.story-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.story-paragraphs p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--color-text-secondary);
}

/* Decorative Quote Block */
.origin-quote-block {
  border-left: 3px solid var(--color-orange);
  padding-left: 1.5rem;
  margin-top: 3rem;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}
.quote-author {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* -------------------------------------------------------------
   SECTION 4 — MISSION & VISION
   ------------------------------------------------------------- */
.about-mission-vision-section {
  background-color: var(--color-bg-dark);
  padding: var(--space-2xl) 0;
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}
.mission-vision-grid::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,0.08) 30%,
    rgba(255,255,255,0.08) 70%,
    transparent
  );
  transform: translateX(-50%);
  pointer-events: none;
}
.reveal-mv-left {
  padding-right: 5rem;
}
.reveal-mv-right {
  padding-left: 5rem;
}
.mv-column {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* Decorative Watermark Letters (M and V) */
.mission-decorative-letter,
.vision-decorative-letter {
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 800;
  line-height: 0.8;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.mission-decorative-letter {
  color: rgba(249, 123, 61, 0.06);
}
.vision-decorative-letter {
  color: rgba(0, 192, 96, 0.06);
}

.mv-column .section-label {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
.mission-statement,
.vision-statement {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.35;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.mv-body {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 244, 240, 0.55);
}
.mv-border {
  margin-top: 2rem;
  height: 2px;
}
.mv-border.border-orange {
  width: 48px;
  background: var(--color-orange);
  opacity: 0.4;
}
.mv-border.border-green {
  width: 48px;
  background: var(--color-green);
  opacity: 0.4;
}

/* -------------------------------------------------------------
   SECTION 5 — CORE VALUES
   ------------------------------------------------------------- */
.about-values-section {
  background-color: var(--color-bg-secondary);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: all 0.3s ease;
}
.value-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.value-icon-box svg {
  width: 20px;
  height: 20px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.value-body {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

/* Value Hover animations (Alternating Orange/Green) */
.values-grid .value-card:nth-child(odd):hover {
  border-color: var(--color-orange);
  box-shadow: 0 12px 32px rgba(249, 123, 61, 0.08);
  transform: translateY(-4px);
}
.values-grid .value-card:nth-child(even):hover {
  border-color: var(--color-green);
  box-shadow: 0 12px 32px rgba(0, 192, 96, 0.08);
  transform: translateY(-4px);
}

/* -------------------------------------------------------------
   SECTION 6 — TEAM
   ------------------------------------------------------------- */
.about-team-section {
  background-color: var(--color-bg-primary);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.avatar-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}
.avatar-circle.avatar-orange {
  background: var(--color-orange-pale);
  color: var(--color-orange-deep);
  border: 2px solid rgba(249, 123, 61, 0.15);
}
.avatar-circle.avatar-green {
  background: var(--color-green-pale);
  color: var(--color-green-deep);
  border: 2px solid rgba(0, 192, 96, 0.15);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}
.team-role {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 0.85rem;
}
.team-card .badge-tag {
  position: static;
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.65rem;
  padding: 0.3rem 0.8rem;
}
.team-bio {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

/* Card hover animation */
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.06);
  border-color: var(--color-orange);
}

.team-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
}

/* -------------------------------------------------------------
   SECTION 7 — PARENT COMPANY CREDIBILITY
   ------------------------------------------------------------- */
.about-credibility-section {
  background-color: var(--color-bg-dark);
}
.credibility-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 5rem;
  align-items: center;
}
.credibility-content-col .credibility-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 244, 240, 0.55);
  margin-bottom: 1.5rem;
}
.credibility-content-col .credibility-body:last-of-type {
  margin-bottom: 2.5rem;
}

.credibility-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.credibility-pill {
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
}
.credibility-pill.pill-orange {
  border: 1px solid rgba(249, 123, 61, 0.3);
  color: var(--color-orange);
}
.credibility-pill.pill-green {
  border: 1px solid rgba(0, 192, 96, 0.3);
  color: var(--color-green);
}

/* Right Stats Grid */
.credibility-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.credibility-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
}
.credibility-stat-box .stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
}
.credibility-stat-box .stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.35);
  margin-top: 0.625rem;
  line-height: 1.3;
}

/* -------------------------------------------------------------
   SECTION 8 — FINAL CTA
   ------------------------------------------------------------- */
.about-cta-section {
  background-color: var(--color-orange);
  text-align: center;
}
.about-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.about-cta-subtext {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-cta-white {
  background: var(--color-white);
  color: var(--color-orange-deep);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.btn-cta-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-cta-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.about-cta-fine-print {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  margin-top: 1.75rem;
}

/* -------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
   ------------------------------------------------------------- */

/* Tablet Viewports (768px - 1359px) */
@media (max-width: 1359px) {
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .origin-visual-col {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
  .mission-vision-grid::after {
    display: none;
  }
  .reveal-mv-left {
    padding-right: 0;
  }
  .reveal-mv-right {
    padding-left: 0;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .credibility-content-col {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  .credibility-content-col .credibility-body {
    max-width: 100%;
  }
  .credibility-pills {
    justify-content: center;
  }
  .credibility-stats-col {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Mobile Viewports (Below 768px) */
@media (max-width: 767px) {
  .about-hero-section {
    padding: 7rem 0 5rem;
  }
  .about-hero-title {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }
  .about-hero-pills {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .stat-pill {
    width: 100%;
    max-width: 280px;
  }
  .heritage-text {
    font-size: 1.35rem;
  }
  .milestones-card {
    padding: 2.25rem 1.75rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    padding: 2.25rem 1.5rem;
  }
  .credibility-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .credibility-stat-box {
    padding: 1.75rem;
  }
  .about-cta-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto 1.5rem;
    gap: 0.75rem;
  }
  .btn-cta-white,
  .btn-cta-outline {
    justify-content: center;
  }
}
