/* AUROZE ABOUT PAGE - extends style.css design system */

.about-page {
  --abt-pad-x: clamp(20px, 4vw, 64px);
  --abt-gap: clamp(80px, 12vh, 140px);
  --abt-glass: rgba(255, 255, 255, 0.04);
  --abt-glass-border: rgba(255, 255, 255, 0.08);
  --abt-glow: rgba(255, 95, 0, 0.3);
}

.about-page .centerpiece-logo-wrapper,
.about-page #webgl-container,
.about-page .cinematic-intro { display: none !important; }

.abt-scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 2px; z-index: 9999;
  pointer-events: none; background: rgba(255, 255, 255, 0.06);
}
.abt-scroll-progress-bar {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--accent-orange), #ff9a56);
  box-shadow: 0 0 12px var(--abt-glow);
}
.abt-cursor-glow {
  position: fixed; width: 280px; height: 280px; border-radius: 50%;
  pointer-events: none; z-index: 3;
  background: radial-gradient(circle, rgba(255, 95, 0, 0.1) 0%, transparent 68%);
  transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}
.about-page:hover .abt-cursor-glow { opacity: 1; }
@media (max-width: 768px) { .abt-cursor-glow, .abt-cta-header { display: none; } }

a.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.overlay-nav .nav-item.is-active .nav-label { color: var(--accent-orange); }
.overlay-nav .nav-item.is-active .nav-number { color: rgba(255, 95, 0, 0.55); }

.abt-main { position: relative; z-index: 5; width: 100%; }
.abt-container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 var(--abt-pad-x); }
.abt-eyebrow {
  font-family: var(--font-ui); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 95, 0, 0.85); margin-bottom: 16px;
}
.abt-section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.abt-section-head--center { text-align: center; }
.abt-section-title {
  font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700; line-height: 1.08; color: var(--text-white); letter-spacing: -0.02em;
}
.abt-section-desc {
  margin-top: 16px; max-width: 600px; font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65; color: rgba(217, 217, 217, 0.68);
}
.abt-section-head--center .abt-section-desc { margin-left: auto; margin-right: auto; }

/* HERO */
.abt-hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: clamp(110px, 14vh, 150px) 0 clamp(60px, 8vh, 80px); overflow: hidden;
}
.abt-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  opacity: 0.5;
}
.abt-hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.abt-hero-glow {
  position: absolute; top: 30%; right: 10%;
  width: min(500px, 60vw); height: min(400px, 50vh);
  background: radial-gradient(ellipse, rgba(255,95,0,0.08) 0%, transparent 70%);
  z-index: 1; pointer-events: none;
}
.abt-hero-inner { position: relative; z-index: 2; max-width: 780px; }
.abt-hero-title {
  font-family: var(--font-display); font-size: clamp(44px, 7vw, 88px);
  font-weight: 800; line-height: 1.02; color: var(--text-white);
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.abt-hero-subtitle {
  font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500; color: rgba(217,217,217,0.9); margin-bottom: 20px; line-height: 1.3;
}
.abt-hero-desc {
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7;
  color: rgba(217,217,217,0.65); max-width: 620px; margin-bottom: 36px;
}
.abt-btn-secondary {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px;
  border: 1px solid var(--abt-glass-border); border-radius: 999px;
  background: var(--abt-glass); backdrop-filter: blur(12px);
  color: var(--text-offwhite); font-family: var(--font-ui); font-size: 13px;
  font-weight: 500; letter-spacing: 0.06em; text-decoration: none;
  transition: var(--transition-smooth);
}
.abt-btn-secondary:hover {
  border-color: rgba(255,95,0,0.4); background: rgba(255,95,0,0.08); color: var(--text-white);
}
.abt-btn-icon { opacity: 0.7; }

/* TIMELINE */
.abt-story-section { padding: var(--abt-gap) 0; }
.abt-timeline { position: relative; max-width: 640px; margin: 0 auto; padding-left: 32px; }
.abt-timeline::before {
  content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(180deg, rgba(255,95,0,0.5), rgba(255,255,255,0.08));
  transform-origin: top; transform: scaleY(0);
}
.abt-timeline.is-drawn::before {
  transform: scaleY(1); transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.abt-timeline-item { position: relative; padding: 0 0 40px 28px; opacity: 0; transform: translateY(24px); }
.abt-timeline-item.is-visible {
  opacity: 1; transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.abt-timeline-dot {
  position: absolute; left: -2px; top: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--accent-orange); box-shadow: 0 0 16px var(--abt-glow);
}
.abt-timeline-year {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--accent-orange); margin-bottom: 6px;
}
.abt-timeline-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--text-white); margin-bottom: 6px;
}
.abt-timeline-text { font-size: 15px; line-height: 1.65; color: rgba(217,217,217,0.62); }
.abt-timeline-arrow {
  display: block; text-align: center; color: rgba(255,95,0,0.4);
  font-size: 18px; padding: 4px 0 12px; margin-left: -28px;
}

/* TEAM */
.abt-team-section { padding: var(--abt-gap) 0; }
.abt-team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.abt-team-card {
  position: relative; padding: clamp(28px, 3.5vw, 40px); border-radius: 20px;
  background: var(--abt-glass); border: 1px solid var(--abt-glass-border);
  backdrop-filter: blur(20px); text-align: center;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s ease, border-color 0.35s ease;
  overflow: hidden;
}
.abt-team-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,95,0,0.08), transparent 55%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.abt-team-card:hover { transform: translateY(-4px); border-color: rgba(255,95,0,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.abt-team-card:hover::after { opacity: 1; }
.abt-team-logo { width: 64px; height: 64px; margin: 0 auto 12px; }
.abt-brand-svg { width: 100%; height: 100%; display: block; }
.abt-team-wordmark {
  display: block; font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; color: rgba(217,217,217,0.5); margin-bottom: 12px;
}
.abt-team-title {
  font-family: var(--font-display); font-size: clamp(18px, 2vw, 22px);
  font-weight: 700; color: var(--text-white); margin-bottom: 10px;
}
.abt-team-desc { font-size: 14px; line-height: 1.65; color: rgba(217,217,217,0.6); margin-bottom: 16px; }
.abt-team-badge {
  display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  background: rgba(255,95,0,0.1); border: 1px solid rgba(255,95,0,0.25); color: rgba(255,95,0,0.9);
}
.abt-team-card--arom { grid-column: span 2; padding: clamp(36px, 4vw, 52px); }
.abt-arom-reveal { margin-bottom: 20px; text-align: center; }
.abt-arom-letters {
  position: relative;
  width: min(100%, 300px);
  height: clamp(56px, 10vw, 84px);
  margin: 0 auto 10px;
}
.abt-arom-char {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 68px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-white);
  opacity: 0;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}
.abt-arom-char.is-mora-state {
  color: rgba(255, 95, 0, 0.95);
  text-shadow: 0 0 24px rgba(255, 95, 0, 0.25);
}
.abt-arom-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 95, 0, 0.75);
  opacity: 0;
  transform: translateY(8px);
}
.abt-arom-tag.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.abt-arom-desc {
  font-size: 15px; line-height: 1.7; color: rgba(217,217,217,0.65);
  max-width: 560px; margin: 0 auto; opacity: 0; transform: translateY(12px);
}
.abt-arom-desc.is-revealed {
  opacity: 1; transform: none;
  transition: opacity 0.6s ease 0.1s, transform 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.abt-marketing-graphic { width: 120px; height: 80px; margin: 0 auto 16px; }
.abt-marketing-graphic svg { width: 100%; height: 100%; }

/* WORKFLOW */
.abt-workflow-section { padding: var(--abt-gap) 0; overflow: hidden; }
.abt-workflow {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start;
  gap: 8px 0; max-width: 1100px; margin: 0 auto;
}
.abt-workflow-step {
  display: flex; flex-direction: column; align-items: center; flex: 0 0 auto;
  min-width: 100px; opacity: 0; transform: translateY(20px);
}
.abt-workflow-step.is-visible {
  opacity: 1; transform: none;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.abt-workflow-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--abt-glass-border);
  font-size: 18px; color: rgba(255,95,0,0.85); margin-bottom: 10px;
}
.abt-workflow-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(217,217,217,0.75); text-align: center; max-width: 110px;
}
.abt-workflow-connector {
  display: flex; align-items: center; padding: 0 4px; margin-top: 20px;
  color: rgba(255,95,0,0.35); font-size: 14px; opacity: 0;
}
.abt-workflow-connector.is-visible { opacity: 1; transition: opacity 0.4s ease; }

/* PEOPLE */
.abt-people-section { padding: var(--abt-gap) 0; }
.abt-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.abt-stat-card {
  padding: clamp(20px, 2.5vw, 28px); border-radius: 18px;
  background: var(--abt-glass); border: 1px solid var(--abt-glass-border);
  backdrop-filter: blur(16px); text-align: center;
  transition: border-color 0.3s ease, transform 0.35s ease;
}
.abt-stat-card:hover { border-color: rgba(255,95,0,0.25); transform: translateY(-3px); }
.abt-stat-value { font-family: var(--font-display); font-size: clamp(28px, 3vw, 36px); font-weight: 800; color: var(--text-white); margin-bottom: 6px; }
.abt-stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,95,0,0.85); margin-bottom: 6px; }
.abt-stat-desc { font-size: 12px; line-height: 1.5; color: rgba(217,217,217,0.5); }

/* ACADEMIC */
.abt-academic-section { padding: var(--abt-gap) 0; }
.abt-academic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.abt-academic-card {
  padding: clamp(28px, 3vw, 36px); border-radius: 20px;
  background: var(--abt-glass); border: 1px solid var(--abt-glass-border);
  backdrop-filter: blur(16px); transition: transform 0.4s ease, border-color 0.3s ease;
}
.abt-academic-card:hover { transform: translateY(-4px); border-color: rgba(255,95,0,0.2); }
.abt-academic-illus { width: 64px; height: 64px; margin-bottom: 16px; }
.abt-academic-illus svg { width: 100%; height: 100%; }
.abt-academic-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.abt-academic-desc { font-size: 14px; line-height: 1.6; color: rgba(217,217,217,0.62); }

/* VALUES */
.abt-values-section { padding: var(--abt-gap) 0; }
.abt-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(140px, auto); gap: 16px; }
.abt-bento-card {
  padding: clamp(20px, 2.5vw, 28px); border-radius: 18px;
  background: var(--abt-glass); border: 1px solid var(--abt-glass-border);
  backdrop-filter: blur(16px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}
.abt-bento-card:nth-child(1), .abt-bento-card:nth-child(5) { grid-column: span 2; }
.abt-bento-card:hover { transform: translateY(-3px); border-color: rgba(255,95,0,0.2); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.abt-bento-icon { font-size: 24px; margin-bottom: 12px; color: rgba(255,95,0,0.8); }
.abt-bento-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text-white); margin-bottom: 6px; }
.abt-bento-desc { font-size: 13px; line-height: 1.55; color: rgba(217,217,217,0.58); }

/* WHY */
.abt-why-section { padding: var(--abt-gap) 0; }
.abt-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.abt-why-card {
  padding: clamp(22px, 2.5vw, 30px); border-radius: 18px;
  background: var(--abt-glass); border: 1px solid var(--abt-glass-border);
  backdrop-filter: blur(16px); transition: transform 0.4s ease, border-color 0.3s ease;
}
.abt-why-card:hover { transform: translateY(-3px); border-color: rgba(255,95,0,0.22); }
.abt-why-icon { font-size: 22px; margin-bottom: 12px; color: rgba(255,95,0,0.8); }
.abt-why-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.abt-why-desc { font-size: 13px; line-height: 1.6; color: rgba(217,217,217,0.58); }

/* CTA */
.abt-final-cta { position: relative; padding: clamp(100px, 14vh, 150px) 0; overflow: hidden; }
.abt-cta-glow {
  position: absolute; top: 50%; left: 50%;
  width: min(700px, 100vw); height: min(400px, 60vh);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,95,0,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.abt-cta-inner { position: relative; z-index: 2; text-align: center; }
.abt-cta-title {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 54px);
  font-weight: 800; line-height: 1.08; color: var(--text-white); margin-bottom: 18px;
}
.abt-cta-desc {
  font-size: clamp(15px, 1.6vw, 17px); line-height: 1.65;
  color: rgba(217,217,217,0.68); max-width: 580px; margin: 0 auto 32px;
}
.abt-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

[data-reveal] { opacity: 0; transform: translateY(32px); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .abt-bento { grid-template-columns: repeat(2, 1fr); }
  .abt-bento-card:nth-child(1), .abt-bento-card:nth-child(5) { grid-column: span 2; }
  .abt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 769px) {
  .abt-workflow { flex-wrap: nowrap; }
  .abt-workflow-connector { transform: rotate(-90deg); margin-top: 20px; }
}
@media (max-width: 768px) {
  .abt-team-grid, .abt-academic-grid, .abt-bento, .abt-why-grid { grid-template-columns: 1fr; }
  .abt-team-card--arom, .abt-bento-card:nth-child(1), .abt-bento-card:nth-child(5) { grid-column: span 1; }
  .abt-workflow { flex-direction: column; align-items: center; }
  .abt-workflow-connector { transform: rotate(0deg); margin: 4px 0; }
}
@media (max-width: 480px) { .abt-stats-grid { grid-template-columns: 1fr; } }
