/* ====================================================
   ABOUT US — King Burger's Store
   Requires: theme.css + cp.css loaded first
   ==================================================== */

body { background: var(--cp-bg); min-height: 100vh; display: flex; flex-direction: column; color: var(--cp-text); }
main { flex: 1; }

/* ── Hero ── */
.about-hero {
  background: var(--cp-bg);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,240,255,0.06);
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,240,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% -10%, rgba(0,240,255,0.09) 0%, transparent 55%);
  pointer-events: none;
}
.about-hero > * { position: relative; }

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,240,255,0.05);
  border: 1px solid rgba(0,240,255,0.22);
  color: var(--cp-cyan);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  font-family: 'Orbitron', sans-serif;
}

.about-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}
.about-hero-title .accent {
  color: var(--cp-cyan);
  text-shadow: var(--glow-c);
}

.about-hero-sub {
  font-size: 1.0625rem;
  color: var(--cp-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ── Sections ── */
.section { padding: 5rem 1.5rem; }
.section-light { background: var(--cp-bg); }
.section-alt {
  background: var(--cp-bg2);
  border-top: 1px solid rgba(0,240,255,0.06);
  border-bottom: 1px solid rgba(0,240,255,0.06);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cp-cyan);
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.875rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-sub {
  color: var(--cp-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Feature cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--cp-surface);
  padding: 1.75rem;
  border-radius: 3px;
  border: 1px solid rgba(0,240,255,0.09);
  transition: transform 220ms cubic-bezier(0.22,1,0.36,1), box-shadow 220ms, border-color 220ms;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 24px rgba(0,240,255,0.1), 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(0,240,255,0.32);
}
.feature-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(0,240,255,0.07);
  border: 1px solid rgba(0,240,255,0.18);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cp-cyan);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.feature-description {
  color: rgba(216,228,255,0.5);
  line-height: 1.65;
  font-size: 0.9rem;
}

/* ── Story ── */
.story-content {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}
.story-content p {
  margin-bottom: 1.25rem;
  color: rgba(216,228,255,0.6);
  font-size: 1rem;
}
.story-content p:first-of-type {
  font-size: 1.0625rem;
  color: rgba(216,228,255,0.78);
  font-weight: 500;
}

/* ── Stats bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin: 2.5rem auto 0;
}
.stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(0,240,255,0.03);
  border-radius: 3px;
  border: 1px solid rgba(0,240,255,0.1);
}
.stat-num {
  font-size: 1.875rem;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  color: var(--cp-cyan);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0.375rem;
  text-shadow: 0 0 16px rgba(0,240,255,0.35);
}
.stat-label {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(216,228,255,0.28);
  font-family: 'Orbitron', sans-serif;
}

/* ── CTA Banner ── */
.cta-banner {
  background: #03030c;
  padding: 5.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,240,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,240,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.875rem;
}
.cta-banner p {
  color: var(--cp-muted);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}
