/* ═══════════════════════════════════════════════
   ABOUT PAGE — STYLES
   Font: Inter throughout
═══════════════════════════════════════════════ */

:root {
  --orange:    #FF5C00;
  --orange-dk: #e04e00;
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #161616;
  --border:    rgba(255,255,255,0.08);
  --gray:      rgba(255,255,255,0.55);
  --white:     #ffffff;
  --radius:    16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section { padding: 100px 20px; }
.accent { color: var(--orange); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,92,0,0.08);
  border: 1px solid rgba(255,92,0,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-heading {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 0;
  line-height: 1.7;
}

.sc-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-top: 4px;
  transition: letter-spacing 0.2s;
}
.sc-link:hover { letter-spacing: 0.03em; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  all: unset;
  display: block;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-radius: 16px;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.navbar-logo {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar-logo .logo-accent { color: var(--orange); }

.navbar-links { display: flex; gap: 28px; align-items: center; }

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover    { color: var(--white); font-weight: 600; }
.nav-link--active  { color: var(--white); font-weight: 700; }

.navbar-cta {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--orange);
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.navbar-cta:hover { background: var(--orange-dk); transform: translateY(-1px); }

#menuBtn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1200;
}
#menuBtn .bar {
  display: block; height: 2px; width: 100%;
  background: var(--white); border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}
#menuBtn.active .bar:nth-child(1) { transform: translateY(8px)  rotate(45deg); }
#menuBtn.active .bar:nth-child(2) { opacity: 0; }
#menuBtn.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

#mobileMenu {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 85vw); height: 100vh;
  background: var(--bg);
  border-left: 1px solid rgba(255,255,255,0.07);
  box-shadow: -8px 0 40px rgba(0,0,0,0.6);
  z-index: 1150;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 80px 36px 48px;
  transition: right 0.4s cubic-bezier(0.77,0,0.18,1);
}

#closeMenu {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
#closeMenu::before, #closeMenu::after {
  content: ''; position: absolute;
  width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
}
#closeMenu::before { transform: rotate(45deg); }
#closeMenu::after  { transform: rotate(-45deg); }

#mobileMenu a.mob-link {
  text-decoration: none; font-size: 1.4rem; font-weight: 600;
  color: rgba(255,255,255,0.65); padding: 14px 0; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
#mobileMenu a.mob-link:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }
#mobileMenu a.mob-link:hover         { color: var(--white); padding-left: 6px; }
#mobileMenu a.mob-link.mob-active    { color: var(--orange); }

#mobileMenu .mob-cta {
  margin-top: 28px; display: inline-block; padding: 13px 28px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; background: var(--orange);
  color: var(--white); border-radius: 3px; text-decoration: none;
  transition: background 0.2s;
}
#mobileMenu .mob-cta:hover { background: var(--orange-dk); }

#menuOverlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 1100;
  backdrop-filter: blur(2px);
}
#menuOverlay.visible { display: block; }

@media (max-width: 960px) { .navbar-links { gap: 18px; } .nav-link { font-size: 0.82rem; } }
@media (max-width: 768px) {
  .navbar { top: 14px; width: 94%; }
  .navbar-inner { padding: 10px 16px; border-radius: 14px; }
  .navbar-links, .navbar-cta { display: none; }
  #menuBtn { display: flex; }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 130px 0 80px;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}

.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(255,92,0,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; text-align: center;
  padding: 80px 20px; margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 28px; animation: fadeDown 0.6s ease both;
}

.hero-headline {
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 24px; animation: fadeDown 0.6s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.65); max-width: 680px;
  margin: 0 auto 36px; line-height: 1.7;
  animation: fadeDown 0.6s 0.2s ease both;
}

.hero-ctas {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
  animation: fadeDown 0.6s 0.3s ease both;
}

.hero-cta-primary {
  padding: 12px 26px; background: var(--orange);
  color: var(--white); border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta-primary:hover { background: var(--orange-dk); transform: translateY(-2px); }

.hero-cta-secondary {
  padding: 12px 26px; border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); border-radius: 8px;
  text-decoration: none; font-weight: 500; font-size: 0.95rem;
  transition: border-color 0.2s;
}
.hero-cta-secondary:hover { border-color: rgba(255,255,255,0.4); }

.hero-stats {
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  animation: fadeDown 0.6s 0.4s ease both;
}

.stat-pill {
  padding: 10px 20px; border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; gap: 6px; align-items: center;
}
.stat-pill .stat-num   { font-weight: 700; font-size: 1rem; }
.stat-pill .stat-label { font-size: 0.85rem; color: var(--gray); }

.hero-visual {
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  width: 320px; height: 320px; pointer-events: none;
}

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.28;
}
.orb-1 { width:260px; height:260px; background:var(--orange); top:10px; left:30px; animation:float 7s ease-in-out infinite; }
.orb-2 { width:180px; height:180px; background:#7b2fff; bottom:0; right:0; animation:float 9s ease-in-out infinite reverse; }

.floating-card {
  position: absolute;
  background: rgba(20,20,20,0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 12px 18px; border-radius: 12px;
  font-size: 0.82rem; font-weight: 600;
  white-space: nowrap; color: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.fc-1 { top:60px; left:-20px; animation: float 5s ease-in-out infinite; }
.fc-2 { bottom:80px; right:-30px; animation: float 6s ease-in-out infinite reverse; }

/* ══════════════════════════════
   STORY SECTION
══════════════════════════════ */
.story-section { background: var(--bg-2); }

.story-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-text { display: flex; flex-direction: column; gap: 16px; }

.story-text p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 56px;
}

.sstep {
  padding: 20px 0 20px 24px;
  border-left: 2px solid var(--border);
  position: relative;
}

.sstep::before {
  content: '';
  position: absolute;
  left: -6px; top: 24px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--bg-2);
}

.sstep-year {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.sstep-label {
  font-size: 0.9rem;
  color: var(--gray);
}

.sstep-line { display: none; }

/* ══════════════════════════════
   VALUES
══════════════════════════════ */
.values-section { background: var(--bg); }

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 44px;
}

.value-card {
  flex: 1; min-width: 220px; max-width: 260px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-color: rgba(255,92,0,0.3); transform: translateY(-4px); }

.val-icon { font-size: 1.6rem; }

.value-card h4 { font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }

.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* ══════════════════════════════
   SERVICES OVERVIEW
══════════════════════════════ */
.services-section { background: var(--bg-2); }

.svc-grid {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center; margin-top: 44px;
}

.svc-card {
  flex: 1; min-width: 260px; max-width: 320px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}
.svc-card:hover { border-color: rgba(255,92,0,0.3); transform: translateY(-4px); }

.svc-icon { font-size: 2rem; line-height: 1; }

.svc-card h4 { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }

.svc-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; flex: 1; }

/* ══════════════════════════════
   TEAM
══════════════════════════════ */
.team-section { background: var(--bg); }

.team-grid {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center; margin-top: 44px;
}

.team-card {
  flex: 1; min-width: 220px; max-width: 250px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px; text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: rgba(255,92,0,0.25); transform: translateY(-4px); }

.team-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: var(--white);
  margin-bottom: 4px;
}

.team-card h4 { font-weight: 700; font-size: 1rem; }

.team-role {
  font-size: 0.8rem; font-weight: 600;
  color: var(--orange); letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════
   CTA STRIP
══════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, #110800 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 20px;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding-top: 64px; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-logo {
  font-weight: 800; font-size: 1.15rem;
  text-decoration: none; color: var(--white); letter-spacing: -0.01em;
}
.footer-logo .accent { color: var(--orange); }

.footer-desc { font-size: 0.9rem; line-height: 1.65; color: var(--gray); max-width: 250px; }

.social-links { display: flex; gap: 12px; margin-top: 4px; }

.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 600; color: var(--white); text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.social-links a:hover { background: rgba(255,92,0,0.15); border-color: rgba(255,92,0,0.3); }

.footer-col h5 { font-weight: 700; font-size: 0.9rem; letter-spacing: -0.01em; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { text-decoration: none; font-size: 0.88rem; color: var(--gray); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--gray);
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .story-inner   { grid-template-columns: 1fr; gap: 48px; }
  .story-stats   { padding-top: 0; }
}

@media (max-width: 768px) {
  .hero         { padding: 120px 0 60px; }
  .hero-visual  { display: none; }
  .hero-ctas    { flex-direction: column; align-items: center; }
  .values-grid  { flex-direction: column; align-items: center; }
  .value-card   { max-width: 100%; }
  .svc-grid     { flex-direction: column; align-items: center; }
  .svc-card     { max-width: 100%; }
  .team-grid    { flex-direction: column; align-items: center; }
  .team-card    { max-width: 100%; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}